:root{
    --purple: #762b8d;
    --purple-dark: #4f1667;
    --purple-soft: #a94ec2;
    --yellow: #f2d533;
    --yellow-soft: #fff3a4;
    --cream: #fffaf2;
    --white: #ffffff;
    --text: #2f2332;
    --muted: #685a6d;
    --border: rgba(118, 43, 141, 0.12);
    --shadow: 0 18px 45px rgba(74, 19, 92, 0.12);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1180px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:min(100% - 32px, var(--container));
    margin:0 auto;
}

.section{
    padding: 96px 0;
}

.center{
    text-align:center;
}

.narrow{
    max-width: 800px;
}

.section-tag{
    display:inline-block;
    margin-bottom:14px;
    font-size:.88rem;
    text-transform:uppercase;
    letter-spacing:.12em;
    font-weight:800;
    color: var(--purple);
}

.section-tag.light{
    color: var(--yellow);
}

.section-heading{
    max-width: 760px;
    margin: 0 auto 44px;
}

.section-heading h2,
.about-copy h2,
.process-grid h2,
.content-card h2{
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    margin-bottom: 14px;
    color: var(--purple-dark);
}

.section-heading p,
.about-copy p,
.process-grid p,
.content-card p,
.small-hero p{
    color: var(--muted);
    font-size: 1.04rem;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 24px;
    border-radius:999px;
    font-weight:800;
    transition:.25s ease;
    border:2px solid transparent;
}

.btn:hover{
    transform: translateY(-2px);
}

.btn-primary{
    background: var(--purple);
    color: var(--white);
}

.btn-primary:hover{
    background: var(--purple-dark);
}

.btn-secondary{
    background: transparent;
    color: var(--purple);
    border-color: var(--purple);
}

.btn-secondary:hover{
    background: var(--purple);
    color: var(--white);
}

.btn-light{
    background: var(--white);
    color: var(--purple-dark);
}

.text-link{
    display:inline-block;
    margin-top: 18px;
    color: var(--purple);
    font-weight: 800;
}

/* Header */
.site-header{
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(242, 213, 51, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,.05);
}

.nav-wrap{
    min-height: 84px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.logo{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color: var(--purple-dark);
    font-weight: 900;
}

.logo-mark{
    width:46px;
    height:46px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background: var(--purple);
    color: var(--yellow);
    box-shadow: 0 10px 24px rgba(80, 17, 98, .16);
}

.logo-text{
    font-size:1.2rem;
    letter-spacing:.02em;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:26px;
}

.main-nav a{
    color: var(--purple-dark);
    font-weight:700;
}

.main-nav a:hover{
    color: var(--white);
}

.nav-btn{
    background: var(--purple);
    color: var(--white) !important;
    padding: 10px 18px;
    border-radius: 999px;
}

.menu-toggle{
    display:none;
    background: var(--purple);
    color: var(--white);
    border:none;
    padding:10px 14px;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor:pointer;
}

/* Hero */
.hero{
    position: relative;
    padding: 72px 0 130px;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.45) 0, rgba(255,255,255,0) 30%),
        linear-gradient(180deg, #f7db47 0%, #f4d94b 35%, #f7e889 100%);
    overflow:hidden;
}

.hero-grid{
    display:grid;
    grid-template-columns: 1.08fr .92fr;
    align-items:center;
    gap: 40px;
}

.eyebrow{
    display:inline-block;
    margin-bottom:16px;
    padding:8px 14px;
    border-radius:999px;
    background: rgba(255,255,255,.45);
    color: var(--purple);
    font-weight:800;
    font-size:.92rem;
}

.hero-text h1{
    font-size: clamp(2.7rem, 5vw, 5.2rem);
    line-height: .95;
    color: var(--purple-dark);
    margin-bottom: 18px;
}

.hero-text h1 span{
    display: inline-block;
    background: var(--purple);
    color: var(--white);
    padding: 8px 14px 12px;
    border-radius: 16px;
    margin-top: 10px;
}

.hero-text p{
    max-width: 620px;
    color: #4e4250;
    font-size: 1.08rem;
    margin-bottom: 26px;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom: 22px;
}

.hero-badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.hero-badges span{
    padding:10px 14px;
    border-radius:999px;
    background: rgba(118,43,141,.10);
    color: var(--purple-dark);
    font-weight:700;
}

.hero-visual{
    display:flex;
    justify-content:center;
}

.hero-frame{
    position:relative;
    width:min(470px, 100%);
    border-radius: 34px;
    padding: 16px;
    background: rgba(255,255,255,.38);
    box-shadow: var(--shadow);
    border: 2px solid rgba(255,255,255,.45);
}

