:root {
  --bg: #f8f4f7;
  --text: #261621;
  --muted: #5b4956;
  --card: #ffffff;
  --accent: #7c3aed;
  --accent-2: #db2777;
  --line: rgba(124,58,237,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: grid;
  align-items: center;
  background: linear-gradient(135deg, #120910 0%, #2b1130 48%, #160b14 100%);
  color: white;
}

.veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18,9,16,0.18), rgba(18,9,16,0.52));
}

.light {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.38;
}

.light-a {
  width: 260px;
  height: 260px;
  background: #7c3aed;
  top: 8%;
  left: 7%;
}

.light-b {
  width: 320px;
  height: 320px;
  background: #db2777;
  bottom: 4%;
  right: 8%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 5rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #e9d5ff;
}

.eyebrow.dark {
  color: var(--accent);
}

h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: 1.06;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.6rem, 9vw, 6.2rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-family: 'Cormorant Garamond', serif;
}

.lead {
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
}

.btn-secondary {
  color: white;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
}

.full { width: 100%; }

.section {
  padding: 5rem 0;
}

.alt {
  background: linear-gradient(180deg, #f8f4f7, #f1ebf3);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.quote-card,
.card,
.contact-card,
.mood-box {
  background: var(--card);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 24px 50px rgba(38, 22, 33, 0.08);
}

.quote-card {
  background: linear-gradient(135deg, #2b1130, #6d28d9);
  color: white;
}

.quote-card p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.4;
}

.section-title {
  max-width: 760px;
  margin-bottom: 2rem;
}

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

.card p,
.section p,
.contact-card p {
  color: var(--muted);
}

.mood-box {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.mood-box span {
  background: linear-gradient(135deg, #6d28d9, #db2777);
  color: white;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

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