:root {
  --bg: #120a1f;
  --bg-alt: #1a0f2e;
  --gold: #d4af37;
  --gold-soft: #e8cf7a;
  --text: #f3ecff;
  --text-muted: #b9aed1;
  --card-bg: #1f1435;
  --card-border: #3a2a5c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

a {
  color: var(--gold-soft);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  text-align: center;
  padding: 5rem 1.5rem 3rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 60rem;
  height: 60rem;
  background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, rgba(212,175,55,0) 70%);
  pointer-events: none;
}

.brand {
  font-size: 2.6rem;
  margin: 0 0 0.5rem;
  color: var(--gold);
  position: relative;
}

.tagline {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  position: relative;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 1rem;
  position: relative;
}

.social-btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 2px solid;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.social-instagram {
  background: #d62828;
  color: #ffffff;
  border-color: #ffffff;
}

.social-tiktok {
  background: #000000;
  color: #ffffff;
  border-color: #ffffff;
}

.social-onlyfans {
  background: #00aeef;
  color: #ffffff;
  border-color: #ffffff;
}

.donate-btn {
  display: inline-block;
  margin-top: 1.5rem;
  position: relative;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #a8d0ff;
  background: #0a1a4a;
  border: 2px solid #a8d0ff;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.donate-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.15);
}

/* ---------- Sections ---------- */

section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.about h2,
.catalog h2,
.contact h2 {
  text-align: center;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.about p,
.contact p {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.about-intro {
  margin-bottom: 1.25rem;
}

.about-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
  padding: 0;
  color: var(--text-muted);
}

.about-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.about-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.catalog-intro {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* ---------- Catalogue ---------- */

.catalog-subtitle {
  text-align: center;
  color: var(--gold-soft);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 2.5rem 0 1.25rem;
}

.catalog-subtitle:first-of-type {
  margin-top: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 700px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.cards + .catalog-subtitle {
  margin-top: 3rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.3rem;
  color: var(--text);
}

.duration {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
}

.desc {
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.price {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 0 1.25rem;
}

.buy-btn {
  display: inline-block;
  background: var(--gold);
  color: #1a0f2e;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
  transition: background 0.2s ease;
}

.buy-btn:hover {
  background: var(--gold-soft);
}

/* ---------- Footer ---------- */

footer {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

footer a {
  color: var(--text-muted);
}

/* ---------- Responsive ---------- */

@media (max-width: 480px) {
  .brand {
    font-size: 2rem;
  }
  body {
    font-size: 17px;
  }
}