.hero-art{
    position:relative;
    min-height: 520px;
    border-radius: 28px;
    overflow:hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.65), rgba(255,255,255,0) 35%),
        linear-gradient(135deg, #64207d 0%, #9444ae 45%, #f2d533 120%);
}

.art-bubble{
    position:absolute;
    border-radius:50%;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(4px);
}

.bubble-1{
    width:120px; height:120px; top:32px; right:30px;
}
.bubble-2{
    width:64px; height:64px; top:190px; left:36px;
}
.bubble-3{
    width:180px; height:180px; bottom:22px; right:-28px;
}

.profile-card{
    position:absolute;
    left:32px;
    right:32px;
    bottom:32px;
    padding:26px;
    border-radius: 24px;
    background: rgba(255,255,255,.16);
    border:1px solid rgba(255,255,255,.25);
    box-shadow: 0 18px 45px rgba(29, 8, 36, .18);
    color: var(--white);
    backdrop-filter: blur(8px);
}

.mini-label{
    display:inline-block;
    margin-bottom:10px;
    font-size:.78rem;
    letter-spacing:.1em;
    text-transform:uppercase;
    color: var(--yellow-soft);
    font-weight:800;
}

.profile-card h3{
    font-size: 2rem;
    line-height:1;
    margin-bottom:10px;
}

.profile-card p{
    color: rgba(255,255,255,.92);
    margin-bottom:16px;
}

.mini-tags{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.mini-tags span{
    padding:8px 12px;
    border-radius:999px;
    background: rgba(255,255,255,.14);
    color: var(--white);
    font-size:.92rem;
    font-weight:700;
}

.hero-curve{
    position:absolute;
    left:0;
    right:0;
    bottom:-1px;
    height: 150px;
    background: var(--cream);
    border-top-left-radius: 58% 100%;
    border-top-right-radius: 42% 100%;
}

/* Intro strip */
.intro-strip{
    padding-top: 18px;
}

.intro-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:20px;
}

.intro-card{
    background: rgba(255,255,255,.75);
    border:1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 20px;
    padding: 24px;
}

.intro-card strong{
    display:block;
    color: var(--purple-dark);
    margin-bottom:8px;
    font-size:1.05rem;
}

.intro-card p{
    color: var(--muted);
}

/* About */
.about-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:34px;
    align-items:start;
}

.about-stack{
    display:grid;
    gap:16px;
}

.glass-card{
    display:grid;
    grid-template-columns: 58px 1fr;
    gap:16px;
    align-items:start;
    padding: 24px;
    border-radius: 22px;
    background: rgba(255,255,255,.75);
    border:1px solid var(--border);
    box-shadow: var(--shadow);
}

.glass-icon{
    width:58px;
    height:58px;
    display:grid;
    place-items:center;
    border-radius:18px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-soft) 100%);
    color: var(--yellow);
    font-size:1.3rem;
}

.glass-card h3{
    color: var(--purple-dark);
    margin-bottom:8px;
}

.glass-card p{
    color: var(--muted);
}

/* Services */
.alt-surface{
    background:
        radial-gradient(circle at 0% 0%, rgba(242,213,51,.28), rgba(242,213,51,0) 26%),
        linear-gradient(180deg, #fff8e1 0%, #fff5c8 100%);
}

.service-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:22px;
}

.service-card{
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
    transition:.25s ease;
}

.service-card:hover,
.portfolio-card:hover,
.content-card:hover{
    transform: translateY(-4px);
}

.service-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:18px;
}

.service-number{
    color: rgba(118,43,141,.45);
    font-weight:900;
    font-size:1.05rem;
}

.service-icon{
    width:56px;
    height:56px;
    display:grid;
    place-items:center;
    border-radius:16px;
    background: var(--purple);
    color: var(--yellow);
    font-size:1.2rem;
}

.service-card h3{
    margin-bottom:10px;
    color: var(--purple-dark);
    font-size: 1.35rem;
}

.service-card p{
    color: var(--muted);
}

/* Portfolio */
.portfolio-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:22px;
}

.portfolio-card{
    background: var(--white);
    border:1px solid var(--border);
    border-radius: 24px;
    overflow:hidden;
    box-shadow: var(--shadow);
    transition:.25s ease;
}

.portfolio-card.featured{
    transform: translateY(-8px);
}

.portfolio-thumb{
    height:250px;
}

