    /* ============================================
   🎨 SKETCH ARTIST SERVICES PAGE
   Canvas texture, pencil strokes, paint effects
   ============================================ */

    :root {
        --art-cream: #FBF7F4;
        --art-canvas: #F5EFE8;
        --art-warm: #EDE4D9;
        --art-primary: #8B5A5A;
        --art-primary-dark: #6B4444;
        --art-accent: #D4A574;
        --art-accent-dark: #B8956A;
        --art-teal: #5A7B8B;
        --art-charcoal: #2D2D2D;
        --art-graphite: #555555;
        --art-pencil: #888888;

        --font-heading: 'Playfair Display', Georgia, serif;
        --font-body: 'Outfit', 'Inter', sans-serif;
        --font-script: 'Dancing Script', cursive;
    }

    .art-page {
        font-family: var(--font-body);
        background: var(--art-cream);
        color: var(--art-charcoal);
        line-height: 1.7;
    }

    /* ============================================
   HERO - Sketch Artist Studio
   ============================================ */
    .art-hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 6rem 0;
        background: linear-gradient(180deg, var(--art-cream) 0%, var(--art-canvas) 100%);
        overflow: hidden;
    }

    /* Canvas Texture Overlay */
    .art-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
        opacity: 0.03;
        pointer-events: none;
    }

    /* Paint Brush Strokes Animation */
    .art-brush {
        position: absolute;
        height: 5px;
        border-radius: 3px;
        opacity: 0;
    }

    .art-brush--1 {
        width: 0;
        top: 18%;
        left: 3%;
        background: linear-gradient(90deg, transparent, var(--art-primary), var(--art-accent));
        animation: brushPaint 5s ease-out infinite;
    }

    .art-brush--2 {
        width: 0;
        top: 72%;
        right: 8%;
        background: linear-gradient(270deg, transparent, var(--art-accent-dark), var(--art-primary));
        animation: brushPaint 6s ease-out infinite;
        animation-delay: 2.5s;
    }

    .art-brush--3 {
        width: 0;
        top: 45%;
        left: 55%;
        background: linear-gradient(90deg, transparent, var(--art-teal), transparent);
        animation: brushPaint 7s ease-out infinite;
        animation-delay: 1s;
    }

    @keyframes brushPaint {
        0% {
            width: 0;
            opacity: 0;
        }

        15% {
            opacity: 0.7;
        }

        50% {
            width: 280px;
            opacity: 0.5;
        }

        100% {
            width: 380px;
            opacity: 0;
        }
    }

    /* Paint Drip Animation */
    .art-drip {
        position: absolute;
        width: 5px;
        height: 0;
        border-radius: 0 0 50% 50%;
        opacity: 0;
    }

    .art-drip--1 {
        top: 0;
        left: 12%;
        background: linear-gradient(180deg, var(--art-primary), transparent);
        animation: paintDrip 9s ease-in infinite;
    }

    .art-drip--2 {
        top: 0;
        left: 38%;
        background: linear-gradient(180deg, var(--art-accent), transparent);
        animation: paintDrip 11s ease-in infinite;
        animation-delay: 4s;
    }

    .art-drip--3 {
        top: 0;
        right: 18%;
        background: linear-gradient(180deg, var(--art-teal), transparent);
        animation: paintDrip 8s ease-in infinite;
        animation-delay: 6s;
    }

    @keyframes paintDrip {
        0% {
            height: 0;
            opacity: 0;
        }

        10% {
            opacity: 0.6;
        }

        70% {
            height: 180px;
            opacity: 0.4;
        }

        100% {
            height: 250px;
            opacity: 0;
        }
    }

    /* Color Splash Animation */
    .art-splash {
        position: absolute;
        border-radius: 50%;
        filter: blur(50px);
        animation: splashPulse 8s ease-in-out infinite;
    }

    .art-splash--1 {
        width: 350px;
        height: 350px;
        top: -80px;
        right: 0;
        background: radial-gradient(circle, rgba(212, 165, 116, 0.3) 0%, transparent 70%);
    }

    .art-splash--2 {
        width: 280px;
        height: 280px;
        bottom: 5%;
        left: -5%;
        background: radial-gradient(circle, rgba(139, 90, 90, 0.25) 0%, transparent 70%);
        animation-delay: -4s;
    }

    .art-splash--3 {
        width: 200px;
        height: 200px;
        top: 40%;
        left: 30%;
        background: radial-gradient(circle, rgba(90, 123, 139, 0.15) 0%, transparent 70%);
        animation-delay: -2s;
    }

    @keyframes splashPulse {

        0%,
        100% {
            opacity: 0.5;
            transform: scale(1);
        }

        50% {
            opacity: 0.8;
            transform: scale(1.1);
        }
    }

    /* Floating Geometric Shapes - Premium Animation */
    .art-geo {
        position: absolute;
        pointer-events: none;
        animation: geoFloat 15s ease-in-out infinite;
    }

    .art-geo--diamond {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(125, 78, 78, 0.1));
        transform: rotate(45deg);
        border-radius: 4px;
    }

    .art-geo--triangle {
        width: 0;
        height: 0;
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
        border-bottom: 45px solid rgba(125, 78, 78, 0.08);
    }

    .art-geo--square {
        width: 30px;
        height: 30px;
        border: 2px solid rgba(212, 165, 116, 0.2);
        border-radius: 6px;
    }

    .art-geo--1 {
        top: 12%;
        right: 15%;
        animation-delay: 0s;
    }

    .art-geo--2 {
        top: 35%;
        left: 8%;
        animation-delay: -5s;
    }

    .art-geo--3 {
        bottom: 20%;
        right: 10%;
        animation-delay: -10s;
    }

    .art-geo--4 {
        top: 60%;
        left: 5%;
        animation-delay: -3s;
    }

    .art-geo--5 {
        bottom: 35%;
        left: 18%;
        animation-delay: -8s;
    }

    .art-geo--6 {
        top: 20%;
        left: 25%;
        animation-delay: -12s;
    }

    @keyframes geoFloat {

        0%,
        100% {
            transform: translateY(0) rotate(var(--rotate, 45deg));
            opacity: 0.6;
        }

        25% {
            transform: translateY(-25px) rotate(calc(var(--rotate, 45deg) + 15deg));
            opacity: 0.9;
        }

        50% {
            transform: translateY(10px) rotate(calc(var(--rotate, 45deg) - 10deg));
            opacity: 0.5;
        }

        75% {
            transform: translateY(-15px) rotate(calc(var(--rotate, 45deg) + 5deg));
            opacity: 0.8;
        }
    }

    /* Floating Lines */
    .art-float-line {
        position: absolute;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
        animation: lineFloat 8s ease-in-out infinite;
    }

    .art-float-line--1 {
        width: 150px;
        top: 30%;
        left: 5%;
        transform: rotate(-5deg);
    }

    .art-float-line--2 {
        width: 100px;
        bottom: 40%;
        right: 8%;
        transform: rotate(8deg);
        animation-delay: -4s;
    }

    @keyframes lineFloat {

        0%,
        100% {
            opacity: 0.4;
            transform: translateX(0) rotate(var(--rotate, 0deg));
        }

        50% {
            opacity: 0.8;
            transform: translateX(20px) rotate(var(--rotate, 0deg));
        }
    }


    /* Floating Sparkles */
    .art-sparkle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: var(--art-accent);
        border-radius: 50%;
        animation: sparkleFloat 6s ease-in-out infinite;
    }

    .art-sparkle--1 {
        top: 15%;
        left: 12%;
        animation-delay: 0s;
    }

    .art-sparkle--2 {
        top: 25%;
        right: 18%;
        animation-delay: 1s;
    }

    .art-sparkle--3 {
        top: 55%;
        left: 8%;
        animation-delay: 2s;
    }

    .art-sparkle--4 {
        bottom: 25%;
        right: 12%;
        animation-delay: 3s;
    }

    .art-sparkle--5 {
        bottom: 35%;
        left: 25%;
        animation-delay: 4s;
    }

    .art-sparkle--6 {
        top: 70%;
        right: 25%;
        animation-delay: 5s;
    }

    @keyframes sparkleFloat {

        0%,
        100% {
            transform: translateY(0) scale(1);
            opacity: 0.4;
            box-shadow: 0 0 6px rgba(212, 165, 116, 0.5);
        }

        50% {
            transform: translateY(-20px) scale(1.5);
            opacity: 1;
            box-shadow: 0 0 15px rgba(212, 165, 116, 0.8);
        }
    }

    /* Aurora Wave Effect */
    .art-aurora {
        position: absolute;
        width: 150%;
        height: 100px;
        left: -25%;
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(212, 165, 116, 0.08) 20%,
                rgba(125, 78, 78, 0.06) 50%,
                rgba(212, 165, 116, 0.08) 80%,
                transparent 100%);
        filter: blur(20px);
        animation: auroraWave 12s ease-in-out infinite;
    }

    .art-aurora--1 {
        top: 20%;
        transform: rotate(-3deg);
    }

    .art-aurora--2 {
        bottom: 25%;
        transform: rotate(2deg);
        animation-delay: -6s;
        animation-direction: reverse;
    }

    @keyframes auroraWave {

        0%,
        100% {
            transform: translateX(-10%) rotate(var(--rotate, -3deg));
            opacity: 0.6;
        }

        50% {
            transform: translateX(10%) rotate(var(--rotate, -3deg));
            opacity: 1;
        }
    }

    /* Glowing Center Orb */
    .art-glow-orb {
        position: absolute;
        top: 50%;
        left: 35%;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
        filter: blur(40px);
        animation: orbGlow 5s ease-in-out infinite;
        pointer-events: none;
    }

    @keyframes orbGlow {

        0%,
        100% {
            opacity: 0.5;
            transform: translate(-50%, -50%) scale(1);
        }

        50% {
            opacity: 0.9;
            transform: translate(-50%, -50%) scale(1.2);
        }
    }


    /* Pencil Line Decorations */
    .art-pencil-line {
        position: absolute;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--art-pencil), transparent);
        opacity: 0.3;
    }

    .art-pencil-line--1 {
        width: 200px;
        top: 25%;
        left: 8%;
        transform: rotate(-8deg);
    }

    .art-pencil-line--2 {
        width: 150px;
        bottom: 30%;
        right: 12%;
        transform: rotate(5deg);
    }

    /* Hero Content */
    .art-hero-inner {
        position: relative;
        z-index: 5;
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .art-hero-content {
        max-width: 560px;
    }

    .art-hero-label {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .art-hero-label-icon {
        width: 40px;
        height: 40px;
        background: rgba(139, 90, 90, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--art-primary);
    }

    .art-hero-label-text {
        font-family: var(--font-script);
        font-size: 1.3rem;
        color: var(--art-primary);
    }

    .art-hero-title {
        font-family: var(--font-heading);
        font-size: clamp(2.5rem, 5.5vw, 4.2rem);
        font-weight: 600;
        line-height: 1.12;
        color: var(--art-charcoal);
        margin-bottom: 1.5rem;
    }

    .art-hero-title .art-highlight {
        font-family: var(--font-script);
        font-weight: 400;
        font-size: 1.15em;
        color: var(--art-primary);
        position: relative;
        display: inline-block;
    }

    .art-hero-title .art-highlight::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: -5%;
        width: 110%;
        height: 12px;
        background: linear-gradient(90deg, rgba(212, 165, 116, 0.4), rgba(139, 90, 90, 0.3));
        border-radius: 4px;
        z-index: -1;
        transform: rotate(-1deg);
    }

    .art-hero-desc {
        font-size: 1.15rem;
        font-weight: 300;
        color: var(--art-graphite);
        line-height: 1.85;
        margin-bottom: 2.5rem;
    }

    .art-hero-btn {
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.8rem !important;
        padding: 1.15rem 2.75rem !important;
        background: linear-gradient(135deg, #7D4E4E, #5C3939) !important;
        color: #ffffff !important;
        border: none !important;
        border-radius: 60px !important;
        font-family: var(--font-body) !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
        text-decoration: none !important;
        box-shadow: 0 15px 45px rgba(93, 57, 57, 0.4) !important;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
        position: relative !important;
        overflow: hidden !important;
        cursor: pointer !important;
        letter-spacing: 0.03em !important;
        -webkit-text-fill-color: #ffffff !important;
    }

    .art-hero-btn span,
    .art-hero-btn i {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .art-hero-btn::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent) !important;
        transition: left 0.6s !important;
        z-index: 1 !important;
    }

    .art-hero-btn:hover::before {
        left: 100% !important;
    }

    .art-hero-btn:hover {
        transform: translateY(-5px) scale(1.02) !important;
        box-shadow: 0 25px 60px rgba(93, 57, 57, 0.5) !important;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        background: linear-gradient(135deg, #6B4242, #4D2F2F) !important;
    }

    .art-hero-btn:hover span,
    .art-hero-btn:hover i {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
    }

    /* Hero Visual - Art Frame */
    .art-hero-visual {
        position: relative;
    }

    .art-hero-artwork {
        position: relative;
        background: #fff;
        border-radius: 20px;
        padding: 1.25rem;
        box-shadow: 0 35px 80px rgba(139, 90, 90, 0.18);
        transform: rotate(2deg);
        transition: all 0.5s ease;
    }

    .art-hero-artwork:hover {
        transform: rotate(0) scale(1.02);
    }

    .art-hero-img {
        width: 100%;
        aspect-ratio: 4/5;
        object-fit: cover;
        border-radius: 14px;
    }

    /* Floating Art Tools */
    .art-float {
        position: absolute;
        background: #fff;
        border-radius: 16px;
        padding: 1rem 1.25rem;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
        animation: floatTool 6s ease-in-out infinite;
    }

    .art-float--1 {
        top: 5%;
        right: -12%;
        color: var(--art-accent);
    }

    .art-float--2 {
        bottom: 10%;
        left: -8%;
        color: var(--art-primary);
        animation-delay: -3s;
    }

    .art-float i {
        font-size: 1.4rem;
    }

    @keyframes floatTool {

        0%,
        100% {
            transform: translateY(0) rotate(0);
        }

        50% {
            transform: translateY(-15px) rotate(5deg);
        }
    }

    /* ============================================
   SERVICES - Artist's Palette Section
   ============================================ */
    .art-services {
        position: relative;
        padding: 7rem 0;
        background: linear-gradient(180deg, #ffffff 0%, #FDFBF9 50%, #FAF7F4 100%);
        overflow: hidden;
    }

    /* Canvas Paper Texture */
    .art-services::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
        opacity: 0.02;
        pointer-events: none;
    }

    /* Floating Orbs for Services Section */
    .art-svc-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        animation: svcOrbFloat 15s ease-in-out infinite;
        pointer-events: none;
    }

    .art-svc-orb--1 {
        width: 300px;
        height: 300px;
        top: -5%;
        right: 5%;
        background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    }

    .art-svc-orb--2 {
        width: 250px;
        height: 250px;
        bottom: 10%;
        left: -3%;
        background: radial-gradient(circle, rgba(139, 90, 90, 0.12) 0%, transparent 70%);
        animation-delay: -7.5s;
    }

    .art-svc-orb--3 {
        width: 180px;
        height: 180px;
        top: 40%;
        right: -2%;
        background: radial-gradient(circle, rgba(90, 123, 139, 0.1) 0%, transparent 70%);
        animation-delay: -3s;
    }

    @keyframes svcOrbFloat {

        0%,
        100% {
            transform: translate(0, 0) scale(1);
            opacity: 0.6;
        }

        50% {
            transform: translate(20px, -15px) scale(1.1);
            opacity: 0.9;
        }
    }

    /* Floating Sparkle Dots */
    .art-svc-dot {
        position: absolute;
        width: 6px;
        height: 6px;
        background: var(--art-accent);
        border-radius: 50%;
        animation: svcDotPulse 4s ease-in-out infinite;
        pointer-events: none;
    }

    .art-svc-dot--1 {
        top: 15%;
        left: 10%;
    }

    .art-svc-dot--2 {
        top: 30%;
        right: 12%;
        animation-delay: -1s;
    }

    .art-svc-dot--3 {
        bottom: 25%;
        left: 8%;
        animation-delay: -2s;
    }

    .art-svc-dot--4 {
        bottom: 40%;
        right: 15%;
        animation-delay: -3s;
    }

    @keyframes svcDotPulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.3;
            box-shadow: 0 0 8px rgba(212, 165, 116, 0.4);
        }

        50% {
            transform: scale(1.5);
            opacity: 0.8;
            box-shadow: 0 0 20px rgba(212, 165, 116, 0.6);
        }
    }


    /* Watercolor Wash Background */
    .art-services-wash {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
    }

    .art-watercolor {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        animation: watercolorFloat 12s ease-in-out infinite;
    }

    .art-watercolor--1 {
        width: 400px;
        height: 400px;
        top: -10%;
        right: -5%;
        background: radial-gradient(ellipse, rgba(212, 165, 116, 0.12) 0%, transparent 70%);
    }

    .art-watercolor--2 {
        width: 350px;
        height: 350px;
        bottom: -10%;
        left: -5%;
        background: radial-gradient(ellipse, rgba(139, 90, 90, 0.1) 0%, transparent 70%);
        animation-delay: -6s;
    }

    @keyframes watercolorFloat {

        0%,
        100% {
            transform: translate(0, 0);
            opacity: 0.7;
        }

        50% {
            transform: translate(20px, -20px);
            opacity: 1;
        }
    }

    /* Sketch Lines Decoration */
    .art-sketch-line {
        position: absolute;
        width: 120px;
        height: 2px;
        background: repeating-linear-gradient(90deg, var(--art-pencil) 0, var(--art-pencil) 8px, transparent 8px, transparent 12px);
        opacity: 0.15;
    }

    .art-sketch-line--1 {
        top: 15%;
        left: 5%;
        transform: rotate(-5deg);
    }

    .art-sketch-line--2 {
        bottom: 20%;
        right: 8%;
        transform: rotate(8deg);
    }

    /* Services Content */
    .art-container {
        position: relative;
        z-index: 5;
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .art-section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .art-section-script {
        font-family: var(--font-script);
        font-size: 1.4rem;
        color: var(--art-accent);
        margin-bottom: 0.5rem;
    }

    .art-section-title {
        font-family: var(--font-heading);
        font-size: clamp(2rem, 4vw, 2.75rem);
        font-weight: 600;
        color: var(--art-charcoal);
        margin-bottom: 1.25rem;
    }

    .art-section-decoration {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .art-deco-line {
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--art-primary), transparent);
    }

    .art-deco-icon {
        width: 36px;
        height: 36px;
        background: rgba(139, 90, 90, 0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--art-primary);
        font-size: 0.9rem;
    }

    /* Services Grid */
    .art-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
        gap: 2.5rem;
    }

    /* ✨ PREMIUM ELEGANT SERVICE CARD */
    .art-card {
        background: linear-gradient(145deg, #ffffff 0%, #fdfbf9 100%);
        border-radius: 20px;
        padding: 2.5rem;
        position: relative;
        box-shadow:
            0 4px 20px rgba(139, 90, 90, 0.06),
            0 1px 3px rgba(0, 0, 0, 0.04);
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        border: 1px solid rgba(212, 165, 116, 0.12);
        overflow: hidden;
    }

    /* Subtle Corner Accent */
    .art-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle at top right, rgba(212, 165, 116, 0.08), transparent 70%);
        pointer-events: none;
    }

    /* Bottom Gradient Line on Hover */
    .art-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--art-accent), var(--art-primary), var(--art-accent));
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .art-card:hover {
        transform: translateY(-10px);
        box-shadow:
            0 20px 50px rgba(139, 90, 90, 0.1),
            0 8px 25px rgba(212, 165, 116, 0.08);
        border-color: rgba(212, 165, 116, 0.2);
    }

    .art-card:hover::after {
        transform: scaleX(1);
    }




    .art-card-icon {
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(145deg, rgba(212, 165, 116, 0.12), rgba(139, 90, 90, 0.08));
        border-radius: 16px;
        margin-bottom: 1.75rem;
        font-size: 1.6rem;
        color: var(--art-primary);
        transition: all 0.4s ease;
        position: relative;
        z-index: 1;
    }

    .art-card:hover .art-card-icon {
        background: linear-gradient(145deg, var(--art-primary), var(--art-accent));
        color: #fff;
        transform: scale(1.05) rotate(-3deg);
        box-shadow: 0 10px 25px rgba(139, 90, 90, 0.25);
    }


    .art-card-title {
        font-family: var(--font-heading);
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--art-charcoal);
        margin-bottom: 0.75rem;
    }

    .art-card-desc {
        font-size: 0.95rem;
        font-weight: 300;
        color: var(--art-graphite);
        line-height: 1.75;
        margin-bottom: 1.5rem;
    }

    .art-card-features {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem;
    }

    .art-card-features li {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        font-size: 0.9rem;
        color: var(--art-charcoal);
        padding: 0.45rem 0;
        border-bottom: 1px dashed rgba(139, 90, 90, 0.08);
    }

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

    .art-card-features li i {
        color: var(--art-accent);
        font-size: 0.55rem;
    }

    .art-card-link {
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        font-family: var(--font-body) !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        color: var(--art-primary) !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
    }

    .art-card-link:hover {
        gap: 0.85rem !important;
        color: var(--art-primary-dark) !important;
    }

    /* ============================================
   CTA - Artist's Invitation with Premium Animations
   ============================================ */
    .art-cta {
        position: relative;
        padding: 7rem 0;
        background: linear-gradient(180deg, var(--art-canvas) 0%, var(--art-warm) 100%);
        overflow: hidden;
    }

    /* Animated Brush Strokes */
    .art-cta-brush {
        position: absolute;
        height: 4px;
        border-radius: 4px;
        opacity: 0;
        pointer-events: none;
    }

    .art-cta-brush--1 {
        width: 0;
        top: 20%;
        left: 5%;
        background: linear-gradient(90deg, transparent, var(--art-accent), var(--art-primary));
        animation: ctaBrushStroke 6s ease-out infinite;
    }

    .art-cta-brush--2 {
        width: 0;
        bottom: 25%;
        right: 8%;
        background: linear-gradient(270deg, transparent, var(--art-primary), var(--art-accent));
        animation: ctaBrushStroke 7s ease-out infinite;
        animation-delay: 3s;
    }

    @keyframes ctaBrushStroke {
        0% {
            width: 0;
            opacity: 0;
        }

        15% {
            opacity: 0.6;
        }

        50% {
            width: 200px;
            opacity: 0.4;
        }

        100% {
            width: 300px;
            opacity: 0;
        }
    }

    /* Floating Color Dots */
    .art-cta-dot {
        position: absolute;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        animation: ctaDotFloat 5s ease-in-out infinite;
        pointer-events: none;
    }

    .art-cta-dot--1 {
        top: 15%;
        left: 15%;
        background: var(--art-accent);
    }

    .art-cta-dot--2 {
        top: 30%;
        right: 20%;
        background: var(--art-primary);
        animation-delay: -1.5s;
    }

    .art-cta-dot--3 {
        bottom: 20%;
        left: 25%;
        background: var(--art-teal);
        animation-delay: -3s;
    }

    .art-cta-dot--4 {
        bottom: 35%;
        right: 15%;
        background: var(--art-accent);
        animation-delay: -4s;
    }

    @keyframes ctaDotFloat {

        0%,
        100% {
            transform: translateY(0) scale(1);
            opacity: 0.4;
        }

        50% {
            transform: translateY(-20px) scale(1.3);
            opacity: 0.8;
        }
    }

    /* Floating Gradient Ring */
    .art-cta-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 500px;
        height: 500px;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        border: 1px solid transparent;
        background:
            linear-gradient(var(--art-canvas), var(--art-canvas)) padding-box,
            linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(139, 90, 90, 0.15), transparent) border-box;
        animation: ctaRingPulse 10s ease-in-out infinite;
        pointer-events: none;
    }

    @keyframes ctaRingPulse {

        0%,
        100% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.5;
        }

        50% {
            transform: translate(-50%, -50%) scale(1.1);
            opacity: 0.8;
        }
    }


    /* CTA Paint Splash */
    .art-cta-splash {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
    }

    .art-cta-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(70px);
        animation: blobPulse 8s ease-in-out infinite;
    }

    .art-cta-blob--1 {
        width: 320px;
        height: 320px;
        top: 50%;
        left: 15%;
        transform: translateY(-50%);
        background: radial-gradient(circle, rgba(139, 90, 90, 0.18) 0%, transparent 70%);
    }

    .art-cta-blob--2 {
        width: 280px;
        height: 280px;
        top: 50%;
        right: 10%;
        transform: translateY(-50%);
        background: radial-gradient(circle, rgba(212, 165, 116, 0.22) 0%, transparent 70%);
        animation-delay: -4s;
    }

    @keyframes blobPulse {

        0%,
        100% {
            opacity: 0.6;
            transform: translateY(-50%) scale(1);
        }

        50% {
            opacity: 1;
            transform: translateY(-50%) scale(1.15);
        }
    }

    /* Pencil Sketch Decoration */
    .art-cta-sketch {
        position: absolute;
        font-size: 3rem;
        color: rgba(139, 90, 90, 0.06);
    }

    .art-cta-sketch--1 {
        top: 15%;
        left: 8%;
        transform: rotate(-15deg);
    }

    .art-cta-sketch--2 {
        bottom: 20%;
        right: 10%;
        transform: rotate(10deg);
    }

    /* CTA Content */
    .art-cta-inner {
        position: relative;
        z-index: 5;
        max-width: 680px;
        margin: 0 auto;
        text-align: center;
        padding: 0 2rem;
    }

    .art-cta-script {
        font-family: var(--font-script);
        font-size: 1.5rem;
        color: var(--art-accent);
        margin-bottom: 0.5rem;
    }

    .art-cta-title {
        font-family: var(--font-heading);
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        font-weight: 600;
        color: var(--art-charcoal);
        margin-bottom: 1rem;
    }

    .art-cta-desc {
        font-size: 1.15rem;
        font-weight: 300;
        color: var(--art-graphite);
        line-height: 1.85;
        margin-bottom: 2.5rem;
    }

    .art-cta-btn {
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.8rem !important;
        padding: 1.15rem 2.75rem !important;
        background: linear-gradient(135deg, #7D4E4E, #5C3939) !important;
        color: #ffffff !important;
        border: none !important;
        border-radius: 60px !important;
        font-family: var(--font-body) !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
        text-decoration: none !important;
        box-shadow: 0 15px 45px rgba(93, 57, 57, 0.4) !important;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
        cursor: pointer !important;
        letter-spacing: 0.03em !important;
        position: relative !important;
        overflow: hidden !important;
        -webkit-text-fill-color: #ffffff !important;
    }

    .art-cta-btn span,
    .art-cta-btn i {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .art-cta-btn::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent) !important;
        transition: left 0.6s !important;
        z-index: 1 !important;
    }

    .art-cta-btn:hover::before {
        left: 100% !important;
    }

    .art-cta-btn:hover {
        transform: translateY(-5px) scale(1.02) !important;
        box-shadow: 0 25px 60px rgba(93, 57, 57, 0.5) !important;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        background: linear-gradient(135deg, #6B4242, #4D2F2F) !important;
    }

    .art-cta-btn:hover span,
    .art-cta-btn:hover i {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
    }

    /* ============================================
   VIEWPORT ANIMATIONS
   ============================================ */
    .art-reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .art-reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .art-delay-1 {
        transition-delay: 0.1s;
    }

    .art-delay-2 {
        transition-delay: 0.2s;
    }

    .art-delay-3 {
        transition-delay: 0.3s;
    }

    .art-delay-4 {
        transition-delay: 0.4s;
    }

    /* ============================================
   RESPONSIVE
   ============================================ */
    @media (max-width: 1024px) {
        .art-hero-inner {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 3rem;
        }

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

        .art-hero-visual {
            order: 1;
            max-width: 380px;
            margin: 0 auto;
        }

        .art-hero-label {
            justify-content: center;
        }

        .art-hero-artwork {
            transform: rotate(0);
        }

        .art-float {
            display: none;
        }

        .art-brush,
        .art-drip {
            opacity: 0.5;
        }
    }

    @media (max-width: 768px) {
        .art-hero {
            padding: 5rem 0 3rem;
            min-height: auto;
        }

        .art-services,
        .art-cta {
            padding: 4rem 0;
        }

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

        .art-card {
            padding: 2rem;
        }
    }
