/* ============================================
   LOOP — Theme CSS
   ============================================ */

:root {
  --bg: #FAF8F5;
  --bg-alt: #F2EDE6;
  --fg: #1A1A1A;
  --fg-muted: #6B6760;
  --accent: #C4714A;
  --accent-dark: #A35A38;
  --border: #E0D9D0;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Instrument Sans', system-ui, sans-serif;
  --radius: 6px;
}

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

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

/* ---- Nav ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ---- Hero ---- */
.hero {
  padding: 80px 48px 72px;
  background: var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 28px;
}
.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.3px;
}

/* Closet Visual */
.closet-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.closet-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  animation: slideIn 0.5s ease both;
}
.item-1 { animation-delay: 0.1s; }
.item-2 { animation-delay: 0.25s; transform: translateX(12px); }
.item-3 { animation-delay: 0.4s; }
.item-4 { animation-delay: 0.55s; transform: translateX(12px); }
.item-img {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  flex-shrink: 0;
}
.item-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.item-name {
  font-weight: 600;
  font-size: 14px;
}
.item-status {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Proof Stats ---- */
.proof {
  background: var(--fg);
  color: var(--bg);
  padding: 48px 48px;
}
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--bg);
}
.stat-label {
  font-size: 13px;
  color: #9A9590;
  max-width: 180px;
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}

/* ---- Section Shared ---- */
.section-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

/* ---- Process ---- */
.process {
  padding: 80px 48px;
  background: var(--bg);
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -2px;
  opacity: 0.35;
}
.step h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---- Outcomes ---- */
.outcomes {
  padding: 80px 48px;
  background: var(--bg-alt);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.outcome {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.outcome-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.outcome h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.outcome p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ---- Manifesto ---- */
.manifesto {
  padding: 80px 48px;
  background: var(--bg);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-mark {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mark-text {
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--fg);
}
.mark-attr {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ---- Closing ---- */
.closing {
  padding: 96px 48px;
  background: var(--fg);
  color: var(--bg);
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--bg);
}
.closing-sub {
  font-size: 18px;
  color: #9A9590;
}

/* ---- Footer ---- */
.footer {
  padding: 32px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav, .hero, .proof, .process, .outcomes, .manifesto, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 48px; }
  .process-steps { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .proof-inner { gap: 24px; }
  .proof-divider { display: none; }
  .proof-stat { min-width: 120px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .closet-stack { display: none; }
}