

.page-hero {
  background: var(--ink);
  padding-block: 64px 52px;
  text-align: center;
  border-bottom: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(200,169,81,0.06) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(200,169,81,0.06) 40px
    );
  pointer-events: none;
}
.page-hero .section-label { color: var(--gold); }
.page-hero h1 { color: var(--parchment); margin-top: 8px; }

.page-section { padding-block: 72px; }
.page-section:nth-child(even) { background: var(--parchment); }
.page-section:nth-child(odd)  { background: var(--white); }

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-mission-image { overflow: hidden; border-radius: var(--radius); }
.about-mission-image img { width: 100%; display: block; }
.about-mission-text h2 { margin-bottom: 16px; }
.about-mission-text p  { color: var(--ash); margin-bottom: 14px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  border: 1px solid rgba(200,169,81,0.25);
  border-radius: var(--radius);
  padding: 28px;
  text-align: left;
}
.value-icon {
  width: 44px; height: 44px;
  background: var(--crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.value-icon svg { width: 22px; height: 22px; fill: var(--parchment); }
.value-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--ink); }
.value-card p  { color: var(--ash); font-size: 0.9rem; line-height: 1.6; }

.team-photo-banner {
  margin-bottom: 48px;
  border-radius: var(--radius);
  overflow: hidden;
}
.team-photo-banner img { width: 100%; display: block; height: auto; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
}
.team-card { text-align: center; }
.team-photo svg { display: block; width: 160px; height: 160px; margin: 0 auto; border-radius: 50%; }
.team-card h4 { margin-top: 16px; font-size: 1rem; color: var(--ink); }
.team-card .team-role { font-size: 0.8rem; color: var(--ash-lt); letter-spacing: 0.08em; display: block; margin-bottom: 12px; }
.team-card p { color: var(--ash); font-size: 0.9rem; line-height: 1.6; text-align: left; }

.policy-body {
  padding-block: 88px;
  background: var(--white);
}
.policy-inner {
  max-width: 780px;
  margin-inline: auto;
}
.policy-empty {
  min-height: 320px;
  border: 2px dashed rgba(200,169,81,0.35);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ash-lt);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.policy-section {
  margin-bottom: 48px;
}
.policy-section h2 {
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 16px;
}
.policy-section p {
  color: var(--ash);
  line-height: 1.8;
  margin-bottom: 12px;
}
.policy-section ul {
  list-style: disc;
  padding-left: 28px;
  margin-bottom: 12px;
}
.policy-section li {
  color: var(--ash);
  margin-bottom: 8px;
  line-height: 1.7;
}
.policy-section a {
  color: var(--crimson);
  text-decoration: underline;
}
.policy-section a:hover {
  color: var(--crimson-dk);
}

@media (max-width: 900px) {
  .about-mission-grid { grid-template-columns: 1fr; gap: 36px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr; }
}
