:root {
  --pink: #FF6FAE;
  --pink-light: #FFB7DE;
  --purple: #B892FF;
  --purple-dark: #7B5FD9;
  --yellow: #FFD86B;
  --mint: #9EE6C4;
  --blue: #6BD9FF;
  --ink: #2B2140;
  --cream: #FFF8F2;
  --font-display: 'Baloo 2', cursive;
  --font-body: 'Nunito', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0 0 .4em 0;
  line-height: 1.1;
}

p { line-height: 1.6; }

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

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--purple-dark);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  margin: 0 0 .6em 0;
}

/* Background blobs */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
}
.blob-1 { width: 500px; height: 500px; background: var(--pink-light); top: -150px; left: -150px; }
.blob-2 { width: 600px; height: 600px; background: var(--mint); top: 40%; right: -250px; }
.blob-3 { width: 450px; height: 450px; background: var(--yellow); bottom: -200px; left: 20%; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 6%;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 248, 242, 0.75);
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.logo-icon { font-size: 1.4rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 700;
}
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--pink); }
.btn-small {
  background: var(--ink);
  color: white !important;
  padding: .55rem 1.3rem;
  border-radius: 999px;
  transition: transform .2s, background .2s;
}
.btn-small:hover { background: var(--pink); transform: translateY(-2px); }

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 3rem 6% 5rem;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.hero-text { flex: 1; min-width: 320px; }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
}
.highlight {
  color: var(--pink);
  position: relative;
  display: inline-block;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 480px;
  color: #55506a;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary, .btn-outline {
  font-family: var(--font-display);
  font-weight: 700;
  padding: .9rem 1.8rem;
  border-radius: 999px;
  display: inline-block;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  box-shadow: 0 10px 25px -8px rgba(184, 146, 255, .6);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 30px -6px rgba(184, 146, 255, .7); }
.btn-outline {
  border: 2.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { background: var(--ink); color: white; transform: translateY(-3px); }

.hero-art {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-cat {
  width: 100%;
  max-width: 380px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.sparkle {
  position: absolute;
  color: var(--yellow);
  font-size: 2rem;
  animation: twinkle 2.4s ease-in-out infinite;
}
.sparkle-1 { top: 10%; left: 5%; animation-delay: 0s; }
.sparkle-2 { top: 60%; right: 5%; animation-delay: .8s; color: var(--pink); }
.sparkle-3 { top: 5%; right: 20%; animation-delay: 1.4s; color: var(--purple); }
@keyframes twinkle {
  0%, 100% { opacity: .2; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Marquee */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: .9rem 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .05em;
}
.marquee-track {
  display: inline-block;
  animation: scroll-left 22s linear infinite;
}
.marquee span { padding-right: 2rem; }
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section head */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-head.light .eyebrow { color: rgba(255,255,255,.85); }
.section-sub { color: #55506a; font-size: 1.05rem; }
.section-head.light .section-sub { color: rgba(255,255,255,.85); }
.section-head.light h2 { color: white; }

/* Gallery */
.gallery-section { padding: 6rem 6%; max-width: 1300px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}
.card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 30px -12px rgba(43, 33, 64, .18);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  position: relative;
  color: var(--c1, var(--pink));
}
.card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 24px 40px -14px rgba(43, 33, 64, .3);
}
.card-art {
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, var(--c1, var(--pink-light)), var(--c2, var(--purple)));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.card-art svg { width: 75%; height: 75%; color: white; transition: transform .35s; }
.card:hover .card-art svg { transform: scale(1.08) rotate(2deg); }
.card-body { padding: 1.2rem 1.4rem 1.5rem; }
.card-body h3 { font-size: 1.25rem; margin-bottom: .2rem; }
.card-body p { margin: 0; color: #7a7590; font-size: .92rem; }
.card-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,.92);
  padding: .3rem .7rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--ink);
}

/* About */
.about-section {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 5rem 6%;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.about-art { flex: 0 0 300px; }
.about-art svg { width: 100%; max-width: 300px; }
.about-text { flex: 1; min-width: 300px; }
.about-text p { color: #55506a; font-size: 1.05rem; max-width: 560px; }
.stat-row { display: flex; gap: 2.5rem; margin-top: 1.6rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--font-display); font-size: 1.8rem; color: var(--pink); }
.stat span { font-size: .85rem; color: #7a7590; font-weight: 700; }

/* Commissions */
.commission-section {
  background: linear-gradient(135deg, var(--purple-dark), var(--pink));
  padding: 5rem 6%;
  color: white;
  border-radius: 40px;
  max-width: 1300px;
  margin: 2rem auto;
}
.commission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}
.commission-card {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 22px;
  padding: 1.8rem;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform .25s, background .25s;
}
.commission-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.22); }
.commission-icon { font-size: 2.2rem; margin-bottom: .6rem; }
.commission-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.commission-card p { font-size: .9rem; opacity: .9; margin: 0; }
.commission-cta { text-align: center; }
.commission-cta .btn-primary { background: white; color: var(--pink); box-shadow: 0 10px 25px -8px rgba(0,0,0,.25); }
.commission-cta .btn-primary:hover { background: var(--ink); color: white; }

/* Contact */
.contact-section { padding: 5rem 6% 7rem; display: flex; justify-content: center; }
.contact-card {
  text-align: center;
  max-width: 560px;
  background: white;
  border-radius: 32px;
  padding: 3.5rem 2.5rem;
  box-shadow: 0 20px 45px -18px rgba(43,33,64,.22);
}
.contact-card p { color: #55506a; }
.contact-card .btn-primary { margin-top: 1.2rem; font-size: 1.05rem; }
.social-row {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-weight: 700;
  color: var(--purple-dark);
  flex-wrap: wrap;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  color: #9a94ac;
  font-size: .9rem;
}

@media (max-width: 720px) {
  .nav-links { gap: 1rem; }
  .nav-links a:not(.btn-small) { display: none; }
  .hero { text-align: center; justify-content: center; }
  .hero-actions { justify-content: center; }
  .about-section { text-align: center; justify-content: center; }
  .stat-row { justify-content: center; }
}
