/* Philosophy page — long-form narrative, styled as part of the city's
   world rather than a corporate About page. Reuses the site's tokens. */

.philosophy-page {
  min-height: 100svh;
  padding: 7rem var(--gutter) 6rem;
  background: var(--ink);
  display: flex;
  justify-content: center;
}

.philosophy-page__inner {
  max-width: 42rem;
  width: 100%;
}

.philosophy-page__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  color: var(--parchment);
  text-align: center;
  margin-bottom: 3.5rem;
}
html[lang="en"] .philosophy-page__title { font-weight: 500; }

.philosophy-block {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  margin-bottom: 3.2rem;
}
.philosophy-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.philosophy-block__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--amber);
  margin-bottom: 1.3rem;
}
html[lang="en"] .philosophy-block__heading { font-weight: 500; }

.philosophy-block p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.7vw, 1.05rem);
  line-height: 2.1;
  color: var(--muted);
  margin: 0 0 1.1rem;
}
.philosophy-block p:last-child { margin-bottom: 0; }

.philosophy-divider {
  width: 2.5rem;
  height: 1px;
  margin: 0 auto 3.2rem;
  background: linear-gradient(90deg, transparent, var(--amber-soft), transparent);
}

@media (prefers-reduced-motion: reduce) {
  .philosophy-block { opacity: 1; transform: none; }
}
