:root {
  --pink-50: #fff2fb;
  --pink-100: #ffe2f6;
  --pink-200: #ffc1eb;
  --pink-300: #ff8edb;
  --pink-500: #ff4fb8;
  --pink-600: #ee2fa4;
  --pink-700: #c91682;
  --violet: #7b4dff;
  --cream: #fffaf3;
  --ink: #35182b;
  --muted: #78556d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(201, 22, 130, .18);
  --radius: 28px;
  --radius-sm: 18px;
  --container: min(1120px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 142, 219, .45), transparent 34rem),
    radial-gradient(circle at 85% 12%, rgba(123, 77, 255, .13), transparent 26rem),
    linear-gradient(180deg, var(--pink-50), #fff 42%, #fff7fc);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container { width: var(--container); margin-inline: auto; }
.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  margin: 12px;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  z-index: 100;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 242, 251, .78);
  border-bottom: 1px solid rgba(255, 79, 184, .14);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand strong {
  display: block;
  font-size: 1.04rem;
  letter-spacing: -.02em;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  margin-top: -2px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  color: var(--muted);
  font-weight: 750;
  font-size: .94rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: .2s ease;
}
.nav-menu a:hover { color: var(--pink-700); background: rgba(255, 79, 184, .12); }
.nav-menu .nav-cta {
  color: white;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  box-shadow: 0 10px 24px rgba(255, 79, 184, .28);
}
.nav-menu .nav-cta:hover { color: white; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: white;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(201, 22, 130, .12);
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: 70px 0 88px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--pink-700);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}
h1, h2, h3 { line-height: 1.05; margin: 0; letter-spacing: -.045em; }
h1 { font-size: clamp(2.8rem, 7vw, 5.8rem); max-width: 760px; }
h1 span {
  background: linear-gradient(120deg, var(--pink-600), var(--violet));
  -webkit-background-clip: text;
  color: transparent;
}
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: 1.32rem; }
.lead {
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--muted);
  max-width: 650px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  box-shadow: 0 15px 30px rgba(238, 47, 164, .28);
}
.btn-soft {
  color: var(--pink-700);
  background: white;
  box-shadow: 0 12px 28px rgba(201, 22, 130, .12);
}
.btn-full { width: 100%; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-row span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  color: var(--muted);
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(201, 22, 130, .09);
}

