/* Track Data — minimal static site */

:root {
  --navy: #0e2a47;
  --navy-dark: #0a1f35;
  --ink: #1a1a1a;
  --muted: #5a6573;
  --rule: #e3e7ec;
  --bg-soft: #eef4fb;
  --accent: #1aa2c4;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  line-height: 1.55;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / nav */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 22px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header .logo img {
  display: block;
  max-height: 70px;
  width: auto;
}
.site-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-nav a {
  color: #fff;
  font-weight: 500;
  padding-bottom: 4px;
}
.site-nav a.active {
  border-bottom: 2px solid #fff;
}
.site-nav a:hover {
  text-decoration: none;
  opacity: 0.85;
}

/* Hero */
.hero {
  position: relative;
  min-height: 560px;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero.full {
  min-height: calc(100vh - 80px);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(100, 133, 188);
  opacity: 0.68;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
}
.hero-content h1 {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(40px, 7vw, 84px);
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  font-weight: 700;
}
.hero-content .tagline {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 400;
  margin: 0 0 32px;
  opacity: 0.95;
}
.hero-content h1.hero-page-title {
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.01em;
}
.hero.compact { min-height: 320px; }
.hero.compact .hero-content { padding: 100px 24px 60px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.btn:hover {
  background: #fff;
  color: var(--navy);
  text-decoration: none;
}

/* Sections */
section {
  padding: 72px 0;
}
section.soft {
  background: var(--bg-soft);
}

/* Team */
.team-section h2.section-title {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--navy);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 8px;
  display: inline-block;
}
.team-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 48px;
}
.team-member {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}
.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #d0d8e0;
  background-size: cover;
  background-position: center;
}
.team-photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 48px;
  font-weight: 600;
  background: linear-gradient(135deg, #6e8aab, #4a6580);
}
.team-bio h3 {
  margin: 0 0 4px;
  font-size: 22px;
  color: var(--ink);
}
.team-bio .role {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
}
.team-bio p {
  margin: 0;
  color: #2c3540;
  max-width: 640px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 600px;
  margin: 48px auto 0;
}
.contact-block h2 {
  font-size: 32px;
  font-weight: 300;
  color: var(--navy);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 8px;
  display: inline-block;
  margin: 0 0 32px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 17px;
}
.contact-item .icon {
  font-size: 22px;
  color: var(--muted);
  width: 32px;
  flex-shrink: 0;
}
.contact-item a {
  color: var(--ink);
}
.contact-item address {
  font-style: normal;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 28px 0;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 720px) {
  .site-header .container {
    flex-direction: column;
    gap: 16px;
  }
  .site-nav { gap: 20px; font-size: 12px; }
  .team-member {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .team-photo { margin: 0 auto; }
  .team-bio p { margin: 0 auto; }
}
