/* ========================================
   ARCHE — Grow Page Styles
   ======================================== */

/* ---- HERO ---- */
.grow-hero {
  position: relative;
  overflow: hidden;
}

.grow-hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.grow-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.grow-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--sage);
  right: -200px;
  top: -200px;
}

.grow-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  right: 100px;
  bottom: -100px;
}

/* ---- INTRO SPLIT ---- */

.grow-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.grow-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 40px;
  border-left: 2px solid var(--border-dark);
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}

/* ---- YAG FEATURES ---- */

.yag-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.yag-feature {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid var(--border-dark);
  transition: all 0.3s var(--ease-out);
}

.yag-feature:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
}

.yag-feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(201,169,110,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
}

.yag-feature h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.yag-feature p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ---- SECTION META CHIPS (day/time + contact) ---- */

.section-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.section-meta-light { justify-content: flex-start; }
.section-meta-dark  { justify-content: center; }

.meta-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  border-radius: 40px;
  min-width: 0;
}

.meta-chip:hover { border-color: rgba(201,169,110,0.3); }

.meta-chip-dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.meta-chip-dark:hover { border-color: rgba(201,169,110,0.3); }

.meta-chip-icon {
  width: 30px;
  height: 30px;
  background: rgba(201,169,110,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.meta-chip-dark .meta-chip-icon {
  background: rgba(201,169,110,0.15);
}

.meta-chip-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.meta-chip-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.meta-chip-dark .meta-chip-label { color: rgba(255,255,255,0.35); }

.meta-chip-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.meta-chip-dark .meta-chip-value { color: var(--white); }

/* ---- NEXT GENERATION ---- */

.nextgen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.nextgen-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  transition: all 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.nextgen-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.08);
  border-color: rgba(201,169,110,0.25);
}

.nextgen-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  flex-shrink: 0;
}

.nextgen-card-body {
  padding: 40px 36px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.nextgen-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,169,110,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
}

.nextgen-card-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.nextgen-card-body > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ---- GROW PATHWAYS ---- */

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pathway-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.3s var(--ease-out);
}

.pathway-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,169,110,0.2);
  transform: translateY(-3px);
}

.pathway-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,169,110,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.pathway-icon svg {
  width: 22px;
  height: 22px;
}

.pathway-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.pathway-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ---- SPIRITUAL FORMATION ---- */

.spiritual-formation {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sf-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.sf-header-text { flex: 1; }

.sf-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.sf-blurb {
  font-size: 15px;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
  max-width: 520px;
  margin-top: 12px;
}

.sf-meta {
  flex-shrink: 0;
  justify-content: flex-end;
  margin-top: 0;
  align-self: center;
}

.sf-cta { align-self: flex-start; }

/* ---- CTA ---- */

.grow-cta-section {
  position: relative;
  overflow: hidden;
}

.grow-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.06), transparent 70%);
  pointer-events: none;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 1024px) {
  .yag-features,
  .pathways-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sf-header {
    flex-direction: column;
    gap: 24px;
  }
  .sf-meta { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .grow-intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .grow-stats {
    padding-left: 0;
    border-left: none;
    padding-top: 32px;
    border-top: 2px solid var(--border-dark);
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }

  .yag-features,
  .pathways-grid,
  .nextgen-grid {
    grid-template-columns: 1fr;
  }

  .nextgen-card-body { padding: 32px 24px; }

  .section-meta { justify-content: flex-start; }

  .stat-number { font-size: 40px; }
}
