:root {
  --bg: #160b14;
  --bg-soft: #26101f;
  --wine: #5b1738;
  --plum: #341128;
  --rose: #d56aa0;
  --gold: #f2cc8f;
  --text: #fff7fb;
  --muted: rgba(255, 247, 251, 0.82);
  --dark-text: #351a2b;
  --card: #fff7fb;
}

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

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: 94vh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(213,106,160,0.2), transparent 26%),
    radial-gradient(circle at bottom right, rgba(242,204,143,0.14), transparent 24%),
    linear-gradient(135deg, #120810 0%, #2a1020 46%, #150914 100%);
  color: var(--text);
}

.veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18,8,16,0.2), rgba(18,8,16,0.55));
}

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

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

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

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

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

.eyebrow.dark {
  color: #9d2b64;
}

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

h1 {
  font-size: clamp(3.6rem, 9vw, 6.8rem);
  letter-spacing: -0.05em;
}

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

h3 {
  font-size: 1.8rem;
}

.lead {
  color: var(--muted);
  max-width: 760px;
  font-size: 1.08rem;
}

.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;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #a82767, #d56aa0);
  color: white;
}

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

.full { width: 100%; }

.section {
  padding: 5rem 0;
}

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

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

.split.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.quote-card,
.card,
.contact-card,
.mood-board,
.long-text {
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 24px 50px rgba(83, 20, 56, 0.1);
}

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

.quote-card p {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.25;
  color: rgba(255,255,255,0.94);
}

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

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

.card p,
.section p,
.long-text p,
.contact-card p {
  color: #5f4756;
}

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

.mood-board span {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f1023, #7b2559);
  color: white;
  font-weight: 700;
}

.contact-section {
  background: linear-gradient(180deg, #24101d, #120810);
}

.contact-card {
  max-width: 760px;
}

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