:root {
  --bg: #0a0a0a;
  --fg: #e8e4df;
  --fg-muted: #8a8580;
  --accent: #c4553a;
  --accent-glow: rgba(196, 85, 58, 0.15);
  --card-bg: #141414;
  --card-border: #222;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Space Grotesk', 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(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 24px;
  background: 
    radial-gradient(ellipse 60% 50% at 50% 40%, var(--accent-glow) 0%, transparent 70%),
    var(--bg);
}

.hero-inner {
  max-width: 720px;
  text-align: center;
}

.hero-label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-price {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--fg);
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}

.price-note {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

/* ===== STORIES ===== */
.stories {
  padding: 100px 24px;
  background: var(--bg);
}

.stories-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.stories h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 56px;
  max-width: 600px;
}

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

.story-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 36px 28px;
  transition: border-color 0.3s ease;
}

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

.story-number {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.7;
}

.story-card h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--fg);
}

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

/* ===== WHAT'S INSIDE ===== */
.what-inside {
  padding: 100px 24px;
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.inside-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.inside-left h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
}

.inside-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.inside-item {
  display: flex;
  gap: 20px;
  align-items: baseline;
}

.inside-num {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--accent);
  white-space: nowrap;
  min-width: 90px;
}

.inside-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 24px;
  background: var(--bg);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing-text {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-mark {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid var(--card-border);
  background: var(--bg);
}

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

.footer-brand {
  font-weight: 600;
  color: var(--fg);
}

.footer-divider {
  opacity: 0.3;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .inside-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero {
    min-height: auto;
    padding: 120px 24px 80px;
  }
  
  .stories, .what-inside, .closing {
    padding: 72px 24px;
  }
  
  .inside-item {
    flex-direction: column;
    gap: 6px;
  }
  
  .inside-num {
    min-width: auto;
  }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .footer-divider {
    display: none;
  }
}