:root {
  --bg: #faf8f5;
  --bg-warm: #f5f0e8;
  --fg: #2d2a26;
  --fg-muted: #6b6560;
  --accent: #b8860b;
  --accent-soft: #d4a84420;
  --accent-glow: #d4a844;
  --sage: #7a9e7e;
  --sage-soft: #7a9e7e15;
  --cream: #f0ebe0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --max-width: 1200px;
  --radius: 12px;
}

* {
  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: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  top: -100px;
  right: -150px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--sage-soft) 0%, transparent 70%);
  bottom: -50px;
  left: -100px;
  opacity: 0.6;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  top: 40%;
  left: 20%;
  opacity: 0.3;
}

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

.hero-tag {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}

.hero-scroll-hint span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ====== STORY ====== */
.story {
  padding: 8rem 2rem;
  background: var(--bg-warm);
}

.story-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2rem;
  font-weight: 500;
}

.story-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 2rem;
  border: none;
  padding: 0;
}

.story-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.9;
}

.story-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ====== FEATURES ====== */
.features {
  padding: 8rem 2rem;
}

.features-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--fg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-warm);
  border: 1px solid #e8e2d9;
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

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

.feature-card h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

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

/* ====== MARKET ====== */
.market {
  padding: 8rem 2rem;
  background: var(--fg);
  color: var(--bg);
}

.market-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.market-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--cream);
}

.market-sub {
  font-size: 1.05rem;
  color: #a8a29e;
  max-width: 600px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}

.market-data {
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.market-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.market-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-glow);
}

.market-desc {
  font-size: 0.85rem;
  color: #a8a29e;
  letter-spacing: 0.02em;
}

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

.closing-container {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

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

/* ====== FOOTER ====== */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid #e8e2d9;
}

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

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

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .story-stats {
    gap: 2.5rem;
  }

  .market-data {
    gap: 3rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 90vh;
    padding: 3rem 1.5rem;
  }

  .hero-scroll-hint {
    display: none;
  }
}

@media (max-width: 480px) {
  .story-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .market-data {
    flex-direction: column;
    gap: 2rem;
  }
}