/* ===================== FONTS ===================== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=DM+Serif+Display&display=swap');

/* ===================== RESET & BASE ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #F7F5F0;
  color: #1E2A3A;
  -webkit-font-smoothing: antialiased;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gentlePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 42, 58, 0.06);
  transition: all 0.3s ease;
}

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

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-svg {
  display: block;
  flex-shrink: 0;
  border-radius: 10px;
}

.logo-wordmark {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #2A7A8C;
  text-transform: lowercase;
  text-decoration: underline;
  text-decoration-color: #1E2A3A;
  text-underline-offset: 4px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  font-size: 14px;
  color: #5A6B7B;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

.desktop-nav a:hover {
  color: #1E2A3A;
}

.nav-cta {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: #4A8F7F;
  padding: 10px 22px;
  border-radius: 100px;
  transition: all 0.2s !important;
}

.nav-cta:hover {
  background: #3D7A6B;
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 12px 24px 24px;
  background: #F7F5F0;
  border-top: 1px solid rgba(30, 42, 58, 0.06);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 16px;
  color: #1E2A3A;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
}

.mobile-menu .nav-cta {
  font-size: 15px !important;
  padding: 14px 24px !important;
  text-align: center;
}

/* ===================== SECTION SHARED ===================== */
.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4A8F7F;
}

.section-label--light {
  color: #7BC4B4;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #F7F5F0 0%, #EDE9E0 100%);
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-deco--tr {
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 143, 127, 0.08) 0%, transparent 70%);
}

.hero-deco--bl {
  bottom: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(123, 111, 160, 0.06) 0%, transparent 70%);
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: #1E2A3A;
  letter-spacing: -1px;
}

.hero-body {
  font-size: 17px;
  line-height: 1.7;
  color: #5A6B7B;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.btn-primary {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #4A8F7F;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(74, 143, 127, 0.25);
  display: inline-block;
}

.btn-primary:hover {
  background: #3D7A6B;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(74, 143, 127, 0.3);
}

.btn-secondary {
  font-size: 15px;
  font-weight: 600;
  color: #1E2A3A;
  background: transparent;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  border: 1.5px solid rgba(30, 42, 58, 0.2);
  transition: all 0.25s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: #1E2A3A;
  transform: translateY(-2px);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual--inline {
  display: none;
}

.hero-orb-wrap {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  position: relative;
}

.hero-meditation {
  width: 100%;
  height: 100%;
  display: block;
  animation: gentlePulse 6s ease-in-out infinite;
}

/* ===================== WHY NOW ===================== */
.why-now {
  padding: 100px 24px;
  background: #fff;
}

.why-now-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-now-header {
  max-width: 640px;
  margin-bottom: 56px;
}

.why-now-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  color: #1E2A3A;
  margin-top: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: #F7F5F0;
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30, 42, 58, 0.06);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon--teal {
  background: rgba(74, 143, 127, 0.12);
}

.card-icon--purple {
  background: rgba(123, 111, 160, 0.12);
}

.card-icon--amber {
  background: rgba(200, 165, 130, 0.15);
}

.card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1E2A3A;
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
  color: #5A6B7B;
}

/* ===================== COMMON ISSUES ===================== */
.issues {
  padding: 100px 24px;
  background: #F7F5F0;
}

.issues-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-header-center h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  color: #1E2A3A;
  margin-top: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.issue-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid rgba(30, 42, 58, 0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}

.issue-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(30, 42, 58, 0.06);
}

.issue-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.issue-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1E2A3A;
  margin-bottom: 8px;
}

.issue-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #5A6B7B;
}

.issues-cta {
  text-align: center;
  margin-top: 48px;
}

.issues-cta p {
  font-size: 16px;
  color: #5A6B7B;
  margin-bottom: 20px;
}

.text-link {
  font-size: 15px;
  font-weight: 600;
  color: #4A8F7F;
  text-decoration: none;
  border-bottom: 2px solid #4A8F7F;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.text-link:hover {
  color: #3D7A6B;
}

/* ===================== PREVENTION ===================== */
.prevention {
  padding: 100px 24px;
  background: #fff;
}

.prevention-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.prevention-heading {
  position: sticky;
  top: 120px;
}

.prevention-heading h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  color: #1E2A3A;
  margin-top: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.prevention-heading p {
  font-size: 16px;
  line-height: 1.7;
  color: #5A6B7B;
  margin-top: 20px;
}

.pillars-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: #F7F5F0;
  border-radius: 14px;
  transition: transform 0.2s;
}

.pillar-card:hover {
  transform: translateX(4px);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.pillar-icon--purple {
  background: rgba(123, 111, 160, 0.12);
}

.pillar-icon--teal {
  background: rgba(74, 143, 127, 0.12);
}

.pillar-icon--amber {
  background: rgba(200, 165, 130, 0.12);
}

.pillar-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1E2A3A;
  margin-bottom: 4px;
}

.pillar-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #5A6B7B;
}

/* ===================== FIND SUPPORT ===================== */
.support {
  padding: 100px 24px;
  background: linear-gradient(180deg, #1E2A3A 0%, #263545 100%);
  color: #fff;
}

.support-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.support-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.support-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  color: #fff;
  margin-top: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.support-header p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
}

