:root {
  --bg: #F5F0E8;
  --bg-warm: #EDE8DE;
  --fg: #1A1815;
  --fg-light: #4A4540;
  --accent: #C4623A;
  --accent-dark: #A3512D;
  --gold: #D4A853;
  --deep: #0E0C0A;
  --deep-mid: #1A1815;
  --muted: #7A746E;
  --border: #D4CCBA;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  border-radius: 6px;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 120px 48px 80px;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(196, 98, 58, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 168, 83, 0.08) 0%, transparent 50%);
}

.hero-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 64px;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: #F5F0E8;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-lede {
  font-size: 18px;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.4;
  max-width: 140px;
}

/* Workshop scene */
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workshop-scene {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  position: relative;
  background: linear-gradient(160deg, #2A2420 0%, #1A1815 40%, #0E0C0A 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 83, 0.12);
}

.workshop-glow {
  position: absolute;
  bottom: 20%;
  left: 30%;
  width: 60%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(196, 98, 58, 0.35) 0%, transparent 70%);
  filter: blur(20px);
}

.artisan-silhouette {
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 200px;
}

.silhouette-body {
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(30, 25, 20, 0.9), transparent);
  border-radius: 50% 50% 0 0;
  position: relative;
}

.silhouette-body::before {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 98, 58, 0.3) 0%, transparent 70%);
}

.silhouette-spark {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
}

.s1 {
  width: 6px; height: 6px;
  top: 10px; left: 55%;
  box-shadow: 0 0 12px 4px rgba(196, 98, 58, 0.8);
  animation: sparkle 2.1s ease-in-out infinite;
}

.s2 {
  width: 4px; height: 4px;
  top: 20px; left: 45%;
  box-shadow: 0 0 8px 2px rgba(212, 168, 83, 0.9);
  animation: sparkle 1.7s ease-in-out infinite 0.4s;
}

.s3 {
  width: 3px; height: 3px;
  top: 5px; left: 60%;
  box-shadow: 0 0 10px 3px rgba(196, 98, 58, 0.6);
  animation: sparkle 2.4s ease-in-out infinite 0.9s;
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  30% { opacity: 1; transform: scale(1); }
  80% { opacity: 0; transform: scale(0.5) translateY(-20px); }
}

.workshop-tools {
  position: absolute;
  bottom: 8%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 0 40px;
}

.tool {
  height: 6px;
  border-radius: 3px;
  background: rgba(212, 168, 83, 0.2);
}

.t1 { width: 80px; }
.t2 { width: 60px; }
.t3 { width: 90px; }

/* SECTION SHARED */
.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 640px;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 48px;
  background: var(--bg-warm);
}

.how-it-works .section-heading {
  margin-bottom: 72px;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.workflow-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(to right, var(--accent), var(--gold));
  opacity: 0.3;
}

.step {
  padding: 0 32px 0 0;
  position: relative;
}

.step:not(:first-child) {
  padding-left: 32px;
  border-left: 1px solid var(--border);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step p {
  font-size: 15px;
  color: var(--fg-light);
  line-height: 1.6;
}

/* THE GAP */
.the-gap {
  padding: 100px 48px;
  background: var(--bg);
}

.gap-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.gap-body {
  font-size: 17px;
  color: var(--fg-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.gap-body:last-child { margin-bottom: 0; }

.gap-quote {
  background: var(--deep);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  position: relative;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: -16px;
}

.blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(245, 240, 232, 0.85);
  line-height: 1.6;
  margin-bottom: 20px;
}

.quote-attr {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.35);
  letter-spacing: 0.05em;
}

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

.fact {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg-warm);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.fact-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}

.fact-text {
  font-size: 14px;
  color: var(--fg-light);
  line-height: 1.5;
  padding-top: 4px;
}

/* OUTCOMES */
.outcomes {
  padding: 100px 48px;
  background: var(--deep);
}

.outcomes .section-label { color: var(--gold); }
.outcomes .section-heading { color: #F5F0E8; }

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.outcome {
  padding: 32px;
  background: rgba(245, 240, 232, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(245, 240, 232, 0.08);
  transition: background 0.2s;
}

.outcome:hover {
  background: rgba(245, 240, 232, 0.08);
}

.outcome-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--accent);
}

.outcome-icon svg {
  width: 100%;
  height: 100%;
}

.outcome h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  color: #F5F0E8;
  margin-bottom: 12px;
  line-height: 1.3;
}

.outcome p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.6;
}

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

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

.closing-ornament {
  width: 48px;
  height: 3px;
  background: rgba(245, 240, 232, 0.3);
  border-radius: 2px;
  margin: 0 auto 48px;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: #F5F0E8;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.closing-body {
  font-size: 17px;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.7;
  margin-bottom: 20px;
}

.closing-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: rgba(245, 240, 232, 0.9);
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 240, 232, 0.2);
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .workflow-steps { grid-template-columns: repeat(2, 1fr); }
  .workflow-steps::before { display: none; }
  .step:nth-child(2n+1) { border-left: none; }
  .step:nth-child(n+3) { border-top: 1px solid var(--border); padding-top: 40px; }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
  }
  .hero-left { padding-right: 0; }
  .hero-right { display: none; }
  .how-it-works, .the-gap, .outcomes, .closing { padding: 80px 24px; }
  .gap-inner { grid-template-columns: 1fr; gap: 48px; }
  .workflow-steps { grid-template-columns: 1fr; }
  .step { border-left: none !important; padding-left: 0 !important; padding-top: 0 !important; }
  .outcome-grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 16px; text-align: center; }
}