:root {
  --bg: #120b12;
  --bg-soft: #1d1120;
  --plum: #43203f;
  --rose: #a84f7c;
  --gold: #e5c07b;
  --text: #f8f1f6;
  --muted: rgba(248, 241, 246, 0.78);
  --dark-text: #2c1828;
  --card: #fff8fc;
  --line: rgba(255,255,255,0.12);
}

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

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

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(168,79,124,0.34), transparent 35%),
    radial-gradient(circle at bottom right, rgba(229,192,123,0.18), transparent 28%),
    linear-gradient(135deg, #120b12 0%, #2a1428 48%, #150d16 100%);
  color: var(--text);
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18,11,18,0.28), rgba(18,11,18,0.58));
}

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

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #f0c9da;
}

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

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.05;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
}

h3 {
  font-size: 1.8rem;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  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: 700;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose), #c36495);
  color: white;
}

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

.section {
  padding: 5rem 0;
}

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

.two-cols {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.two-cols.reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

.quote-card,
.card,
.contact-card,
.mood-panel {
  background: var(--card);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 24px 50px rgba(67, 32, 63, 0.12);
}

.quote-card {
  background: linear-gradient(135deg, #311529, #5d2a52);
  color: #fff5fb;
}

.quote-card p {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.2;
}

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

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

.card p,
.contact-card p,
.section p {
  color: #5a4654;
}

.mood-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-content: flex-start;
}

.mood-pill {
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2b1024, #5a254f);
  color: white;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-section {
  background: linear-gradient(180deg, #1d1120, #120b12);
}

.contact-card {
  background: rgba(255,248,252,0.98);
}

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