/* === THEME: ThriveAfter === */

:root {
  --navy: #1a2740;
  --navy-light: #243352;
  --ivory: #faf7f2;
  --ivory-deep: #f0ebe1;
  --terracotta: #b85c50;
  --terracotta-light: #d4786e;
  --sage: #7a9e7e;
  --sage-light: #9bb89d;
  --text-primary: #1a2740;
  --text-secondary: #4a5568;
  --text-muted: #7a8a9a;
  --text-inverse: #faf7f2;
  --border: rgba(26, 39, 64, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ivory);
  color: var(--text-primary);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  background: var(--navy);
  color: var(--text-inverse);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 580px;
}

.hero-kicker {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-inverse);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(250, 247, 242, 0.75);
  font-weight: 300;
  max-width: 480px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 380px;
}

.hero-glow {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 92, 80, 0.25) 0%, rgba(122, 158, 126, 0.15) 50%, transparent 70%);
  animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
}

.hero-rule {
  height: 3px;
  background: linear-gradient(to right, var(--terracotta), var(--sage), transparent);
  width: 100%;
}

/* Sections */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 4px;
}

/* The Weight */
.the-weight {
  padding: 96px 0;
  background: var(--ivory);
}

.weight-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.weight-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  line-height: 1.5;
  color: var(--navy);
  border-left: 3px solid var(--terracotta);
  padding-left: 28px;
}

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

.fact {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.fact-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--terracotta);
  min-width: 80px;
  line-height: 1;
}

.fact-label {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* How We Hold You */
.how-we-hold {
  padding: 96px 0;
  background: var(--navy);
  color: var(--text-inverse);
}

.how-we-hold .section-label {
  color: var(--sage-light);
  border-color: var(--sage-light);
}

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

.feature-card {
  background: var(--navy-light);
  border: 1px solid rgba(250, 247, 242, 0.08);
  border-radius: 12px;
  padding: 36px;
}

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

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-inverse);
  margin-bottom: 12px;
}

.feature-body {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.7);
}

/* The Path */
.the-path {
  padding: 96px 0;
  background: var(--ivory-deep);
}

.path-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 64px;
  max-width: 600px;
}

.path-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.path-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.path-step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--terracotta);
  opacity: 0.5;
  line-height: 1;
  padding-top: 4px;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Founder Note */
.founder-note {
  padding: 96px 0;
  background: var(--navy);
}

.founder-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: end;
}

.founder-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 1.8vw, 22px);
  font-style: italic;
  color: var(--text-inverse);
  line-height: 1.65;
  margin-bottom: 20px;
}

.founder-quote p:last-child {
  color: rgba(250, 247, 242, 0.6);
  font-size: 16px;
  font-style: normal;
  font-family: 'Source Sans 3', sans-serif;
}

.founder-attribution {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  border-left: 1px solid rgba(250, 247, 242, 0.2);
  padding-left: 32px;
}

.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--terracotta-light);
}

.founder-role {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.5);
}

/* Closing */
.closing {
  padding: 96px 0;
  background: var(--ivory);
}

.closing-content {
  max-width: 700px;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 48px;
}

.closing-rule {
  width: 60px;
  height: 2px;
  background: var(--terracotta);
  margin-bottom: 32px;
}

.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.5;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(250, 247, 242, 0.5);
  padding: 48px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text-inverse);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.4);
}

.footer-note {
  font-size: 13px;
  line-height: 1.6;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  padding-top: 24px;
}

.footer-note strong {
  color: var(--text-inverse);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 64px 24px 48px;
    min-height: auto;
  }

  .hero-visual {
    display: none;
  }

  .weight-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .founder-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .founder-attribution {
    align-items: flex-start;
    border-left: none;
    border-top: 1px solid rgba(250, 247, 242, 0.2);
    padding-left: 0;
    padding-top: 20px;
  }

  .section-inner {
    padding: 0 24px;
  }

  .path-step {
    grid-template-columns: 56px 1fr;
    gap: 20px;
  }

  .the-weight, .how-we-hold, .the-path, .founder-note, .closing {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .fact {
    flex-direction: column;
    gap: 8px;
  }

  .fact-number {
    font-size: 32px;
  }
}