/* Where Are the Christians? — cinematic documentary companion */

:root {
  color-scheme: dark;

  --bg: #0e1114;
  --bg-2: #171b1f;
  --bg-3: #1c2126;
  --rule: #30363d;
  --text: #f0ece3;
  --text-muted: #9ca3a9;
  --text-dim: #6e757b;
  --water: #17252d;
  --accent: #d9aa52;
  --accent-soft: rgba(217, 170, 82, 0.14);
  --on-accent: #0e1114;
  --map-bg: #171b1f;

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --font-mono: "DM Mono", "Courier New", monospace;

  --nav-h: 64px;
  --wrap: 1120px;
  --wrap-narrow: 720px;
  --explore-w: 360px;
  --space: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

html.presentation {
  scroll-behavior: auto;
  scroll-padding-top: 0;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 2000;
  background: var(--bg-2);
  color: var(--text);
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--rule);
}

.skip-link:focus {
  top: 12px;
}

/* --- Nav --- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 28px;
  background: rgba(14, 17, 20, 0.92);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(10px);
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-shrink: 0;
  gap: 4px 18px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 8px 0;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

/* --- Layout --- */

.wrap {
  width: min(100% - 48px, var(--wrap));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(100% - 48px, var(--wrap-narrow));
  margin-inline: auto;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.lede {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
}

hr.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* --- Hero --- */

.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 96px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8.4vw, 6.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  max-width: min(14ch, 100%);
  margin-bottom: 28px;
}

.hero-support {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 28ch;
  margin-bottom: 36px;
}

.hero-stat {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: border-color 160ms var(--ease), color 160ms var(--ease), background 160ms var(--ease);
}

.btn:hover {
  border-color: var(--text-muted);
}

.btn-accent {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-soft);
}

.btn[aria-disabled="true"] {
  color: var(--text-dim);
  border-color: var(--rule);
  cursor: not-allowed;
  pointer-events: none;
}

.btn-soon {
  color: var(--text-dim);
  border-style: dashed;
}

/* --- Editorial sections --- */

.section,
.map-section,
.stats-section {
  scroll-margin-top: var(--nav-h);
}

.section {
  padding: 96px 0;
}

.section-question {
  padding: 80px 0 72px;
}

.question-copy p {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-bottom: 18px;
}

.question-copy p:last-child {
  margin-bottom: 0;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Map --- */

.map-section {
  position: relative;
  background: var(--map-bg);
}

.map-stage {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 560px;
  background: var(--map-bg);
  overflow: hidden;
}

#church-map {
  height: 100%;
  width: 100%;
  background: var(--map-bg);
}

.map-chrome {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 500;
  display: flex;
  gap: 8px;
}

.map-chrome .explore-toggle {
  background: rgba(14, 17, 20, 0.9);
  color: var(--text);
  border-color: var(--rule);
}

.explore {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(100%, var(--explore-w));
  background: rgba(14, 17, 20, 0.94);
  border-right: 1px solid var(--rule);
  z-index: 600;
  display: flex;
  flex-direction: column;
  transform: translateX(-102%);
  transition: transform 280ms var(--ease);
  backdrop-filter: blur(12px);
}

.explore.open {
  transform: translateX(0);
}

.explore-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--rule);
}

.explore-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.explore-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.explore-close,
.explore-toggle {
  min-height: 40px;
}

.explore-body {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--rule) transparent;
}

.explore-section {
  padding: 16px 18px;
  border-bottom: 1px solid var(--rule);
}

.filter-label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.search-input {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--text);
  outline: none;
}

.search-input:focus {
  border-color: var(--accent);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  padding: 6px 9px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.chip.active {
  border-color: var(--accent);
  color: var(--text);
  background: var(--accent-soft);
}

.church-list {
  display: flex;
  flex-direction: column;
}

.church-card {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 12px 0;
  cursor: pointer;
  color: var(--text);
}

.church-card:hover,
.church-card.active {
  color: var(--text);
}

.church-card.active .church-title {
  color: var(--accent);
}

.church-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
}

.church-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.empty-note {
  font-size: 13px;
  color: var(--text-muted);
}

.explore-backdrop {
  display: none;
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(14, 17, 20, 0.28);
  z-index: 550;
  cursor: pointer;
}

.explore-backdrop.visible {
  display: block;
}

.leaflet-container {
  background: var(--map-bg);
  font-family: var(--font-body);
}

