/* ====================================
   MINDFULSP — CSS THEME
   ==================================== */

:root {
  --bg: #f8f5f0;
  --bg-alt: #ede9e2;
  --fg: #1b263b;
  --fg-muted: #5c6b7a;
  --accent: #d4a853;
  --accent-dark: #b8892e;
  --dark: #0d1b2a;
  --dark-mid: #1b263b;
  --white: #ffffff;
  --border: #d5cec3;
}

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

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

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

/* ---- NAV ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo {
  width: 32px; height: 32px;
  background: var(--dark);
  color: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
}
.nav-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--dark);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-cta {
  display: inline-block;
  padding: 10px 20px;
  background: var(--dark);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--dark-mid); }

/* ---- HERO ---- */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 80px 48px 100px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}
.hero-headline {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-lede {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 440px;
  line-height: 1.7;
}
.hero-stats { display: flex; gap: 32px; }
.hero-stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  max-width: 110px;
  line-height: 1.4;
}

/* Hero cards */
.hero-card-stack {
  position: relative;
  height: 340px;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px 24px;
  backdrop-filter: blur(8px);
  position: absolute;
  width: 260px;
}
.hero-card-1 { top: 0; left: 0; }
.hero-card-2 { top: 90px; left: 40px; }
.hero-card-3 { top: 180px; left: 80px; }
.card-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.card-bar {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  height: 6px;
  margin-bottom: 8px;
}
.card-bar-fill { background: var(--accent); border-radius: 4px; height: 100%; }
.card-note { font-size: 13px; color: rgba(255,255,255,0.6); }
.card-response {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  line-height: 1.5;
}
.card-score {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

/* ---- SHARED SECTION STYLES ---- */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.section-eyebrow.light { color: rgba(212,168,83,0.8); }
.section-headline {
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
}

/* ---- WHO ---- */
.who-section { padding: 96px 48px; background: var(--white); }
.who-inner { max-width: 1100px; margin: 0 auto; }
.who-header { margin-bottom: 56px; }
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.who-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.who-card:hover {
  box-shadow: 0 8px 32px rgba(27,38,59,0.1);
  transform: translateY(-4px);
}
.who-icon { color: var(--accent); margin-bottom: 20px; }
.who-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}
.who-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* ---- HOW ---- */
.how-section { padding: 96px 48px; background: var(--bg); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-header { margin-bottom: 64px; }
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.how-step:last-child { border-bottom: 1px solid var(--border); }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  padding-top: 4px;
}
.step-content h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}
.step-content p { font-size: 16px; color: var(--fg-muted); max-width: 560px; line-height: 1.7; }

/* ---- DIFFERENTIATORS ---- */
.diff-section { padding: 96px 48px; background: var(--dark); }
.diff-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.diff-left .section-headline { color: var(--white); }
.diff-body {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  line-height: 1.7;
}
.diff-list { display: flex; flex-direction: column; gap: 16px; }
.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.diff-marker {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.diff-quote {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  margin-top: 60px;
}
.diff-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 24px;
}
.diff-quote cite {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-style: normal;
  letter-spacing: 0.03em;
}

/* ---- PHILOSOPHY ---- */
.philosophy-section {
  padding: 96px 48px;
  background: var(--bg-alt);
  text-align: center;
}
.philosophy-inner { max-width: 680px; margin: 0 auto; }
.philosophy-headline {
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
  line-height: 1.2;
}
.philosophy-body p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.philosophy-body p:last-child { margin-bottom: 0; }

/* ---- CLOSING ---- */
.closing-section {
  padding: 96px 48px;
  background: var(--dark);
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}
.closing-body {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo {
  width: 28px; height: 28px;
  background: var(--dark);
  color: var(--accent);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--dark);
}
.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: right;
  line-height: 1.5;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 40px; }
  .who-grid { grid-template-columns: 1fr; }
  .diff-inner { grid-template-columns: 1fr; }
  .diff-quote { margin-top: 0; }
  .nav { padding: 16px 24px; }
  .hero, .who-section, .how-section, .diff-section, .philosophy-section, .closing-section { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-note { text-align: left; }
}

@media (max-width: 500px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-headline { font-size: 32px; }
  .section-headline { font-size: 30px; }
  .philosophy-headline { font-size: 30px; }
  .closing-headline { font-size: 32px; }
  .how-step { grid-template-columns: 1fr; gap: 12px; }
  .step-number { font-size: 32px; }
}