/* ============ SUBPAGE STYLES (complements style.css) ============ */

/* ============ PAGE HERO ============ */
.page-hero {
  position: relative;
  padding: 90px 24px 84px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 80% at 80% 20%, rgba(245, 158, 11, .14) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 100%);
}
.page-hero p {
  margin: 0 0 10px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
}
.page-hero h1 {
  margin: 0;
  font: 600 clamp(38px, 5vw, 60px)/1.1 var(--serif);
  letter-spacing: -.03em;
}

/* ============ MAIN CONTENT ============ */
main {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 100px;
}
.content h2 {
  font: 600 35px/1.2 var(--serif);
  letter-spacing: -.02em;
  margin: 0 0 18px;
  color: var(--ink);
}
.content h2:not(:first-child) { margin-top: 64px; }
.content h3 {
  font: 600 22px/1.3 var(--serif);
  color: var(--primary);
  margin: 0 0 12px;
}
.content p {
  margin: 0 0 21px;
  color: var(--muted);
  font-size: 16px;
}
.content ul, .content ol {
  margin: 0 0 24px;
  padding-left: 22px;
  color: var(--muted);
}
.content ul { list-style: disc; }
.content ol { list-style: decimal; }
.content li { margin-bottom: 8px; }
.content a:not(.button) { color: var(--primary); font-weight: 600; border-bottom: 1px solid var(--line); transition: border-color var(--transition), color var(--transition); }
.content a:not(.button):hover { color: var(--accent); border-color: var(--accent); }

/* ============ VISION / MISSION ============ */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.vision-grid article {
  padding: 38px 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.vision-grid article:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vision-grid h2 { color: var(--primary); margin-top: 0; }
.vision-grid p { margin-bottom: 0; }

/* ============ LEAD IMAGE ============ */
.lead-image {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  margin: 0 0 42px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ============ PIONEER ============ */
.pioneer {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.pioneer img {
  width: 100%;
  background: var(--line-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.caption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 9px;
}

/* ============ STAFF TABLE ============ */
.staff-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-size: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.staff-table th {
  background: var(--primary);
  color: #fff;
  text-align: left;
  font-weight: 600;
  letter-spacing: .02em;
}
.staff-table th, .staff-table td {
  padding: 12px;
  border: 1px solid var(--line);
  vertical-align: middle;
}
.staff-table tr:nth-child(even) { background: var(--line-soft); }
.staff-table tr:hover { background: #fef3c7; }
.staff-table img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--line-soft);
  border: 2px solid var(--line);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 650px) {
  .page-hero { padding: 60px 24px 56px; }
  main { padding-top: 56px; }
  .vision-grid, .pioneer { grid-template-columns: 1fr; }
  .pioneer img { max-width: 300px; }
  .staff-table { font-size: 12px; }
  .staff-table th, .staff-table td { padding: 8px; }
  .staff-table img { width: 38px; height: 38px; }
}