.leaflet-tile-pane {
  filter: saturate(0.15) brightness(0.68) contrast(1.08);
}

.leaflet-control-zoom {
  border: 1px solid var(--rule) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
}

.leaflet-control-zoom a {
  background: var(--bg-2) !important;
  color: var(--text-muted) !important;
  border-bottom: 1px solid var(--rule) !important;
  width: 32px !important;
  height: 32px !important;
  line-height: 32px !important;
}

.leaflet-control-attribution {
  background: rgba(14, 17, 20, 0.72) !important;
  color: var(--text-dim) !important;
  font-size: 9px !important;
  padding: 2px 6px !important;
}

.leaflet-control-attribution a {
  color: var(--text-muted) !important;
}

.church-marker {
  background: none !important;
  border: none !important;
}

.church-dot {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  border: 1px solid rgba(14, 17, 20, 0.7);
  box-shadow: 0 0 0 1px rgba(217, 170, 82, 0.22);
}

.leaflet-popup-content-wrapper {
  background: var(--bg-2) !important;
  border: 1px solid var(--rule) !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4) !important;
  padding: 0 !important;
  min-width: 240px;
  max-width: 320px;
}

.leaflet-popup-content {
  margin: 0 !important;
  color: var(--text) !important;
}

.leaflet-popup-tip-container {
  display: none;
}

.leaflet-popup-close-button {
  color: var(--text-muted) !important;
}

.popup-inner {
  overflow: hidden;
}

.popup-photo {
  width: 100%;
  max-height: 140px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--rule);
}

.popup-header,
.popup-body {
  padding: 12px 14px;
}

.popup-header {
  border-bottom: 1px solid var(--rule);
}

.popup-denom {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.popup-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.popup-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  font-size: 13px;
}

.pg-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-top: 3px;
}

.pg-value {
  color: var(--text-muted);
}

/* --- Stats --- */

.stats-section {
  padding: 120px 0;
}

.stat-block {
  margin-bottom: 72px;
}

.stat-block:last-of-type {
  margin-bottom: 40px;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--text);
}

.stat-number.dominant {
  font-size: clamp(6rem, 18vw, 11rem);
}

.stat-number.secondary {
  font-size: clamp(3.2rem, 9vw, 5.6rem);
}

.stat-number.tertiary {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
}

.stat-label {
  display: block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 36ch;
  line-height: 1.5;
}

.stat-note {
  margin-top: 56px;
  font-size: 13px;
  color: var(--text-dim);
  max-width: 52ch;
  line-height: 1.6;
}

.stat-note a {
  color: var(--text-muted);
}

.presentation-stats {
  display: none;
}

html.presentation .presentation-stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(24px, 4.2vh, 96px);
  position: absolute;
  left: clamp(28px, 3.6vw, 140px);
  top: 0;
  bottom: 48px;
  z-index: 1500;
  max-width: min(38vw, 880px);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

html.presentation.show-stats .presentation-stats {
  opacity: 1;
  visibility: visible;
}

.film-stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--text);
  text-shadow: 0 1px 18px rgba(14, 17, 20, 0.55);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.film-stat:first-child .film-stat-number {
  font-size: clamp(4.2rem, 7.2vw, 17rem);
}

.film-stat:nth-child(2) .film-stat-number {
  font-size: clamp(2.6rem, 4.4vw, 10.5rem);
}

.film-stat:nth-child(3) .film-stat-number {
  font-size: clamp(2rem, 3.2vw, 7.5rem);
  letter-spacing: 0.02em;
}

.film-stat-label {
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.85vw, 22px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 28ch;
  line-height: 1.45;
}

.film-stat:first-child .film-stat-label {
  color: var(--accent);
}

/* --- Film / about / map yours --- */

.film-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px 64px;
  align-items: start;
}

.film-frame {
  background: var(--bg-2);
  border: 1px solid var(--rule);
  aspect-ratio: 2 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.film-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
}

.film-soon {
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-top: 1px solid var(--rule);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.prose {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 58ch;
}

.prose p + p,
.prose ul {
  margin-top: 1em;
}

.prose ul {
  padding-left: 1.1em;
}

.credit {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.closing-lines {
  margin: 48px 0 8px;
}

.closing-lines p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.method-list {
  list-style: none;
  margin-top: 36px;
  border-top: 1px solid var(--rule);
}

.method-list li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
}

.method-list dt,
.method-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-top: 4px;
}

