/* ===== Design tokens ===== */
:root {
  --bg: #0c0b10;
  --bg-2: #14121c;
  --panel: #1b1826;
  --text: #ece9f5;
  --muted: #a49fb8;
  --accent: #e0454f;      /* SWAP: your brand color */
  --accent-2: #f0b429;
  --radius: 14px;
  --max: 1080px;
  font-synthesis: none;
}

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

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(224,69,79,.18), transparent 60%),
    radial-gradient(900px 500px at 10% 10%, rgba(240,180,41,.08), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

section { padding: 96px 24px; }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: .5px;
}

/* ===== Nav ===== */
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { font-weight: 800; letter-spacing: 4px; font-size: 1.15rem; }
.nav-cta {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  transition: border-color .2s, background .2s;
}
.nav-cta:hover { border-color: var(--accent); background: rgba(224,69,79,.12); }

/* ===== Hero ===== */
.hero { min-height: 92vh; display: flex; flex-direction: column; }
.hero-inner {
  max-width: var(--max);
  margin: auto;
  padding: 40px 24px 80px;
  text-align: center;
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
}
.accent { color: var(--accent); }
.hero-sub {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 620px;
  margin: 24px auto 36px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-art {
  margin-top: 72px;
  display: flex;
  gap: 18px;
  justify-content: center;
  perspective: 1200px;
}
.hero-art img {
  width: min(30%, 240px);
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .3s;
}
.hero-art img:nth-child(1) { transform: rotate(-6deg) translateY(10px); }
.hero-art img:nth-child(3) { transform: rotate(6deg) translateY(10px); }
.hero-art img:hover { transform: translateY(-8px) rotate(0); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 999px;
  transition: transform .15s, box-shadow .2s, background .2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(224,69,79,.35);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(224,69,79,.5); }
.btn-ghost {
  color: var(--text);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-ghost:hover { border-color: var(--accent); }
.btn-lg { font-size: 1.15rem; padding: 16px 40px; }

/* ===== Features ===== */
.features { background: var(--bg-2); }
.feature-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature {
  background: var(--panel);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.06);
}
.feature h3 { margin-bottom: 12px; font-size: 1.25rem; }
.feature p { color: var(--muted); }

/* ===== Gallery ===== */
.gallery-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
}

/* ===== CTA ===== */
.cta {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
}
.cta h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 14px; }
.cta p { color: var(--muted); margin-bottom: 32px; }

/* ===== Footer ===== */
.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto; }
}
