/* ══════════════════════════════════
   1. HERO / ABOUT
   ══════════════════════════════════ */
.hero-about {
  background: var(--navy);
  padding: 80px 32px 100px;
}

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

.hero-about-photo img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-about-text h1 {
  font-size: 32px;
  color: var(--text-on-dark-bright);
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero-about-text h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-about-text > p {
  font-size: 15px;
  color: var(--text-on-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-creds span {
  font-size: 11px;
  color: var(--text-on-dark);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* ══════════════════════════════════
   2. GUILD SECTION
   ══════════════════════════════════ */
.home-guild {
  background: var(--parchment);
  padding: 80px 32px;
}

.home-section-inner {
  max-width: 720px;
  margin: 0 auto;
}

.home-section-inner h2 {
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 16px;
}

.home-section-desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 40px;
}

.guild-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.guild-hl {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.guild-hl i {
  color: var(--gold);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.guild-hl strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 2px;
}

.guild-hl span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Shared CTA row */
.home-section-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
}

.home-price {
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
}

/* ══════════════════════════════════
   3. NEWSLETTER SECTION
   ══════════════════════════════════ */
.home-newsletter {
  background: var(--navy);
  padding: 80px 32px;
}

.home-newsletter-inner {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.home-newsletter-text h2 {
  font-size: 28px;
  color: var(--text-on-dark-bright);
  margin-bottom: 16px;
}

.home-newsletter-text p {
  font-size: 15px;
  color: var(--text-on-dark);
  line-height: 1.7;
}

/* ConvertKit overrides for dark bg */
.home-newsletter-form .formkit-form[data-uid="6cf6871501"] {
  max-width: 100% !important;
  font-family: var(--font) !important;
}

.home-newsletter-form .formkit-form[data-uid="6cf6871501"] [data-style="clean"] {
  padding: 0 !important;
}

.home-newsletter-form .formkit-form[data-uid="6cf6871501"] .formkit-input {
  font-family: var(--font) !important;
  font-size: 14px !important;
  padding: 14px 16px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--text-on-dark-bright) !important;
}

.home-newsletter-form .formkit-form[data-uid="6cf6871501"] .formkit-input:focus {
  border-color: var(--gold) !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

.home-newsletter-form .formkit-form[data-uid="6cf6871501"] .formkit-input::placeholder {
  color: var(--text-on-dark) !important;
  opacity: 1 !important;
}

.home-newsletter-form .formkit-form[data-uid="6cf6871501"] .formkit-submit {
  background: var(--gold) !important;
  border-radius: 8px !important;
  font-family: var(--font) !important;
}

.home-newsletter-form .formkit-form[data-uid="6cf6871501"] .formkit-submit:hover {
  background: var(--gold-hover) !important;
}

.home-newsletter-form .formkit-form[data-uid="6cf6871501"] .formkit-submit > span {
  padding: 14px 28px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

/* ══════════════════════════════════
   4. STRATEGY SECTION
   ══════════════════════════════════ */
.home-strategy {
  background: var(--parchment);
  padding: 80px 32px;
}

.strategy-phases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.strategy-phase {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
}

.phase-num {
  display: block;
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}

.strategy-phase strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}

.strategy-phase p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */
@media (max-width: 768px) {
  .hero-about-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .hero-about-photo img {
    width: 140px;
    height: 140px;
    margin: 0 auto;
  }
  .hero-about-text h1 {
    font-size: 26px;
  }
  .hero-creds {
    justify-content: center;
  }
  .home-newsletter-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .strategy-phases {
    grid-template-columns: 1fr;
  }
  .home-section-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
