/* PAGE HERO */
.page-hero {
  background: var(--black); padding: 160px 64px 100px;
  position: relative; overflow: hidden;
}
.page-hero-orb { position: absolute; width: 500px; height: 500px; right: -100px; top: -100px; background: radial-gradient(circle, rgba(232,98,10,0.12), transparent 70%); border-radius: 50%; }
.page-hero-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.page-hero-title { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -2.5px; color: white; line-height: 1.0; }
.page-hero-title .o { color: var(--orange); }
.page-hero-desc { margin-top: 24px; font-size: 1.1rem; color: rgba(255,255,255,0.45); max-width: 560px; line-height: 1.75; }
.page-hero-scroll { display: flex; align-items: center; gap: 12px; margin-top: 60px; color: rgba(255,255,255,0.3); font-size: 0.8rem; letter-spacing: 1px; }
.page-hero-line { width: 48px; height: 1px; background: rgba(255,255,255,0.2); }

/* STORY */
.story-section { padding: 110px 64px; }
.story-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: center; }
.story-left .section-eyebrow { margin-bottom: 20px; }
.story-timeline { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }
.tl-item { display: flex; gap: 24px; padding-bottom: 36px; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.tl-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--orange); border: 3px solid var(--orange-pale); flex-shrink: 0; }
.tl-line { flex: 1; width: 2px; background: var(--gray2); margin-top: 4px; }
.tl-item:last-child .tl-line { display: none; }
.tl-year { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 800; font-size: 1rem; color: var(--orange); margin-bottom: 6px; }
.tl-title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; font-size: 0.95rem; color: var(--black); margin-bottom: 6px; }
.tl-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }

.story-right-card {
  background: var(--off-white); border: 1.5px solid var(--gray2);
  border-radius: var(--radius-lg); padding: 48px; position: relative; overflow: hidden;
}
.story-right-card::before { content: ''; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; background: var(--orange-pale); border-radius: 50%; }
.src-heading { font-size: 1.6rem; letter-spacing: -0.5px; position: relative; }
.src-heading .o { color: var(--orange); }
.src-body { margin-top: 20px; font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; }
.src-quote { margin-top: 32px; padding: 24px; background: white; border-radius: var(--radius-sm); border-left: 3px solid var(--orange); font-style: italic; color: var(--text-body); font-size: 0.9rem; line-height: 1.65; }
.src-quote cite { display: block; margin-top: 12px; font-style: normal; font-weight: 700; font-size: 0.82rem; color: var(--black); }

/* VISION MISSION */
.vm-section { background: var(--off-white); padding: 110px 64px; }
.vm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.vm-card {
  background: white; border-radius: var(--radius); padding: 40px 32px;
  border: 1.5px solid var(--gray2); transition: 0.3s;
}
.vm-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(232,98,10,0.08); }
.vm-icon { font-size: 2.5rem; margin-bottom: 20px; }
.vm-title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 800; font-size: 1.2rem; color: var(--black); margin-bottom: 14px; }
.vm-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* FOUNDERS */
.founders-section { padding: 110px 64px; }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.founder-card {
  background: white; border: 1.5px solid var(--gray2); border-radius: var(--radius-lg);
  padding: 48px; display: flex; gap: 32px; align-items: center;
  transition: 0.3s;
}
.founder-card:hover { border-color: var(--orange); box-shadow: 0 20px 60px rgba(232,98,10,0.08); transform: translateY(-4px); }
.founder-avatar {
  width: 100px; height: 100px; border-radius: 20px; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 800; font-size: 2rem; color: white;
  flex-shrink: 0;
}
.founder-name { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 800; font-size: 1.15rem; color: var(--black); }
.founder-role { font-size: 0.82rem; color: var(--orange); font-weight: 600; margin-top: 4px; }
.founder-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; margin-top: 14px; }

/* TEAM */
.team-section { background: var(--black); padding: 110px 64px; }
.team-heading { color: white; }
.team-heading .o { color: var(--orange); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; }
.team-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
  transition: 0.3s;
}
.team-card:hover { border-color: var(--orange); background: rgba(232,98,10,0.06); transform: translateY(-4px); }
.team-icon { font-size: 2rem; margin-bottom: 14px; }
.team-role { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; font-size: 0.88rem; color: white; }
.team-dept { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 4px; }

/* MINI CTA */
.about-cta { background: var(--orange); padding: 100px 64px; text-align: center; }
.about-cta h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -1.5px; color: white; line-height: 1.1; }
.about-cta p { color: rgba(255,255,255,0.7); font-size: 1rem; margin: 20px auto 0; max-width: 500px; line-height: 1.7; }

@media (max-width:1024px){
  .page-hero { padding: 140px 32px 80px; }
  .story-section, .vm-section, .founders-section, .founders-section, .team-section { padding: 80px 32px; }
  .about-cta { padding: 80px 32px; margin-top: 48px; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .vm-grid { grid-template-columns: 1fr 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:640px){
  .page-hero { padding: 130px 20px 64px; }
  .story-section, .vm-section, .founders-section, .team-section, .about-cta { padding: 64px 20px; }
  .vm-grid { grid-template-columns: 1fr; }
  .founder-card { flex-direction: column; gap: 20px; padding: 32px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
