/* ==========================================================================
   GodWana - Page-specific Styles
   ========================================================================== */

/* ==========================================================================
   PAGE HERO (For subpages)
   ========================================================================== */

.page-hero {
  padding: calc(72px + var(--space-10)) 0 var(--space-9);
  background: var(--gradient-hero);
  text-align: center;
}

.page-hero--small {
  padding: calc(72px + var(--space-8)) 0 var(--space-7);
}

.page-hero-title {
  font-size: var(--text-hero);
  margin-bottom: var(--space-4);
}

.page-hero-subtitle {
  font-size: var(--text-subtitle);
  color: var(--color-sage);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-hero {
    padding: calc(64px + var(--space-8)) 0 var(--space-7);
  }

  .page-hero--small {
    padding: calc(64px + var(--space-6)) 0 var(--space-5);
  }
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

/* Story Section */
.about-story {
  background: var(--color-white);
}

.about-story-content {
  max-width: 700px;
  margin: 0 auto;
}

.about-story-heading {
  font-size: var(--text-h2);
  margin-bottom: var(--space-6);
}

.about-story-text {
  font-size: var(--text-body-lg);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-5);
  color: var(--color-forest);
}

.about-story-text:last-child {
  margin-bottom: 0;
}

/* Vision Section */
.about-vision {
  background: var(--color-forest);
  color: var(--color-white);
}

.about-vision-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-vision-quote {
  font-size: var(--text-h2);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-6);
  line-height: var(--leading-snug);
}

.about-vision-text {
  font-size: var(--text-body-lg);
  color: var(--color-sage);
  line-height: var(--leading-loose);
}

/* Values Section */
.about-values {
  background: var(--color-cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.value-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
}

.value-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  background: var(--color-cream);
  border-radius: var(--radius-md);
  color: var(--color-forest);
}

.value-title {
  font-size: var(--text-body-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
}

.value-text {
  font-size: var(--text-body-sm);
  color: var(--color-sage);
  line-height: var(--leading-relaxed);
}

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

@media (max-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Team Section */
.about-team {
  background: var(--color-white);
}

.team-intro {
  max-width: 700px;
  margin: 0 auto var(--space-8);
  text-align: center;
  font-size: var(--text-body-lg);
  color: var(--color-sage);
  line-height: var(--leading-relaxed);
}

.team-section-title {
  font-size: var(--text-body);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-sage);
  text-align: center;
  margin-bottom: var(--space-5);
  margin-top: var(--space-8);
}

.team-section-title:first-of-type {
  margin-top: 0;
}

.team-outro {
  max-width: 600px;
  margin: var(--space-8) auto 0;
  text-align: center;
  font-size: var(--text-body);
  color: var(--color-sage);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  max-width: 900px;
  margin: 0 auto;
}

.team-grid--single {
  max-width: 350px;
}

.team-member {
  text-align: center;
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.team-member--human {
  background: var(--color-cream);
}

.team-member--ai {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.08));
  border: 1px dashed var(--color-stone);
}

.team-member-photo {
  width: 160px;
  height: 160px;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-cream);
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest);
}

.team-member-name {
  font-size: var(--text-body-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-1);
}

.team-member-role {
  font-size: var(--text-body-sm);
  color: var(--color-sage);
  margin-bottom: var(--space-3);
}

.team-member-bio {
  font-size: var(--text-body-sm);
  color: var(--color-sage);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
}

.team-member-linkedin {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-body-sm);
  color: var(--color-sage);
  transition: color var(--transition-base);
}

.team-member-linkedin:hover {
  color: var(--color-forest);
}

/* About CTA */
.about-cta {
  background: var(--color-cream);
}

/* ==========================================================================
   NEWSLETTER PAGE
   ========================================================================== */

.newsletter {
  background: var(--color-white);
}

.newsletter-wrapper {
  max-width: 500px;
  margin: 0 auto;
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
}

.newsletter-intro {
  margin-bottom: var(--space-6);
}

.newsletter-heading {
  font-size: var(--text-h3);
  margin-bottom: var(--space-4);
}

.newsletter-text {
  font-size: var(--text-body);
  color: var(--color-sage);
  margin-bottom: var(--space-3);
}

.newsletter-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.newsletter-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-body);
  color: var(--color-forest);
}

.newsletter-list .icon {
  color: var(--color-sage);
  flex-shrink: 0;
  margin-top: 2px;
}

.newsletter-form {
  border-top: 1px solid var(--color-stone);
  padding-top: var(--space-6);
}

.newsletter-disclaimer {
  font-size: var(--text-caption);
  color: var(--color-sage);
  text-align: center;
  margin-top: var(--space-4);
  font-style: italic;
}

.newsletter-success {
  text-align: center;
  padding: var(--space-6) 0;
}

/* Radio Group */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.radio-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
}

.radio-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--color-forest);
}

.radio-label {
  font-size: var(--text-body);
  color: var(--color-forest);
}

/* ==========================================================================
   LEGAL PAGES (Privacy Policy, etc.)
   ========================================================================== */

.legal-content {
  background: var(--color-white);
}

.legal-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.legal-article {
  font-size: var(--text-body);
  line-height: var(--leading-loose);
}

.legal-article h2 {
  font-size: var(--text-h3);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

.legal-article h2:first-child {
  margin-top: 0;
}

.legal-article p {
  margin-bottom: var(--space-4);
  color: var(--color-forest);
}

.legal-article ul {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

.legal-article li {
  margin-bottom: var(--space-2);
  position: relative;
  list-style: disc;
  color: var(--color-forest);
}

.legal-article strong {
  font-weight: var(--weight-semibold);
}
