/* ===== FOUNDER PAGE ===== */

/* --- Hero --- */
.founder-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark-purple) 100%);
  padding: 160px 0 100px;
  color: white;
  position: relative;
  overflow: hidden;
}

.founder-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.founder-hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* --- Photo --- */
.founder-photo-wrapper {
  flex-shrink: 0;
}

.founder-photo-ring {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, #FFD700, var(--secondary), #FFD700);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.3),
    0 0 0 8px rgba(255,255,255,0.08);
}

.founder-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* --- Intro --- */
.founder-intro {
  flex: 1;
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: white;
  margin-bottom: 24px;
}

.founder-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: white;
}

.founder-hero .gradient-text {
  background: linear-gradient(135deg, #FFD700, #F59E0B, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.founder-title {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin-bottom: 12px;
}

.founder-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}
.founder-location svg {
  opacity: 0.7;
}


/* --- Story Cards --- */
.founder-story {
  background: var(--light-purple);
  padding: 100px 0;
}

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

.story-card {
  background: var(--bg-card);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-purple);
}

.story-icon {
  width: 56px;
  height: 56px;
  background: var(--light-purple);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.story-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.story-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}


/* --- Quote --- */
.founder-quote {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark-purple) 100%);
  text-align: center;
}

.quote-block {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  margin-bottom: 24px;
}

.quote-block p {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  line-height: 1.6;
  color: white;
  font-style: italic;
  margin-bottom: 24px;
}

.quote-block cite {
  font-style: normal;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}


/* --- Connect --- */
.founder-connect {
  background: var(--bg);
  padding: 100px 0;
  text-align: center;
}

.founder-connect h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 48px;
}

.connect-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.connect-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: left;
  min-width: 240px;
}

.connect-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-purple);
  border-color: var(--secondary);
}

.connect-card svg,
.connect-card img {
  color: var(--primary);
  flex-shrink: 0;
}

.connect-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.connect-handle {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .founder-hero { padding: 140px 0 80px; }
  .founder-hero-content {
    flex-direction: column;
    text-align: center;
  }

  .founder-photo-ring {
    width: 180px;
    height: 180px;
  }

  .founder-location {
    justify-content: center;
  }

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

  .connect-links {
    flex-direction: column;
    align-items: center;
  }

  .connect-card {
    width: 100%;
    max-width: 340px;
  }
}

@media (max-width: 480px) {
  .founder-hero h1 {
    font-size: 36px;
  }

  .founder-photo-ring {
    width: 150px;
    height: 150px;
  }

  .story-card {
    padding: 28px 20px;
  }
}
