/* Om oss — page-specific additions */
.hero-static { min-height: min(660px, 82vh); }
.hero-static .hero-inner { max-width: 740px; }
.hero-static h1 { font-size: clamp(40px, 5.2vw, 70px); }
.hero-still { position: absolute; inset: 0; z-index: -2; }
.hero-still img { width: 100%; height: 100%; object-fit: cover; object-position: 84% 50%; }
.nav-links a[aria-current="page"] { color: var(--white); border-bottom: 1.5px solid var(--gold); padding-bottom: 4px; }
.hero-data dd.wrap { white-space: normal; font-size: 22px; }

.who .split { align-items: start; }
.who h2 { max-width: 12ch; }
.who .prose p:first-of-type { font-family: var(--display); font-weight: 400; font-size: clamp(22px, 2vw, 27px); line-height: 1.35; letter-spacing: -0.01em; }

/* Locations — status is information, so it gets a label */
.places { display: grid; grid-template-columns: 1fr 1fr; gap: 34px clamp(28px, 4vw, 56px); margin-top: 36px; }
.place { border-top: 1px solid var(--ink); padding-top: 22px; }
.place h3 { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.place .status { color: var(--burgundy); }
.place address { font-style: normal; margin-top: 10px; line-height: 1.5; }
.place .links { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 16px; font-size: 15.5px; font-weight: 500; }
.place .links a { text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--gold); }
.place .links a:hover { text-decoration-color: currentColor; }
.upcoming { list-style: none; margin: 0; padding: 0; }
.upcoming li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-top: 1px solid var(--rule); font-size: 17px; }
.upcoming li:first-child { border-top: 0; padding-top: 0; }
.upcoming .status { color: var(--ink-soft); font-size: 15px; }

/* Steps — a real sequence, so it is numbered */
.steps { list-style: none; counter-reset: step; margin: 44px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 clamp(24px, 3vw, 48px); }
.steps li { counter-increment: step; border-top: 1px solid var(--ink); padding: 22px 0 32px; }
.steps li::before { content: counter(step); display: block; font-family: var(--display); font-weight: 600; font-size: 44px; line-height: 1; letter-spacing: -0.03em; color: var(--burgundy); margin-bottom: 18px; font-variant-numeric: tabular-nums; }
.steps h3 { margin-bottom: 10px; }
.steps p { font-size: 16.5px; line-height: 1.55; color: var(--ink-soft); max-width: 28ch; }
.steps-note { margin-top: 12px; max-width: 60ch; color: var(--ink-soft); }

/* Science band — same ground as the proof section on the front page */
.science { background: var(--ember); color: var(--white); overflow: hidden; }
.science .proof-text h2 { max-width: 14ch; }
.science .prose p { color: rgba(255,255,255,.82); }
.science .prose p + p { margin-top: 1em; }
.science .prose { margin-top: 26px; }
.science .text-link { display: inline-block; margin-top: 30px; font-size: 15px; }

/* FAQ — native details, no accordion library */
.faq { margin-top: 36px; max-width: 760px; }
.faq details { border-top: 1px solid var(--rule); }
.faq details:last-child { border-bottom: 1px solid var(--rule); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 20px 0; font-family: var(--display); font-weight: 500; font-size: 20px; letter-spacing: -0.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-weight: 400; font-size: 26px; line-height: 1; color: var(--burgundy); transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 22px; max-width: 60ch; color: var(--ink-soft); }

@media (max-width: 1000px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .places { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .steps li { padding-bottom: 24px; }
}
