:root {
  --bg: #faf8f5;
  --bg-warm: #f5f0ea;
  --fg: #2a2520;
  --fg-muted: #6b6259;
  --accent: #b8926a;
  --accent-light: #d4bc9a;
  --accent-dark: #8a6d4e;
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;
  --radius: 12px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  overflow: hidden;
  background: linear-gradient(160deg, #faf8f5 0%, #f0ebe3 40%, #e8dfd4 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--accent-light);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
}

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

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

.hero-prompt {
  background: white;
  border-radius: var(--radius);
  padding: 20px 28px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(42, 37, 32, 0.06);
}

.prompt-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 8px;
}

.prompt-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.5;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 16px 36px;
  background: var(--fg);
  color: #f5f0ea;
  text-decoration: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(42, 37, 32, 0.15);
}

.hero-cta-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42, 37, 32, 0.2);
}

.hero-ornament {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  animation: spin 120s linear infinite;
}

.ornament-svg {
  width: 100%;
  height: 100%;
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ---- HOW ---- */
.how {
  padding: 100px 24px;
  background: var(--bg);
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  color: var(--fg);
}

.section-subtitle {
  text-align: center;
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-top: -40px;
  margin-bottom: 50px;
}

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

.step {
  text-align: left;
}

.step-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

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

/* ---- FEATURES ---- */
.features {
  padding: 80px 24px;
  background: var(--bg-warm);
}

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

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
}

.feature-card--large {
  grid-column: span 2;
  background: var(--fg);
  color: #f5f0ea;
}

.feature-card--large h3 {
  color: white;
}

.feature-card--large p {
  color: #c8bfb5;
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.feature-card--large .feature-icon {
  color: var(--accent-light);
}

.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

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

/* ---- STYLES SHOWCASE ---- */
.styles-showcase {
  padding: 100px 24px;
  background: var(--bg);
}

.style-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.style-tag {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid var(--accent-light);
  border-radius: 100px;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--accent-dark);
  transition: all 0.2s ease;
}

.style-tag:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 24px;
  background: linear-gradient(160deg, var(--fg) 0%, #1a1714 100%);
  color: #f5f0ea;
}

.closing-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 28px;
}

.closing h2 em {
  color: var(--accent-light);
  font-style: italic;
}

.closing p {
  color: #a89e94;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 48px 24px;
  background: #1a1714;
  border-top: 1px solid rgba(184, 146, 106, 0.15);
}

.footer-content {
  text-align: center;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.footer-tagline {
  color: #6b6259;
  font-size: 0.85rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .feature-card--large {
    grid-column: span 1;
  }

  .hero {
    min-height: 80vh;
    padding: 60px 20px;
  }

  .hero-prompt {
    padding: 16px 20px;
  }

  .hero-ornament {
    width: 400px;
    height: 400px;
  }

  .closing {
    padding: 80px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .style-tags {
    gap: 8px;
  }

  .style-tag {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}