.hero-art {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}
.paint-card {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255, 79, 184, .16);
  border-radius: 36px;
  padding: 18px 18px 22px;
  box-shadow: var(--shadow);
  rotate: 3deg;
}
.paint-card-big { width: min(430px, 100%); }
.paint-card p {
  margin: 16px 8px 0;
  color: var(--pink-700);
  font-weight: 950;
  font-size: 1.08rem;
}
.floating-badge {
  position: absolute;
  top: 70px;
  right: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 950;
  box-shadow: 0 16px 36px rgba(53, 24, 43, .16);
  rotate: -7deg;
}
.mini-card {
  position: absolute;
  width: 150px;
  height: 180px;
  border: 12px solid white;
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(201, 22, 130, .18);
}
.mini-card.one {
  left: -4px;
  bottom: 72px;
  background: radial-gradient(circle, #fff 0 8%, transparent 9%), linear-gradient(135deg, #ffb5e8, #ff4fb8 55%, #7b4dff);
  background-size: 34px 34px, auto;
  rotate: -10deg;
}
.mini-card.two {
  right: 2px;
  bottom: 32px;
  background: radial-gradient(circle at 70% 25%, #fff 0 8%, transparent 9%), linear-gradient(135deg, #ffd1ef, #ff88cc, #ffd66b);
  rotate: 11deg;
}
.canvas-art {
  position: relative;
  min-height: 270px;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--pink-100);
}
.canvas-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.canvas-art::before, .canvas-art::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(.2px);
  opacity: .9;
}
.canvas-sunset {
  min-height: 455px;
  background:
    radial-gradient(circle at 52% 22%, #fff7b1 0 12%, transparent 13%),
    radial-gradient(circle at 20% 38%, #ffffff 0 4%, transparent 5%),
    radial-gradient(circle at 75% 35%, #ffffff 0 5%, transparent 6%),
    linear-gradient(180deg, #ff90d5 0 42%, #ffd3ec 43% 64%, #b98cff 65%);
}
.canvas-sunset::before {
  width: 115%; height: 150px; left: -8%; bottom: 34px;
  background: linear-gradient(135deg, #ff4fb8, #ff83ce, #fbd55c);
  transform: rotate(-7deg);
}
.canvas-sunset::after {
  width: 70%; height: 110px; right: -8%; bottom: 0;
  background: linear-gradient(135deg, #7b4dff, #ff69c7);
  transform: rotate(10deg);
}
.canvas-flowers {
  background:
    radial-gradient(circle at 18% 26%, #fff 0 5%, transparent 6%),
    radial-gradient(circle at 70% 18%, #fff 0 4%, transparent 5%),
    linear-gradient(160deg, #ffd6ef, #ff7ccc 48%, #ffe9a6);
}
.canvas-flowers::before {
  width: 280px; height: 280px; left: -80px; bottom: -105px;
  background: radial-gradient(circle, #ff4fb8 0 25%, #ffaadf 26% 47%, transparent 48%);
}
.canvas-flowers::after {
  width: 220px; height: 220px; right: -60px; top: 70px;
  background: radial-gradient(circle, #fff 0 13%, #ffde59 14% 25%, #ff4fb8 26% 43%, transparent 44%);
}
.canvas-rainbow {
  background:
    radial-gradient(circle at 20% 20%, #fff 0 6%, transparent 7%),
    radial-gradient(circle at 80% 25%, #fff 0 5%, transparent 6%),
    linear-gradient(180deg, #ffb4e5, #e8d7ff);
}
.canvas-rainbow::before {
  width: 370px; height: 210px; left: 50%; bottom: -78px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at center, transparent 0 36%, #ff4fb8 37% 45%, #ffd66b 46% 54%, #7b4dff 55% 63%, transparent 64%);
}
.canvas-rainbow::after {
  width: 125px; height: 125px; right: 16px; top: 18px;
  background: #fff8a7;
}
.canvas-heart {
  background: linear-gradient(135deg, #fff0f8, #ff93d7 45%, #ff4fb8);
}
.canvas-heart::before {
  width: 150px; height: 150px; left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #fff;
  border-radius: 28px 999px 999px 999px;
  box-shadow: 42px -42px 0 #fff, -42px 42px 0 #fff;
}
.canvas-heart::after {
  width: 52px; height: 52px; left: 20%; top: 20%;
  background: #ffe15c;
  box-shadow: 190px 20px 0 #7b4dff, 220px 150px 0 #ffffff;
}
.canvas-unicorn {
  background:
    radial-gradient(circle at 78% 24%, #fff 0 5%, transparent 6%),
    radial-gradient(circle at 20% 24%, #fff 0 4%, transparent 5%),
    linear-gradient(135deg, #ffd4f0, #ff76ca 52%, #8a6cff);
}
.canvas-unicorn::before {
  width: 290px; height: 210px; left: 12%; bottom: -58px;
  background: linear-gradient(135deg, #fff, #ffe7f8);
  border-radius: 62% 38% 48% 52% / 56% 44% 56% 44%;
}
.canvas-unicorn::after {
  width: 110px; height: 210px; right: 24%; top: 36px;
  background: linear-gradient(180deg, #ffe15c, #ff4fb8);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  border-radius: 0;
}

.section { padding: 92px 0; }
.section-pink {
  padding: 26px 0;
  background: linear-gradient(90deg, var(--pink-600), var(--violet));
  color: white;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stats-grid div {
  padding: 22px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(12px);
}
.stats-grid strong {
  display: block;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  letter-spacing: -.04em;
  line-height: 1;
}
.stats-grid span { display: block; margin-top: 7px; opacity: .92; font-weight: 750; }
.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-heading p:not(.eyebrow), .split > p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 14px 0 0;
}
.section-heading.split {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 32px;
  max-width: none;
  align-items: end;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(250px, auto);
  gap: 18px;
}
.gallery-item {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255, 79, 184, .14);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 20px 55px rgba(201, 22, 130, .10);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall .canvas-art { min-height: 570px; }
.gallery-item.wide .canvas-art { min-height: 270px; }
.gallery-item h3 { margin: 16px 8px 4px; }
.gallery-item p { margin: 0 8px 8px; color: var(--muted); font-weight: 750; }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  background: white;
  border: 1px solid rgba(255, 79, 184, .16);
  border-radius: 32px;
  padding: 14px;
  box-shadow: 0 22px 60px rgba(201, 22, 130, .12);
}
.product-card.featured {
  transform: translateY(-14px);
  box-shadow: 0 32px 80px rgba(201, 22, 130, .20);
}
.product-media .canvas-art { min-height: 250px; }
.product-body { padding: 18px 8px 8px; }
.pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--pink-700);
  background: var(--pink-100);
  font-size: .78rem;
  font-weight: 950;
  margin-bottom: 12px;
}
.product-body p { color: var(--muted); margin: 12px 0 18px; }
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 850;
}
.product-meta strong { color: var(--ink); font-size: 1.35rem; }
.story-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(255,255,255,.72), transparent 20rem),
    linear-gradient(135deg, var(--pink-100), #fff, #fff5db);
}
.story-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
.story-photo {
  min-height: 520px;
  border-radius: 42px;
  background: linear-gradient(135deg, #ff8edb, #ff4fb8, #7b4dff);
  padding: 18px;
  box-shadow: var(--shadow);
  rotate: -2deg;
}
.portrait-placeholder {
  height: 100%;
  min-height: 484px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 20% 25%, rgba(255,255,255,.65) 0 7%, transparent 8%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.55) 0 8%, transparent 9%),
    rgba(255,255,255,.24);
  color: white;
  border: 1px solid rgba(255,255,255,.32);
}
.portrait-placeholder span { font-size: 4.5rem; }
.portrait-placeholder strong { display: block; margin-top: 16px; font-size: 2.1rem; letter-spacing: -.04em; }
.portrait-placeholder small { font-size: 1rem; font-weight: 800; opacity: .9; }
.story-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.social-card {
  position: relative;
  min-height: 215px;
  padding: 28px;
  border-radius: 32px;
  color: white;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(201, 22, 130, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.social-card:hover { transform: translateY(-4px); box-shadow: 0 32px 72px rgba(201, 22, 130, .24); }
.social-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  bottom: -50px;
  background: rgba(255,255,255,.18);
  border-radius: 999px;
}
.social-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: rgba(255,255,255,.22);
  font-size: 1.9rem;
  font-weight: 950;
  margin-bottom: 28px;
}
.social-card strong { display: block; font-size: 1.55rem; letter-spacing: -.03em; }
.social-card small { display: block; margin-top: 8px; max-width: 190px; font-weight: 750; opacity: .88; }
.instagram { background: linear-gradient(135deg, #ff4fb8, #ff7b54, #7b4dff); }
.youtube { background: linear-gradient(135deg, #ff2b55, #ff4fb8); }
.tiktok { background: linear-gradient(135deg, #20132f, #7b4dff, #ff4fb8); }
.shipping-section { padding-top: 30px; }
.shipping-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: center;
  padding: 42px;
  border-radius: 38px;
  color: white;
  background:
    radial-gradient(circle at 100% 0, rgba(255,255,255,.24), transparent 22rem),
    linear-gradient(135deg, var(--pink-600), var(--violet));
  box-shadow: var(--shadow);
}
.shipping-card .eyebrow { color: #fff5bd; }
.shipping-card p:not(.eyebrow) { opacity: .92; font-size: 1.06rem; }
.shipping-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.shipping-list span {
  min-height: 84px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.14);
  font-weight: 900;
}
.contact-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  padding: 42px;
  border-radius: 38px;
  background: white;
  box-shadow: 0 28px 80px rgba(201, 22, 130, .16);
  border: 1px solid rgba(255, 79, 184, .16);
}
.contact-card p:not(.eyebrow) { color: var(--muted); }
.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: var(--pink-700);
  font-weight: 900;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 900;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 79, 184, .24);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--pink-50);
  outline: none;
  transition: .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--pink-500);
  box-shadow: 0 0 0 4px rgba(255, 79, 184, .14);
  background: white;
}
.site-footer {
  padding: 42px 0;
  background: #24101d;
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr auto;
  gap: 24px;
  align-items: center;
}
.footer-brand small { color: #ffc1eb; }
.site-footer p { margin: 14px 0 0; color: rgba(255,255,255,.68); max-width: 420px; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: rgba(255,255,255,.82); font-weight: 850; }
.copyright { white-space: nowrap; }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 12px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255, 79, 184, .15);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .nav-menu.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu a { padding: 13px 14px; }
  .hero, .story-grid, .shipping-card, .contact-card, .section-heading.split {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 44px; gap: 24px; }
  .hero-art { min-height: 500px; }
  .paint-card-big { width: min(390px, 92%); }
  .canvas-sunset { min-height: 390px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid, .social-grid { grid-template-columns: 1fr; }
  .product-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-brand { justify-content: center; }
}

@media (max-width: 620px) {
  :root { --container: min(100% - 28px, 1120px); }
  .nav { min-height: 70px; }
  .nav-menu { top: 70px; left: 14px; right: 14px; }
  .brand small { display: none; }
  .section { padding: 68px 0; }
  .hero { min-height: auto; padding: 36px 0 68px; }
  .hero-actions .btn { width: 100%; }
  .hero-art { min-height: 430px; }
  .floating-badge { top: 36px; right: -2px; }
  .mini-card { width: 110px; height: 138px; border-width: 9px; }
  .mini-card.one { bottom: 48px; }
  .mini-card.two { bottom: 18px; }
  .canvas-sunset { min-height: 330px; }
  .stats-grid, .gallery-grid, .shipping-list { grid-template-columns: 1fr; }
  .gallery-item.tall, .gallery-item.wide { grid-column: auto; grid-row: auto; }
  .gallery-item.tall .canvas-art, .gallery-item.wide .canvas-art, .canvas-art { min-height: 250px; }
  .story-photo { min-height: 400px; }
  .portrait-placeholder { min-height: 364px; }
  .shipping-card, .contact-card { padding: 26px; border-radius: 28px; }
}
