/* Inner pages — extends home.css */

.page--inner {
  padding-top: 4.5rem;
}

/* Hero + first screen always visible (no blank page if JS slow) */
.page--inner .page-hero,
.page--inner .page-hero.reveal {
  opacity: 1;
  transform: none;
}

.page-hero {
  padding: clamp(5rem, 12vh, 8rem) clamp(2rem, 5vw, 4rem) clamp(3rem, 8vh, 5rem);
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  max-width: none;
}

.page-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0;
  line-height: 1.65;
}

.section h2.section-heading--wide {
  max-width: none;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.two-col img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

.two-col h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  font-style: italic;
  margin: 0 0 1rem;
}

.two-col p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.two-col p strong {
  color: var(--text);
  font-weight: 500;
}

.section--alt {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}

.research-card {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.research-card .lead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
  margin: 0 0 1rem;
}

.research-card p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.research-card h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 1.5rem 0 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2rem;
}

.team-card {
  background: var(--bg);
  padding: 2rem 1.75rem;
  transition: background 0.35s var(--ease);
}

.team-card:hover {
  background: var(--bg-elevated);
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  margin: 0 0 0.75rem;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.text-stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 52rem;
}

.text-stack-item h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  font-style: italic;
  margin: 0 0 1rem;
}

.text-stack-item p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.text-stack-item p strong {
  color: var(--text);
  font-weight: 500;
}

.menu-overlay-nav a.is-current {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.page-hero--coming-soon {
  min-height: calc(100vh - 4.5rem - 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: none;
}

.page-hero--coming-soon h1 {
  font-family: var(--font-marquee);
  font-weight: 800;
  font-stretch: semi-expanded;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.coming-soon-cta {
  margin: 2rem 0 0;
  font-size: 0.95rem;
}

.coming-soon-cta a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.coming-soon-cta a:hover {
  opacity: 0.7;
}

@media (max-width: 900px) {
  .two-col,
  .research-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
