body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #f4f1ed;
  color: #2f2f2f;
  margin: 0;
  line-height: 1.6;
}

.container {
  max-width: 760px;
  margin: auto;
  padding: 60px 20px 100px;
}

h1 {
  font-family: Georgia, serif;
  font-size: 44px;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 20px;
  color: #b45309;
  margin-bottom: 16px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 30px;
  height: 12px;
}

.divider-line-left {
  width: 40px;
  height: 1px;
  background: #b45309;
}

.divider-slashes {
  width: 30px;
  height: 12px;
  flex-shrink: 0;
}

.divider-line-right {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #b45309, transparent);
}

.card {
  background: white;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}

.team-member {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 16px;
  margin-left: -16px;
  margin-right: -16px;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.team-member:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  background: rgba(255,255,255,0.5);
}

.team-member img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.team-member h3 {
  margin: 0 0 6px 0;
}

.team-member > div {
  color: #777;
}

.team-role {
  font-size: 15px;
  color: #888;
  margin: 0 0 10px 0;
  line-height: 1.5;
}

.team-desc {
  font-size: 15px;
  color: #aaa;
  margin: 0;
  line-height: 1.5;
}

.project {
  margin-bottom: 28px;
  padding: 0 16px;
  margin-left: -16px;
  margin-right: -16px;
  border-radius: 10px;
  transition: background 0.2s;
}

.project:hover {
  background: rgba(180,83,9,0.06);
}

.project-title {
  font-size: 18px;
  font-family: Georgia, serif;
  color: #2f2f2f;
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.project-link {
  color: #b45309;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.project-link:hover {
  color: #934407;
  text-decoration: underline;
}

.section-header {
  margin-bottom: 18px;
}

.section-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-header-bar {
  width: 4px;
  height: 22px;
  background: #b45309;
  border-radius: 2px;
}

.section-header h2 {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: normal;
  color: #b45309;
  margin: 0;
}

.section-header-line {
  width: 50%;
  height: 1px;
  background: linear-gradient(to right, #b45309, transparent);
  margin-top: 8px;
}

.navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 18px;
  background: #f4f1ed;
}

.home-spacer {
  /* not needed with fixed navbar */
}

.footer {
  text-align: center;
  padding: 16px 20px 80px;
  max-width: 760px;
  margin: 0 auto;
}

.footer p {
  font-size: 12px;
  color: #aaa;
  margin: 0;
}

.navbutton {
  background: #b45309;
  color: white;
  text-decoration: none;
  padding: 10px 26px;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.2s;
}

.navbutton:hover {
  background: #934407;
}

.navbutton.secondary {
  background: #ede9e4;
  color: #333;
}

.navbutton.secondary:hover {
  background: #ddd8d1;
}