.practitioners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.practitioner-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.25s;
}

.practitioner-card:hover {
  background: rgba(255, 255, 255, 0.10);
  transform: translateY(-3px);
}

.practitioner-icon {
  font-size: 26px;
  margin-bottom: 16px;
}

.practitioner-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.practitioner-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.support-cta {
  text-align: center;
  margin-top: 48px;
}

.btn-teal {
  font-size: 15px;
  font-weight: 600;
  color: #1E2A3A;
  background: #7BC4B4;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

.btn-teal:hover {
  background: #6AB5A5;
  transform: translateY(-2px);
}

/* ===================== ORGANIZATIONS ===================== */
.organizations {
  padding: 80px 24px;
  background: #F7F5F0;
}

.org-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.org-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3.5vw, 36px);
  color: #1E2A3A;
  margin-top: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.org-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #5A6B7B;
  margin-top: 16px;
}

.org-text .text-link {
  margin-top: 24px;
  display: inline-block;
}

.org-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.org-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(30, 42, 58, 0.04);
}

.org-card-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.org-card-label--teal {
  color: #4A8F7F;
}

.org-card-label--purple {
  color: #7B6FA0;
}

.org-card-label--amber {
  color: #B08860;
}

.org-card-label--navy {
  color: #1E2A3A;
}

.org-card p {
  font-size: 13px;
  color: #5A6B7B;
  line-height: 1.5;
}

/* ===================== RESOURCES ===================== */
.resources {
  padding: 100px 24px;
  background: #fff;
}

.resources-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.resource-card {
  text-decoration: none;
  display: block;
  background: #F7F5F0;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.25s;
  border: 1px solid transparent;
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(30, 42, 58, 0.06);
  border-color: rgba(74, 143, 127, 0.15);
}

.resource-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.resource-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #1E2A3A;
  margin: 12px 0 8px;
  line-height: 1.3;
}

.resource-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #5A6B7B;
}

.resource-link {
  font-size: 14px;
  font-weight: 600;
  color: #4A8F7F;
  display: inline-block;
  margin-top: 16px;
}

/* ===================== FINAL CTA ===================== */
.final-cta {
  padding: 100px 24px;
  background: linear-gradient(180deg, #EDE9E0 0%, #F7F5F0 100%);
  text-align: center;
}

.final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4A8F7F, #7BC4B4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.final-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4.5vw, 44px);
  color: #1E2A3A;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.final-cta p {
  font-size: 17px;
  line-height: 1.7;
  color: #5A6B7B;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  font-size: 15px;
  font-weight: 600;
  color: #1E2A3A;
  background: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  border: 1.5px solid rgba(30, 42, 58, 0.15);
  transition: all 0.25s;
  display: inline-block;
}

.btn-white:hover {
  border-color: #1E2A3A;
  transform: translateY(-2px);
}

/* ===================== TRUST & SAFETY ===================== */
.trust {
  padding: 48px 24px;
  background: #fff;
  border-top: 1px solid rgba(30, 42, 58, 0.06);
}

.trust-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.trust-badge span {
  font-size: 13px;
  font-weight: 600;
  color: #4A8F7F;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.trust p {
  font-size: 13px;
  line-height: 1.7;
  color: #8A95A3;
}

/* ===================== FOOTER ===================== */
.site-footer {
  padding: 64px 24px 32px;
  background: #1E2A3A;
  color: #fff;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4A8F7F, #7BC4B4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo span {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-links span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* Stack all two-column grids */
  .hero-grid,
  .org-grid {
    grid-template-columns: 1fr;
  }

  /* Prevention: unstick heading */
  .prevention-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .prevention-heading {
    position: static;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .logo-wordmark {
    font-size: 20px;
    letter-spacing: 0.03em;
  }

  /* Section padding */
  .why-now,
  .issues,
  .prevention,
  .support,
  .resources,
  .final-cta {
    padding: 64px 20px;
  }

  .organizations {
    padding: 56px 20px;
  }

  /* Hero */
  .hero {
    min-height: unset;
    padding: 110px 20px 48px;
    align-items: flex-start;
  }

  .hero-text {
    gap: 16px;
  }

  .hero-title {
    font-size: 32px;
    letter-spacing: -0.5px;
  }

  .hero-body {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: row;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 14px;
    padding: 12px 20px;
  }

  .hero-visual--desktop {
    display: none;
  }

  .hero-visual--inline {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .hero-visual--inline .hero-orb-wrap {
    max-width: 260px;
  }

  /* Prevention: compact heading + 2-col pillar grid */
  .prevention-heading h2 {
    font-size: 24px;
    margin-top: 10px;
  }

  .prevention-heading p {
    font-size: 14px;
    margin-top: 12px;
  }

  .pillars-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .pillar-card {
    flex-direction: column;
    padding: 16px;
    gap: 10px;
  }

  .pillar-icon {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .pillar-text h3 {
    font-size: 13px;
  }

  .pillar-text p {
    font-size: 12px;
    line-height: 1.45;
  }

  /* Orgs */
  .org-grid {
    grid-template-columns: 1fr;
  }

  .org-cards {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }
}