:root {
  --bg: #FAFAF8;
  --fg: #1A1A1A;
  --accent: #F5A623;
  --accent-dark: #C47D0A;
  --muted: #6B6B6B;
  --surface: #F0EDE6;
  --surface-dark: #E5E0D5;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.02em;
}

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

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.6;
}

/* Hero Art */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-art {
  position: relative;
  width: 320px;
  height: 340px;
}

.art-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.art-card-1 { top: 0; left: 0; z-index: 3; }
.art-card-2 { top: 100px; right: 0; z-index: 2; transform: rotate(3deg); }
.art-card-3 { bottom: 20px; left: 20px; z-index: 1; transform: rotate(-2deg); }

.art-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.art-card-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.art-line {
  height: 8px;
  background: var(--surface-dark);
  border-radius: 4px;
}
.art-line-wide { width: 100%; }
.art-line-med { width: 75%; }
.art-line-short { width: 50%; }

.art-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(245,166,35,0.15);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
}

.art-orb {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 30% 30%, #F5A623 0%, rgba(245,166,35,0) 70%);
  opacity: 0.25;
  border-radius: 50%;
}

/* How it works */
.how {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 48px;
}

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

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

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--bg);
}

.step-content p {
  font-size: 15px;
  color: rgba(250,250,248,0.6);
  line-height: 1.7;
}

.step-connector {
  width: 80px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(245,166,35,0.4), rgba(245,166,35,0.1));
}

/* Packages */
.packages {
  background: var(--surface);
  padding: 100px 48px;
}

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

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

.package {
  background: var(--bg);
  border-radius: 20px;
  padding: 36px;
  border: 2px solid var(--surface-dark);
  position: relative;
}

.package-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(245,166,35,0.08);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.package-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.package-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 28px;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-features li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}

.package-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.upsells {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 36px;
  background: var(--bg);
  border-radius: 16px;
  border: 2px solid var(--surface-dark);
}

.upsell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.upsell-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.upsell-price {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}

.upsell-divider {
  flex: 1;
  height: 1px;
  background: var(--surface-dark);
}

/* Guarantee */
.guarantee {
  background: var(--bg);
  padding: 80px 48px;
}

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

.guarantee-content {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  max-width: 600px;
}

.guarantee-icon { flex-shrink: 0; margin-top: 4px; }

.guarantee-headline {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.guarantee-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

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

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

.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: white;
  line-height: 1.4;
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--fg);
  color: var(--bg);
  padding: 60px 48px;
}

.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }

.footer-brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(250,250,248,0.5);
  margin-bottom: 24px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(250,250,248,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-art { width: 260px; height: 280px; }
  .art-card-1 { top: 0; left: 0; }
  .art-card-2 { top: 80px; right: 0; }
  .art-card-3 { bottom: 20px; left: 0; }

  .how { padding: 80px 24px; }
  .steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }

  .packages { padding: 80px 24px; }
  .package-grid { grid-template-columns: 1fr; gap: 16px; }

  .guarantee { padding: 60px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 48px 24px; }
}