:root {
  --bg: #0f0a08;
  --bg-soft: #1a1310;
  --fg: #f5ece4;
  --fg-muted: #b8a99a;
  --accent: #d4856a;
  --accent-light: #e8a992;
  --rose: #c4727a;
  --gold: #c9a84c;
  --terra: #b86f4c;
  --card-bg: #1e1714;
  --card-border: rgba(212, 133, 106, 0.15);
  --radius: 16px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

em { font-family: var(--font-display); font-style: italic; color: var(--accent-light); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg-shapes { position: absolute; inset: 0; z-index: 0; }

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}

.shape-1 {
  width: 500px; height: 500px;
  background: var(--accent);
  top: -10%; right: -5%;
}

.shape-2 {
  width: 350px; height: 350px;
  background: var(--rose);
  bottom: 10%; left: -8%;
}

.shape-3 {
  width: 250px; height: 250px;
  background: var(--gold);
  top: 40%; left: 50%;
  opacity: 0.2;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--card-border);
  border-radius: 100px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
}

.hero-accent {
  position: absolute;
  bottom: 8%;
  right: 6%;
  z-index: 1;
}

.accent-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  text-align: center;
}

.accent-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-light);
}

.accent-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ── FEATURES ── */
.features {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 3.5rem;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.2rem;
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: var(--accent);
}

.feature-card-lg {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 2rem;
  align-items: start;
}

.feature-card-lg .feature-icon {
  grid-row: span 2;
  font-size: 2.5rem;
}

.feature-card-accent {
  background: linear-gradient(135deg, rgba(212,133,106,0.12), rgba(196,114,122,0.08));
  border-color: rgba(212,133,106,0.3);
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── RHYTHM ── */
.rhythm {
  padding: 6rem 2rem;
  background: var(--bg-soft);
}

.rhythm-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.rhythm-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.rhythm-text p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.rhythm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.rhythm-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--fg);
}

.check {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.rhythm-visual {
  display: flex;
  justify-content: center;
}

.stat-block {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-rose { background: var(--rose); }
.dot-gold { background: var(--gold); }
.dot-terra { background: var(--terra); }

.stat-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.stat-value {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── CLOSING ── */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,133,106,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ── FOOTER ── */
.site-footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--card-border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fg);
  font-size: 1rem;
}

.footer-divider {
  opacity: 0.3;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3rem; min-height: auto; }
  .hero-accent { position: static; margin-top: 2.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-lg { grid-column: span 1; grid-template-columns: 1fr; }
  .feature-card-lg .feature-icon { grid-row: auto; }
  .rhythm-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .closing { padding: 5rem 1.5rem; }
  .shape-1 { width: 300px; height: 300px; }
  .shape-2 { width: 200px; height: 200px; }
  .shape-3 { width: 150px; height: 150px; }
}