.method-list dd,
.method-body {
  color: var(--text-muted);
}

.map-yours-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 28px;
  max-width: 12ch;
}

.future-note {
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-dim);
  max-width: 48ch;
}

/* --- Footer --- */

.site-footer {
  padding: 48px 0 40px;
  border-top: 1px solid var(--rule);
}

.footer-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.footer-credit {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
}

.footer-atlas {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 14px;
}

.footer-atlas a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-atlas a:hover {
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  margin-top: 24px;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dim);
}

.footer-links a:hover {
  color: var(--text);
}

/* --- Presentation / film mode --- */

html.presentation,
html.presentation body {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  margin: 0;
  background: var(--map-bg);
  user-select: none;
  -webkit-user-select: none;
}

html.presentation body {
  overscroll-behavior: none;
}

html.presentation .site-nav,
html.presentation .skip-link,
html.presentation .hero,
html.presentation .section-question,
html.presentation .stats-section,
html.presentation .film-section,
html.presentation .about-section,
html.presentation .map-yours-section,
html.presentation .site-footer,
html.presentation .map-chrome,
html.presentation .explore,
html.presentation .explore-backdrop,
html.presentation .leaflet-control-zoom,
html.presentation hr.rule {
  display: none !important;
}

html.presentation main {
  padding: 0;
  margin: 0;
}

html.presentation .map-section,
html.presentation .map-stage {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;
  max-height: none;
  z-index: 1;
}

html.presentation #church-map,
html.presentation .leaflet-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: var(--map-bg);
  touch-action: none;
}

html.presentation.controls-hidden .leaflet-control-attribution {
  display: none !important;
}

html.presentation:not(.controls-hidden) .leaflet-control-attribution {
  background: rgba(14, 17, 20, 0.55) !important;
  color: var(--text-dim) !important;
  font-size: clamp(8px, 0.42vw, 14px) !important;
  margin: 0 !important;
}

html.presentation .church-dot {
  width: clamp(8px, 0.48vw, 18px);
  height: clamp(8px, 0.48vw, 18px);
  opacity: 0.92;
  animation: none;
  transform: none;
}

html.presentation.film-churches-hidden .church-dot {
  opacity: 0 !important;
  animation: none !important;
}

html.presentation.film-churches-revealing .church-dot {
  animation-name: film-dot-in;
  animation-duration: 0.4s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

@keyframes film-dot-in {
  from { opacity: 0; }
  to { opacity: 0.92; }
}

html.presentation .film-controls {
  display: none;
}

html.presentation:not(.controls-hidden) .film-controls {
  display: flex;
}

html.presentation.controls-hidden,
html.presentation.controls-hidden * {
  cursor: none !important;
}

.film-controls {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 32px;
  z-index: 2000;
  flex-direction: column;
  gap: 8px;
  width: min(252px, calc(100vw - 32px));
  padding: 10px 10px 8px;
  background: rgba(14, 17, 20, 0.88);
  border: 1px solid var(--rule);
  pointer-events: auto;
}

.film-controls-label,
.film-controls-hint {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0;
}

.film-controls-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.film-controls button {
  min-height: 32px;
  padding: 6px 8px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.film-controls button:hover:not(:disabled) {
  border-color: var(--text-muted);
}

.film-controls button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.film-controls button[data-film="hide-controls"] {
  grid-column: 1 / -1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html:not(.presentation) .church-dot {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .explore {
    transition: none;
  }
}

/* --- Responsive --- */

@media (max-width: 1280px) {
  .site-nav {
    padding: 0 16px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    padding: 8px 16px 16px;
  }

  .site-nav.open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
  }

  .wrap,
  .wrap-narrow {
    width: min(100% - 32px, var(--wrap));
  }

  .hero {
    min-height: calc(100svh - var(--nav-h));
    padding: 48px 0 64px;
  }

  .section,
  .stats-section {
    padding: 72px 0;
  }

  .map-stage {
    height: 78vh;
    min-height: 480px;
  }

  .film-layout,
  .method-list li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-block {
    margin-bottom: 56px;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: clamp(2.2rem, 14vw, 3.2rem);
  }

  .map-stage {
    height: 70vh;
  }
}

html.presentation .map-section,
html.presentation .map-stage {
  height: 100vh !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;
}
