@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

:root {
  --pink: #d6336c;
  --pink-dark: #a61e4d;
  --pink-light: #ffe3ec;
  --gold: #d4af37;
  --ink: #221c1f;
  --muted: #8a7c82;
  --bg: #fdf5f7;
  --card: #ffffff;
  --border: #f1dfe6;
  --success: #2b8a3e;
  --success-bg: #e3f7e7;
  --danger: #c92a2a;
  --danger-bg: #fdeaea;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(34, 28, 31, 0.06);
  --shadow-md: 0 10px 28px rgba(34, 28, 31, 0.10);
  --shadow-lg: 0 20px 48px rgba(34, 28, 31, 0.16);
  --gradient-pink: linear-gradient(135deg, #e75480 0%, #d6336c 55%, #a61e4d 100%);
  --gradient-gold: linear-gradient(90deg, #d4af37 0%, #e8a3bb 55%, #d6336c 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  line-height: 1.25;
  margin: 0;
}

a { color: var(--pink); text-decoration: none; }

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

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 245, 247, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
}
.site-nav-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.site-links { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.site-links a { font-weight: 600; font-size: 0.88rem; color: var(--ink); }
.site-links a:hover { color: var(--pink); }
.site-links a.cta {
  background: var(--gradient-pink);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--gradient-pink);
  color: #fff;
  text-align: center;
  padding: 48px 20px 76px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,.18), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(255,255,255,.14), transparent 50%);
}
.hero > * { position: relative; }
.hero h1 { font-size: clamp(1.6rem, 4vw, 2.3rem); font-weight: 800; margin-bottom: 10px; }
.hero p { margin: 0 auto; max-width: 480px; opacity: .95; font-size: 1rem; }

/* ---------- Layout helpers ---------- */
.container { max-width: 980px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 560px; margin: 0 auto; padding: 0 20px; }

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn-block { display: flex; width: 100%; }
.btn-primary { background: var(--gradient-pink); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.btn-gold { background: var(--gradient-gold); color: #1a1a1a; box-shadow: var(--shadow-md); }
.btn-gold:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.btn-outline { background: #fff; color: var(--pink); border: 2px solid var(--pink-light); }
.btn-outline:hover { border-color: var(--pink); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-ghost { background: none; color: var(--muted); font-weight: 600; padding: 10px 16px; }

/* ---------- Forms ---------- */
label { display: block; font-weight: 600; font-size: 0.85rem; margin: 18px 0 6px; color: var(--ink); }
input[type=text], input[type=tel], input[type=email], input[type=number], input[type=file],
select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px var(--pink-light);
}
textarea { resize: vertical; min-height: 80px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%238a7c82'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 38px; }
.hint { color: var(--muted); font-size: 0.78rem; margin-top: 5px; }

/* ---------- Pills / tabs ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  transition: all .15s ease;
}
.pill:hover { border-color: var(--pink); }
.pill.active { background: var(--gradient-pink); color: #fff; border-color: transparent; box-shadow: var(--shadow-sm); }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
}
.badge-gold { background: linear-gradient(90deg, #ffe9a8, #ffd166); color: #6b4c00; }
/* Instagram-style blue verification tick, shown beside a verified artist's name */
.vbadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #1d9bf0;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  margin-left: 5px;
  vertical-align: middle;
  flex: 0 0 auto;
  box-shadow: 0 1px 4px rgba(29, 155, 240, 0.4);
}
.badge-success { background: var(--success-bg); color: var(--success); }
.badge-muted { background: #f1eceb; color: var(--muted); }
.badge-danger { background: var(--danger-bg); color: var(--danger); }

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  padding: 40px 20px;
}
.site-footer a { color: var(--muted); font-weight: 600; text-decoration: underline; }

/* ---------- Misc ---------- */
.status-msg { margin-top: 14px; text-align: center; font-weight: 600; font-size: 0.9rem; }
.status-msg.error { color: var(--danger); }
.status-msg.success { color: var(--success); }

@media (max-width: 640px) {
  .site-links { gap: 10px; }
  .site-links a:not(.cta) { display: none; }
}
