:root {
  --teal:        #00394a;
  --teal-mid:    #005a6e;
  --teal-light:  #cddbe4;
  --teal-xlight: #e8f3f7;
  --peach:       #f4c4bb;
  --peach-light: #fdf0ed;
  --peach-deep:  #e8a090;
  --cream:       #faf9f8;
  --warm-white:  #ffffff;
  --text:        #1a2e35;
  --text-mid:    #3d5a64;
  --text-soft:   #7a9aa5;
  --gold:        #c4793a;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --r:           8px;
  --r-lg:        16px;
  --shadow:      0 4px 24px rgba(0,57,74,0.10);
  --shadow-lg:   0 12px 48px rgba(0,57,74,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--warm-white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-mid); display: block; margin-bottom: 0.6rem;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--r);
  font-family: var(--font-sans); font-size: 0.88rem; font-weight: 500;
  text-decoration: none; cursor: pointer; border: none; transition: all 0.2s;
}
.btn-teal { background: var(--teal); color: white; }
.btn-teal:hover { background: var(--teal-mid); }
.btn-outline-teal { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-outline-teal:hover { background: var(--teal); color: white; }
.btn-white { background: white; color: var(--teal); }
.btn-white:hover { background: var(--teal-xlight); }
.btn-outline-white { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.65); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }

/* hero */
.about-hero {
  background: linear-gradient(135deg, var(--teal) 0%, #002535 100%);
  padding: 88px 0 80px;
  position: relative; overflow: hidden;
}
.about-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='0.8' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.about-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.about-hero-inner .eyebrow { color: var(--peach); }
.about-hero h1 { color: white; margin-bottom: 24px; }
.about-hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 640px;
}
.about-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* mission */
.mission-section { padding: 80px 0; background: white; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mission-text h2 { color: var(--teal); margin-bottom: 20px; }
.mission-text p { color: var(--text-mid); font-size: 0.98rem; line-height: 1.8; margin-bottom: 18px; }
.mission-text p:last-child { margin-bottom: 0; }
.mission-image {
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-inline: auto;
}
.mission-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* story / timeline */
.story-section { padding: 80px 0; background: var(--teal-xlight); }
.story-section .section-header { margin-bottom: 52px; }
.story-section .section-header h2 { color: var(--teal); margin-bottom: 12px; }
.story-section .section-header p { color: var(--text-mid); max-width: 640px; font-size: 0.98rem; line-height: 1.75; }
.timeline { position: relative; display: flex; flex-direction: column; gap: 0; }
.timeline::before {
  content: '';
  position: absolute; left: 20px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal-light), var(--teal));
  opacity: 0.4;
}
.timeline-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 4px var(--teal-xlight);
}
.timeline-dot svg { flex-shrink: 0; }
.timeline-content { padding-top: 8px; }
.timeline-year {
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-mid); margin-bottom: 6px;
}
.timeline-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--teal);
  margin-bottom: 10px;
}
.timeline-body { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }

/* advisors */
.advisors-section { padding: 80px 0; background: white; }
.advisors-section .section-header { margin-bottom: 52px; }
.advisors-section .section-header h2 { color: var(--teal); margin-bottom: 12px; }
.advisors-section .section-header p {
  color: var(--text-mid);
  max-width: 580px;
  font-size: 0.98rem;
  line-height: 1.75;
}
.advisors-featured { margin-bottom: 28px; }
.advisor-card-featured {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 36px;
  align-items: start;
  border: 2px solid rgba(0,57,74,0.14);
  border-top: 4px solid var(--teal);
  border-radius: var(--r-lg);
  padding: 40px;
  background: var(--teal-xlight);
  transition: box-shadow 0.2s;
}
.advisor-card-featured:hover { box-shadow: var(--shadow-lg); }
.advisor-card-featured .advisor-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,57,74,0.15);
  margin-bottom: 0;
}
.advisor-card-featured .advisor-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--teal);
  margin-bottom: 6px;
}
.advisor-card-featured .advisor-role {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 18px;
}
.advisor-card-featured .advisor-bio {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.advisors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.advisor-card {
  border: 1.5px solid rgba(0,57,74,0.10);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.advisor-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.advisor-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--teal-xlight);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
}
.advisor-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.advisor-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--teal);
  margin-bottom: 4px;
}
.advisor-role {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 14px;
}
.advisor-bio { font-size: 0.86rem; color: var(--text-mid); line-height: 1.7; }

/* CTA */
.about-cta {
  background: linear-gradient(135deg, var(--teal) 0%, #002535 100%);
  padding: 80px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.about-cta::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='0.8' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") repeat;
}
.about-cta-content { position: relative; z-index: 1; }
.about-cta .eyebrow { color: var(--peach); }
.about-cta h2 { color: white; margin-bottom: 14px; }
.about-cta p {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 1rem;
}
.about-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .mission-grid { grid-template-columns: 1fr; }
  .advisor-card-featured { grid-template-columns: 100px 1fr; gap: 20px; padding: 28px 24px; }
  .advisors-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .advisor-card-featured { grid-template-columns: 1fr; }
  .advisor-card-featured .advisor-avatar { width: 88px; height: 88px; margin-bottom: 18px; }
  .advisors-grid { grid-template-columns: 1fr; }
}
