/* Enhanced Styles for About and Labs Pages */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: white;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 2rem auto 0;
}

.lab-origin-hero {
  background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
}

.lab-vitae-hero {
  background: linear-gradient(135deg, #2d3e50 0%, #1a2332 100%);
}

.lab-praxis-hero {
  background: linear-gradient(135deg, #0E1628 0%, #1e2d3f 100%);
}

.intro-section {
  background: white;
  padding: 4rem 2rem;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-lead {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-content p {
  color: rgba(14, 22, 40, 0.75);
  font-size: 1rem;
  line-height: 1.8;
}

.mission-section {
  background: var(--sand);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.mission-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.mission-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
  border-radius: 50%;
  color: var(--gold);
}

.mission-card-title {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 600;
}

.mission-card-desc {
  color: rgba(14, 22, 40, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.timeline-section {
  background: white;
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(201, 162, 74, 0.3) 100%);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 2rem;
}

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: rgba(14, 22, 40, 0.8);
  font-size: 1rem;
  line-height: 1.7;
}

.timeline-item-highlight {
  background: linear-gradient(90deg, rgba(201, 162, 74, 0.08) 0%, transparent 100%);
  padding: 1rem;
  margin-left: -1rem;
  border-radius: 8px;
}

.timeline-item-highlight .timeline-year {
  font-size: 1.75rem;
}

.governance-section {
  background: var(--sand);
}

.governance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.governance-block {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.governance-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
}

.governance-header svg {
  color: var(--gold);
}

.governance-header h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0;
}

.member-list {
  list-style: none;
}

.member-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 162, 74, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.member-list li:last-child {
  border-bottom: none;
}

.member-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
}

.member-title {
  color: rgba(14, 22, 40, 0.65);
  font-size: 0.9rem;
}

.disclosure-section {
  background: white;
}

.disclosure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.disclosure-card {
  background: white;
  border: 2px solid rgba(201, 162, 74, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.disclosure-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.disclosure-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
  border-radius: 50%;
  color: var(--gold);
}

.disclosure-card-title {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.disclosure-card-desc {
  color: rgba(14, 22, 40, 0.65);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.disclosure-card-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.projects-section {
  background: var(--sand);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.project-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--navy) 100%);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.project-card-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 162, 74, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.project-card-title {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 600;
}

.project-card-desc {
  color: rgba(14, 22, 40, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

.features-section {
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, rgba(14, 22, 40, 0.8) 100%);
  border-radius: 50%;
  color: var(--gold);
}

.feature-card-title {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.feature-card-desc {
  color: rgba(14, 22, 40, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1e2d3f 100%);
  padding: 5rem 2rem;
  text-align: center;
}

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

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: white;
  margin-bottom: 1rem;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201, 162, 74, 0.3);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201, 162, 74, 0.4);
  background: rgba(201, 162, 74, 0.95);
}

.cta-btn svg {
  transition: transform 0.3s ease;
}

.cta-btn:hover svg {
  transform: translateX(4px);
}
