/* Curalys — warm editorial aesthetic for indie skincare brands */

:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE1;
  --fg: #1A1612;
  --fg-muted: #6B5F54;
  --accent: #C4714A;
  --accent-light: #E8A882;
  --surface: #FFFFFF;
  --border: #E2D9CC;
  --orb-1: #E8C4A0;
  --orb-2: #D4A882;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.2;
}

/* Site header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.15s;
}

nav a:hover { color: var(--fg); }

/* Hero */
.hero {
  padding: 80px 32px 96px;
  border-bottom: 1px solid var(--border);
}

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

.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-left h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 32px;
  max-width: 420px;
  line-height: 1.7;
}

.hero-tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: var(--bg-alt);
  color: var(--fg-muted);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border);
}

/* Hero right — visual */
.hero-right {
  position: relative;
}

.hero-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 40% 40%, var(--orb-1), var(--orb-2));
  border-radius: 50%;
  opacity: 0.35;
  z-index: 0;
}

.hero-card-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 4px 20px rgba(26, 22, 18, 0.06);
}

.card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.mini-card p {
  font-size: 0.85rem;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1.5;
}

.card-status {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-style: italic;
}

.card-status.resolved { color: #5A8F6A; }
.card-status.active { color: var(--accent); }

/* Manifesto */
.manifesto {
  padding: 80px 32px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
}

.manifesto-rule {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 40px;
}

blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 40px;
}

.manifesto-body p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 640px;
}

/* Features */
.features {
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
}

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

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(26, 22, 18, 0.08);
}

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

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

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

/* Process */
.process {
  padding: 80px 32px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

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

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

.process-step { position: relative; }

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--orb-2);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Outcomes */
.outcomes {
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
}

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

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.outcome-stat {
  background: var(--surface);
  padding: 36px 28px;
  text-align: center;
}

.outcome-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.outcome-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Closing */
.closing {
  padding: 100px 32px;
  text-align: center;
}

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

.closing-statement {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}

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

.footer-inner .wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .header-inner { padding: 14px 20px; }
  nav { gap: 20px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .hero, .manifesto, .features, .process, .outcomes, .closing { padding: 60px 20px; }
  blockquote { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  nav a { font-size: 0.8rem; }
  .outcomes-grid { grid-template-columns: 1fr; }
}