:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1e1e1e;
  --ember: #e85d04;
  --ember-glow: #ff6b00;
  --gold: #f59e0b;
  --white: #fafafa;
  --gray-100: #e5e5e5;
  --gray-400: #888;
  --gray-600: #444;
  --border: rgba(255,255,255,0.06);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 48px 96px;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    #0a0a0a 0%,
    rgba(10,10,10,0.7) 40%,
    rgba(10,10,10,0.3) 70%,
    rgba(10,10,10,0.1) 100%
  );
}

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

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  border: 1px solid rgba(232,93,4,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  color: var(--gray-100);
  line-height: 1.7;
  max-width: 600px;
  font-weight: 300;
}

/* Offer Section */
.offer {
  padding: 120px 48px;
  background: var(--surface);
}

.offer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.offer-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 20px;
}

.offer-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 72px;
  color: var(--white);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.offer-card {
  background: var(--bg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: background 0.2s;
}

.offer-card:hover {
  background: var(--surface-2);
}

.offer-card-icon {
  color: var(--ember);
  margin-bottom: 20px;
}

.offer-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}

.offer-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  font-weight: 300;
}

/* Blueprint Section */
.blueprint {
  padding: 120px 48px;
  background: var(--bg);
}

.blueprint-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.blueprint-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--white);
}

.blueprint-intro {
  font-size: 17px;
  color: var(--gray-400);
  margin-bottom: 72px;
  font-weight: 300;
}

.milestones {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.milestone {
  padding: 36px 28px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.milestone-month {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 12px;
}

.milestone-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}

.milestone p {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.6;
  font-weight: 300;
}

.milestone-target {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.milestone-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  color: var(--gray-600);
  padding-top: 72px;
}

/* Music Section */
.music {
  padding: 120px 48px;
  background: var(--surface);
}

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

.waveform {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 200px;
  padding: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.wave-bar {
  width: 6px;
  background: linear-gradient(to top, var(--ember), var(--gold));
  border-radius: 3px;
  height: 30%;
  animation: wave 1.8s ease-in-out infinite;
}

.wave-tall { height: 70%; animation-delay: 0.3s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

.wave-bar:nth-child(2n) { animation-delay: 0.15s; }
.wave-bar:nth-child(3n) { animation-delay: 0.45s; }
.wave-bar:nth-child(5n) { animation-delay: 0.6s; }

.music-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}

.music-text p {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}

.music-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.music-tags span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ember);
  border: 1px solid rgba(232,93,4,0.25);
  padding: 6px 14px;
  border-radius: 100px;
}

/* Closing */
.closing {
  padding: 160px 48px;
  background: var(--bg);
  text-align: center;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}

.ember-glow {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.ember-icon {
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(232,93,4,0.3)); }
  50% { filter: drop-shadow(0 0 40px rgba(232,93,4,0.7)); }
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--white);
  font-style: italic;
}

.closing-body {
  font-size: 18px;
  color: var(--gray-400);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 64px;
}

.closing-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--ember), transparent);
  margin: 0 auto 40px;
}

.closing-tagline {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-600);
  font-weight: 500;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  background: var(--bg);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.footer-dot {
  color: var(--gray-600);
}

.footer-tagline {
  font-size: 13px;
  color: var(--gray-400);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.footer-meta {
  font-size: 12px;
  color: var(--gray-600);
  letter-spacing: 0.05em;
}

/* Mobile */
@media (max-width: 900px) {
  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .milestones {
    grid-template-columns: 1fr;
  }
  .milestone-divider {
    display: none;
  }
  .music-inner {
    grid-template-columns: 1fr;
  }
  .waveform {
    order: -1;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 24px 80px;
  }
  .offer, .blueprint, .music, .closing {
    padding: 80px 24px;
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}