:root {
  /* Light boho/feminine palette */
  --bg: #fefdfb;
  --bg-alt: #f5f3f0;
  --bg-card: #faf8f5;
  --fg: #3a3a3a;
  --fg-muted: #8a8a7e;
  --accent: #9b8b6a;
  --accent-sage: #a8b8a0;
  --accent-rose: #c9a5a1;
  --accent-terracotta: #c97853;
  --accent-gold: #d4af7f;
  --accent-dim: rgba(155, 139, 106, 0.08);
  --red: #c97853;
  --green: #a8b8a0;
  --radius: 20px;
  --radius-sm: 14px;
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Poppins', 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.3px;
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 40px 60px;
  background:
    linear-gradient(135deg, rgba(168, 184, 160, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(201, 165, 161, 0.05) 0%, transparent 80%),
    var(--bg);
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent-rose);
  background: rgba(201, 165, 161, 0.1);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(201, 165, 161, 0.15);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: var(--fg);
  font-style: italic;
}

.hero h1 .accent {
  color: var(--accent-terracotta);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  font-style: normal;
}

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

/* Price card */
.price-card {
  background: var(--bg-card);
  border: 1px solid rgba(155, 139, 106, 0.12);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-sage), var(--accent-rose));
}

.price-compare {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-old, .price-new {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-compare .label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
}

.amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
}

.amount.struck {
  color: var(--red);
  text-decoration: line-through;
  opacity: 0.6;
}

.amount.highlight {
  color: var(--green);
}

.price-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 4px 0;
}

.price-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.how-it-works h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 60px;
}

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

.step {
  padding: 40px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(155, 139, 106, 0.1);
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.step:hover {
  border-color: rgba(168, 184, 160, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-sage);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
  font-style: italic;
}

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

/* ===== MATERIALS ===== */
.materials {
  padding: 100px 40px;
  background: linear-gradient(180deg, transparent, rgba(168, 184, 160, 0.03)), var(--bg);
}

.materials h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 12px;
}

.materials-intro {
  text-align: center;
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 60px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.material-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.material-card {
  background: var(--bg-card);
  border: 1px solid rgba(155, 139, 106, 0.08);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.2s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}

.material-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 165, 161, 0.25);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.material-icon {
  font-size: 2.2rem;
  color: var(--accent-rose);
  margin-bottom: 16px;
}

.material-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  color: var(--fg);
  font-style: italic;
}

.material-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 40px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 70%, rgba(201, 165, 161, 0.04) 0%, transparent 80%),
    var(--bg);
}

.closing-content {
  max-width: 720px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 20px;
}

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

.closing-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-sage);
  font-style: italic;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 40px;
  border-top: 1px solid rgba(155, 139, 106, 0.1);
  background: rgba(245, 243, 240, 0.5);
}

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

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

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { padding: 60px 24px 40px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .material-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .closing-stats { gap: 32px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding: 48px 20px 32px; }
  .hero h1 { font-size: 2rem; }
  .price-card { padding: 28px 24px; }
  .amount { font-size: 1.8rem; }
  .how-it-works, .materials, .closing { padding: 64px 20px; }
  .material-grid { grid-template-columns: 1fr; }
  .closing-stats { flex-direction: column; gap: 24px; }
  .footer-content { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== CTA BUTTONS (landing page) ===== */
.hero-cta,
.closing-cta {
  display: inline-block;
  margin-top: 32px;
  background: var(--accent-sage);
  color: #fefdfb;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(168, 184, 160, 0.25);
  border: none;
  cursor: pointer;
}

.hero-cta:hover,
.closing-cta:hover {
  background: var(--accent-rose);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 165, 161, 0.3);
}

.closing-cta {
  margin-bottom: 48px;
}