:root {
  --bg: #f8f7fb;
  --text: #151525;
  --muted: #55556d;
  --card: #ffffff;
  --accent: #7c3aed;
  --accent-2: #ec4899;
  --gold: #f4c95d;
}

* { 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, #0f1020 0%, #312e81 45%, #1f1235 100%);
  color: white;
}

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

.glow-a {
  width: 260px;
  height: 260px;
  background: var(--gold);
  top: 10%;
  left: 7%;
}

.glow-b {
  width: 320px;
  height: 320px;
  background: var(--accent-2);
  bottom: 4%;
  right: 8%;
}

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

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

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

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

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.4rem, 8vw, 6rem);
  letter-spacing: -0.05em;
}

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

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

.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(--gold), #f59e0b);
  color: #24180a;
}

.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, #f8f7fb, #eef0fb);
}

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

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

.highlight-card,
.card,
.contact-card,
.mood-box {
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 24px 50px rgba(23, 23, 37, 0.08);
}

.highlight-card {
  background: linear-gradient(135deg, #2a1e52, #5b21b6);
  color: white;
}

.highlight-card p {
  margin: 0;
  font-size: 1.45rem;
  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, #4f46e5, #ec4899);
  color: white;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

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