.thumb-a{
    background:
      linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0)),
      linear-gradient(135deg, #702a89 0%, #ba61cb 100%);
}
.thumb-b{
    background:
      radial-gradient(circle at 20% 20%, rgba(255,255,255,.35), rgba(255,255,255,0) 28%),
      linear-gradient(135deg, #f2d533 0%, #f9eb9c 40%, #8a389f 100%);
}
.thumb-c{
    background:
      linear-gradient(135deg, rgba(255,255,255,.15), rgba(255,255,255,0)),
      linear-gradient(135deg, #4e1667 0%, #8f3ea5 55%, #f2d533 140%);
}

.portfolio-content{
    padding:22px;
}

.portfolio-content small{
    display:inline-block;
    color: var(--purple);
    text-transform:uppercase;
    letter-spacing:.08em;
    font-weight:800;
    margin-bottom:8px;
}

.portfolio-content h3{
    margin-bottom:10px;
    color: var(--purple-dark);
    font-size:1.3rem;
}

.portfolio-content p{
    color: var(--muted);
}

.section-action{
    margin-top:34px;
}

/* Process */
.process-grid{
    display:grid;
    grid-template-columns: .9fr 1.1fr;
    gap:34px;
    align-items:start;
}

.timeline{
    display:grid;
    gap:16px;
}

.timeline article{
    display:grid;
    grid-template-columns: 64px 1fr;
    gap:16px;
    padding:24px;
    border-radius: 22px;
    background: rgba(255,255,255,.78);
    border:1px solid var(--border);
    box-shadow: var(--shadow);
}

.timeline article span{
    width:64px;
    height:64px;
    border-radius:20px;
    display:grid;
    place-items:center;
    background: var(--purple);
    color: var(--yellow);
    font-size:1.25rem;
    font-weight:900;
}

.timeline h3{
    color: var(--purple-dark);
    margin-bottom:8px;
}

.timeline p{
    color: var(--muted);
}

/* CTA */
.cta-section{
    background: linear-gradient(180deg, #5a1b74 0%, #4a145f 100%);
}

.cta-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding: 42px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.18), rgba(255,255,255,0) 28%),
        linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
    color: var(--white);
    box-shadow: 0 24px 50px rgba(21, 6, 27, .24);
}

.cta-box h2{
    font-size: clamp(2rem, 4vw, 3rem);
    line-height:1.05;
    margin-bottom:12px;
}

.cta-box p{
    color: rgba(255,255,255,.9);
    max-width: 720px;
}

/* Inner pages */
.inner-page{
    min-height: 60vh;
}

.page-hero{
    padding: 90px 0 40px;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.4), rgba(255,255,255,0) 28%),
        linear-gradient(180deg, #f7dd58 0%, #fff2b5 100%);
}

.small-hero h1{
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.02;
    color: var(--purple-dark);
    margin-bottom: 14px;
}

.content-card{
    background: rgba(255,255,255,.85);
    border:1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 24px;
    padding: 28px;
    transition:.25s ease;
}

.blog-list{
    display:grid;
    gap:20px;
}

.contact-box p{
    margin-bottom:10px;
}

/* Footer */
.site-footer{
    background: #2a1734;
    color: rgba(255,255,255,.88);
    padding-top: 74px;
}

.footer-grid{
    display:grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap:30px;
    padding-bottom: 42px;
}

.site-footer h3,
.site-footer h4{
    color: var(--yellow);
    margin-bottom:14px;
}

.site-footer p,
.site-footer li{
    color: rgba(255,255,255,.82);
}

.site-footer ul{
    display:grid;
    gap:10px;
}

.site-footer a{
    color: rgba(255,255,255,.82);
}

.site-footer a:hover{
    color: var(--yellow);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding:18px 0;
    text-align:center;
}

/* Responsive */
@media (max-width: 1024px){
    .hero-grid,
    .about-grid,
    .process-grid,
    .cta-box{
        grid-template-columns: 1fr;
    }

    .service-grid,
    .portfolio-grid,
    .intro-grid,
    .footer-grid{
        grid-template-columns: 1fr 1fr;
    }

    .portfolio-card.featured{
        transform:none;
    }
}

@media (max-width: 768px){
    .menu-toggle{
        display:inline-block;
    }

    .main-nav{
        display:none;
        position:absolute;
        top:84px;
        left:16px;
        right:16px;
        flex-direction:column;
        align-items:flex-start;
        gap:14px;
        padding:18px;
        background: var(--white);
        border-radius: 18px;
        box-shadow: var(--shadow);
    }

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

    .hero{
        padding: 46px 0 112px;
    }

    .hero-frame{
        width:100%;
    }

    .hero-art{
        min-height: 430px;
    }

    .service-grid,
    .portfolio-grid,
    .intro-grid,
    .footer-grid{
        grid-template-columns: 1fr;
    }

    .section{
        padding: 76px 0;
    }

    .cta-box{
        text-align:center;
        padding: 30px 24px;
    }

    .profile-card{
        left:18px;
        right:18px;
        bottom:18px;
        padding:18px;
    }

    .profile-card h3{
        font-size:1.65rem;
    }
}
