:root {
  --blue: #055cad;
  --blue-dark: #06457f;
  --blue-deep: #062b50;
  --blue-soft: #eaf3fb;
  --blue-pale: #f4f8fc;
  --ink: #111c2b;
  --muted: #5e6b79;
  --line: #cfdae5;
  --paper: #ffffff;
  --canvas: #f7f9fb;
  --coral: #ee7065;
  --mint: #72b8a2;
  --header-height: 72px;
  --container: 1180px;
  --radius: 6px;
  --shadow: 0 18px 48px rgba(6, 43, 80, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
  line-break: strict;
  word-break: auto-phrase;
}

.keep-inline {
  white-space: nowrap;
}

body.menu-open {
  overflow: hidden;
}

body.dialog-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

.email-dialog {
  width: min(calc(100% - 32px), 520px);
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.email-dialog::backdrop {
  background: rgba(4, 24, 43, 0.72);
  backdrop-filter: blur(3px);
}

.email-dialog-inner {
  position: relative;
  padding: 42px;
}

.email-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--blue-deep);
  cursor: pointer;
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
}

.email-dialog .eyebrow {
  margin-bottom: 10px;
}

.email-dialog h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 28px;
  line-height: 1.45;
}

.email-dialog-address {
  margin: 22px 0 0;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.email-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.email-dialog-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.report-share-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.report-share-strip figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--blue-soft);
}

.report-scenes .report-scene {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--blue-soft);
}

.report-share-strip img,
.page-report .report-scenes .report-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-share-strip figcaption,
.page-report .report-scenes .report-scene figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 36px 16px 14px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 31, 66, 0.8));
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.report-scenes-title {
  margin: 68px 0 0;
  color: var(--blue-deep);
  font-size: 24px;
}

.page-report .report-scenes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 16px;
  margin-top: 24px;
}

.page-report .report-scenes .report-scene {
  grid-column: auto;
  grid-row: auto;
}

.page-report .report-scenes .report-scene:nth-child(6) img {
  object-position: center 34%;
}

.report-closing {
  color: var(--paper);
  background: var(--blue-deep);
}

.report-closing-media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--blue-deep);
}

.report-closing-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.report-closing-panel {
  background: var(--blue-deep);
}

.report-closing .closing-content {
  padding: 68px 0 72px;
}

@media (min-width: 740px) {
  .page-report .hero-copy .eyebrow {
    transform: translateY(10px);
  }
}

::selection {
  color: var(--paper);
  background: var(--blue);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--blue-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--paper);
  background: linear-gradient(to bottom, rgba(4, 31, 59, 0.5), rgba(4, 31, 59, 0));
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  color: var(--blue-deep);
  background: var(--paper);
  border-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.wordmark span {
  color: #8bc5f4;
}

.site-header.is-scrolled .wordmark span,
.site-header.menu-visible .wordmark span {
  color: var(--blue);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-report {
  padding-inline: 16px;
  color: var(--blue-deep);
  background: var(--paper);
  border-radius: 3px;
}

.site-header.is-scrolled .nav-report,
.site-header.menu-visible .nav-report {
  color: var(--paper);
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.mobile-break {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 82svh;
  overflow: hidden;
  color: var(--paper);
  background: var(--blue-deep);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(
    to bottom,
    rgba(4, 24, 43, 0.08) 0%,
    rgba(4, 24, 43, 0.12) 38%,
    rgba(4, 24, 43, 0.9) 100%
  );
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  animation: hero-settle 1200ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero--report .hero-media {
  object-position: center 42%;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--header-height) + 48px) 0 70px;
}

.hero + .section {
  padding-top: 72px;
}

.journey-nav {
  color: var(--blue-deep);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.journey-nav-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
}

.journey-nav a {
  position: relative;
  display: grid;
  min-height: 108px;
  padding: 25px 58px 25px 28px;
  align-content: center;
  border-right: 1px solid var(--line);
  transition: color 180ms ease, background-color 180ms ease;
}

.journey-nav a::after {
  position: absolute;
  top: 50%;
  right: 26px;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  content: "→";
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.journey-nav a:hover,
.journey-nav a:focus-visible {
  color: var(--blue);
  background: var(--blue-pale);
}

.journey-nav a:hover::after,
.journey-nav a:focus-visible::after {
  transform: translate(4px, -50%);
}

.journey-nav span {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.journey-nav strong {
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.55;
}

.journey-nav + .section {
  padding-top: 88px;
}

.hero-copy {
  max-width: 770px;
}

@media (min-width: 821px) {
  .hero {
    min-height: calc(100svh - 56px);
  }

  .hero-content {
    padding: calc(var(--header-height) + 38px) 0 46px;
  }

  .hero-copy {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    grid-template-areas:
      "eyebrow lead"
      "title meta"
      "title actions";
    column-gap: 72px;
    align-items: end;
    max-width: none;
  }

  .hero-copy .eyebrow {
    grid-area: eyebrow;
    margin-bottom: 14px;
  }

  .hero-copy h1 {
    grid-area: title;
  }

  .hero-copy .hero-lead {
    grid-area: lead;
    margin: 0;
  }

  .hero-copy .hero-meta {
    grid-area: meta;
    margin-top: 16px;
  }

  .hero-copy .hero-actions {
    grid-area: actions;
    margin-top: 24px;
  }

}

@media (min-width: 1101px),
  (min-width: 581px) and (max-width: 899px) and (max-height: 600px) and (min-aspect-ratio: 4 / 3),
  (min-width: 900px) and (max-width: 1100px) and (max-height: 900px) and (min-aspect-ratio: 6 / 5) {
  .hero--report .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
  }

  .hero--report .hero-copy {
    grid-template-areas:
      "eyebrow ."
      "title meta"
      "title actions";
  }

  .hero--report .hero-copy .hero-lead {
    position: absolute;
    top: calc(var(--header-height) + 54px);
    right: max(24px, calc((100vw - var(--container)) / 2));
    width: min(390px, 42vw);
    margin: 0;
    color: var(--blue-deep);
    text-align: right;
    text-shadow: 0 1px 12px rgba(255, 255, 255, 0.72);
  }
}

.eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #b8ddfb;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: clamp(56px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.03;
}

.hero--report h1 {
  max-width: 820px;
  font-size: clamp(50px, 4.17vw, 60px);
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.65;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 22px;
  color: #d4e8f8;
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  border: 1px solid transparent;
  border-radius: 3px;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--light {
  color: var(--blue-deep);
  background: var(--paper);
}

.button--ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.65);
}

.button--blue {
  color: var(--paper);
  background: var(--blue);
}

.button--blue:hover,
.button--blue:focus-visible {
  background: var(--blue-dark);
}

.button--line {
  color: var(--blue);
  border-color: var(--blue);
}

.arrow {
  margin-left: 18px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 1;
}

.section {
  padding: 108px 0;
}

.section--compact {
  padding: 78px 0;
}

.section--tint {
  background: var(--blue-pale);
}

.section--blue {
  color: var(--paper);
  background: var(--blue);
}

.section--deep {
  color: var(--paper);
  background: var(--blue-deep);
}

.section-head {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 44px;
  margin-bottom: 60px;
}

.section-index {
  padding-top: 8px;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.section--blue .section-index,
.section--deep .section-index {
  color: #a7d4f7;
}

.section-title {
  max-width: 830px;
  margin: 0;
  font-size: clamp(38px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.35;
}

.section-intro {
  max-width: 750px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.section--blue .section-intro,
.section--deep .section-intro {
  color: #d4e8f8;
}

.section--blue .section-title {
  color: var(--paper);
}

.section--blue .body-copy {
  color: #d8e9f6;
}

.section--blue .plain-callout {
  color: var(--paper);
  border-top-color: rgba(255, 255, 255, 0.28);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: start;
}

.statement {
  margin: 0;
  color: var(--blue-deep);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.5;
}

.body-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}

.body-copy p {
  margin: 0 0 22px;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.manifesto-line {
  margin-top: 54px;
  padding: 25px 0 0 30px;
  color: var(--blue);
  font-size: 21px;
  font-weight: 800;
  border-top: 1px solid var(--line);
  border-left: 5px solid var(--blue);
}

.region-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-top: 34px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.region-line strong {
  color: var(--blue);
}

.fact-band {
  padding: 0;
  background: var(--blue);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact {
  min-height: 190px;
  padding: 38px 30px;
  color: var(--paper);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.fact:last-child {
  border-right: 0;
}

.fact-label {
  color: #c2e1f8;
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.fact-value {
  display: block;
  margin-top: 8px;
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
}

.fact-note {
  display: block;
  margin-top: 8px;
  color: #d4e8f8;
  font-size: 13px;
  line-height: 1.6;
}

.experience-list {
  border-top: 1px solid var(--line);
}

.experience-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  border-bottom: 1px solid var(--line);
}

.experience-row:nth-child(even) .experience-media {
  order: 2;
}

.experience-row:nth-child(even) .experience-copy {
  order: 1;
}

.experience-media {
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
}

.experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-media--portrait img {
  object-position: center 34%;
}

.experience-media--landscape {
  min-height: 0;
  aspect-ratio: 3 / 2;
  align-self: center;
}

.experience-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 72px;
}

.day-label {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.experience-copy h3 {
  margin: 16px 0 0;
  color: var(--blue-deep);
  font-size: 34px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.experience-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 28px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid var(--blue);
}

.report-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 80px;
  align-items: center;
}

.report-promo h2 {
  max-width: 760px;
  margin: 0;
  font-size: 44px;
  line-height: 1.35;
}

.report-promo p {
  max-width: 700px;
  margin: 22px 0 0;
  color: #d4e8f8;
  font-size: 17px;
}

.report-promo-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.report-promo-actions .button {
  justify-content: space-between;
  width: 100%;
}

.site-footer {
  color: var(--paper);
  background: #041f3b;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  padding: 72px 0 58px;
}

.footer-brand {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.footer-message {
  max-width: 550px;
  margin: 18px 0 0;
  color: #b7d1e7;
  font-size: 15px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  align-content: start;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #d9e7f3;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: #89a9c2;
  font-size: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Report */
.report-lede {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(56px, 5vw, 80px);
  align-items: start;
}

.report-lede h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(38px, 3vw, 42px);
  line-height: 1.4;
}

.report-lede p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}

.participant-profile {
  margin-top: 72px;
}

.participant-profile-head {
  display: flex;
  gap: 24px;
  align-items: baseline;
  justify-content: space-between;
}

.participant-profile-head h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 22px;
}

.participant-profile-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.participant-profile .metric-row {
  margin-top: 18px;
}

.participant-profile .metric dd {
  display: flex;
  gap: 5px;
  align-items: baseline;
}

.participant-profile .metric dd small {
  margin: 0;
  color: var(--blue);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
}

.participant-profile .metric .metric-share {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  line-height: 1.4;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  min-height: 165px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.metric dd {
  margin: 6px 0 0;
  color: var(--blue);
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
}

.metric small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
}

.event-outline {
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outline-unit {
  min-height: 210px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.outline-unit:last-child {
  border-right: 0;
}

.outline-unit span {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.outline-unit strong {
  display: block;
  margin-top: 16px;
  color: var(--blue-deep);
  font-size: 25px;
  line-height: 1.45;
}

.outline-unit p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.themes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
  background: var(--blue);
}

.theme {
  min-height: 190px;
  padding: 38px 40px;
  color: var(--paper);
}

.theme + .theme {
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.theme span {
  color: #bbdef8;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.theme h3 {
  margin: 12px 0 0;
  font-size: 25px;
  line-height: 1.5;
}

.theme p {
  margin: 10px 0 0;
  color: #d9eaf7;
  font-size: 14px;
}

.themes--hierarchy {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  background: transparent;
  border: 1px solid var(--line);
}

.themes--hierarchy .theme {
  min-height: 260px;
  padding: 42px;
}

.theme--core {
  background: var(--blue-deep);
}

.themes--hierarchy .theme--annual {
  color: var(--blue-deep);
  background: var(--blue-pale);
  border-left-color: var(--line);
}

.theme--annual span {
  color: var(--blue);
}

.theme--annual p {
  color: var(--muted);
}

.day-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.day-heading h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 42px;
  line-height: 1.3;
}

.day-heading time {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.day-summary {
  max-width: 780px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.program-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
  margin-top: 56px;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.timeline strong {
  display: block;
  color: var(--blue-deep);
  font-size: 15px;
}

.timeline small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.photo-stack figure {
  margin: 0;
  overflow: hidden;
  background: var(--blue-soft);
}

.photo-stack figure:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.photo-stack figure:not(:first-child) {
  aspect-ratio: 4 / 3;
}

.photo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-stack .photo-contain {
  object-fit: contain;
  background: var(--blue-deep);
}

.photo-caption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}

.speaker-block {
  margin-top: 78px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.speaker-block h3 {
  margin: 0 0 34px;
  color: var(--blue-deep);
  font-size: 28px;
  text-wrap: balance;
}

.speakers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}

.speaker {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
}

.speaker-photo {
  width: 180px;
  height: 220px;
  object-fit: contain;
  object-position: center;
  background: #edf2f7;
}

.speaker h4 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 24px;
}

.speaker-role {
  margin: 8px 0 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.speaker-bio {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
}

.course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 62px;
}

.course-card {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.course-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.76 / 1;
  object-fit: contain;
  background: var(--blue-soft);
}

.course-card figcaption {
  padding: 22px 24px 26px;
}

.course-number {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.course-card h3 {
  margin: 8px 0 0;
  color: var(--blue-deep);
  font-size: 20px;
  line-height: 1.55;
  text-wrap: balance;
}

.fieldwork-scenes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 38px;
}

.fieldwork-scenes figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--blue-soft);
}

.fieldwork-scenes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fieldwork-scenes--single {
  grid-template-columns: minmax(0, 520px);
  justify-content: end;
}

.fieldwork-scenes--single figure {
  aspect-ratio: 3 / 4;
}

.share-strip {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 20px;
  margin-top: 20px;
}

.share-strip figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--blue-soft);
}

.share-strip figure:last-child {
  aspect-ratio: auto;
}

.share-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 78px;
  align-items: start;
}

.profile-lead {
  margin: 0;
  color: var(--blue-deep);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.5;
}

.profile-note {
  margin: 24px 0 0;
  color: var(--muted);
}

.bar-list {
  display: grid;
  gap: 28px;
}

.bar-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 9px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 700;
}

.bar-track {
  height: 10px;
  overflow: hidden;
  background: #dce7f0;
  border-radius: 5px;
}

.bar-fill {
  display: block;
  height: 100%;
  background: var(--blue);
  border-radius: 5px;
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: var(--line);
  border: 1px solid var(--line);
}

.profile-fact {
  min-height: 150px;
  padding: 28px;
  background: var(--paper);
}

.profile-fact span {
  color: var(--muted);
  font-size: 12px;
}

.profile-fact strong {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-size: 29px;
  line-height: 1.4;
}

.affiliations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  margin-top: 56px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.affiliations h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 18px;
}

.affiliations p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.survey-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: end;
}

.survey-score {
  font-family: "Manrope", sans-serif;
  font-size: 112px;
  font-weight: 800;
  line-height: 0.95;
}

.survey-score small {
  color: #a7d4f7;
  font-size: 34px;
}

.survey-summary strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 62px;
  line-height: 1.1;
}

.survey-summary span {
  color: #c8e1f4;
  font-size: 16px;
  font-weight: 700;
}

.survey-meta {
  margin: 25px 0 0;
  color: #9cc3e2;
  font-size: 11px;
}

.score-list {
  display: grid;
  gap: 28px;
  margin-top: 62px;
}

.score-row {
  display: grid;
  grid-template-columns: 310px 1fr 64px;
  gap: 24px;
  align-items: center;
}

.score-row span {
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 700;
}

.score-track {
  height: 14px;
  overflow: hidden;
  background: #dce7f0;
}

.score-fill {
  height: 100%;
  background: var(--blue);
}

.score-row strong {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 28px;
}

.quotes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 70px;
}

.quote {
  position: relative;
  min-height: 190px;
  margin: 0;
  padding: 34px 0 34px 50px;
  color: var(--paper);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.quote::before {
  position: absolute;
  top: 22px;
  left: 0;
  color: #5fa2e4;
  content: "“";
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1;
}

.quote-note {
  margin: 30px 0 0;
  color: #93b9d7;
  font-size: 11px;
  text-align: right;
}

.thanks-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 84px;
}

.thanks-group + .thanks-group {
  margin-top: 42px;
}

.thanks-group h3 {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 17px;
}

.thanks-person {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.thanks-person strong {
  display: block;
  color: var(--blue-deep);
  font-size: 21px;
}

.thanks-person span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.thanks-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.thanks-list li {
  min-height: 58px;
  padding: 15px 10px 15px 0;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}

.thanks-list li:nth-child(even) {
  padding-left: 24px;
}

.closing-photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 680px;
  overflow: hidden;
  color: var(--paper);
  background: var(--blue-deep);
}

.closing-photo::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: rgba(4, 24, 43, 0.48);
}

.closing-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.closing-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.closing-content h2 {
  max-width: 850px;
  margin: 0;
  font-size: 48px;
  line-height: 1.35;
}

.closing-content p {
  max-width: 680px;
  margin: 22px 0 0;
  color: #d6e7f4;
  font-size: 17px;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* Evergreen home */
.local-story {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 76px;
  align-items: start;
}

.local-photos {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 14px;
  align-items: end;
}

.local-photos figure {
  margin: 0;
  overflow: hidden;
  background: var(--blue-soft);
}

.local-photos figure:first-child {
  aspect-ratio: 4 / 3;
}

.local-photos figure:last-child {
  aspect-ratio: 3 / 4;
}

.local-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plain-callout {
  margin-top: 38px;
  padding: 26px 0 0;
  color: var(--blue-deep);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.75;
  border-top: 1px solid var(--line);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reason {
  min-height: 235px;
  padding: 32px 28px;
  border-top: 4px solid var(--blue);
  border-right: 1px solid var(--line);
}

.reason:nth-child(2) {
  border-top-color: var(--mint);
}

.reason:nth-child(3) {
  border-top-color: var(--coral);
}

.reason:last-child {
  border-right: 0;
}

.reason span {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.reason h3 {
  margin: 16px 0 0;
  color: var(--blue-deep);
  font-size: 19px;
  line-height: 1.55;
}

.reason p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.report-feature {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 640px;
  overflow: hidden;
  color: var(--paper);
  background: var(--blue-deep);
}

.report-feature::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: rgba(4, 24, 43, 0.56);
}

.report-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.report-feature-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 82px 0;
}

.report-feature h2 {
  margin: 0;
  font-size: clamp(40px, 3.3vw, 46px);
  line-height: 1.4;
}

.report-feature p {
  max-width: 650px;
  margin: 22px 0 0;
  color: #d8e9f6;
  font-size: 17px;
}

.activity-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.activity-step {
  min-height: 260px;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
}

.activity-step:last-child {
  border-right: 0;
}

.activity-step span {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.activity-step h3 {
  margin: 14px 0 0;
  color: var(--blue-deep);
  font-size: 21px;
}

.activity-step p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.regional-section {
  margin-top: 74px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.regional-section h2,
.regional-section h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 28px;
}

.regional-network .regional-section {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.regional-section > p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
}

.regional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 34px;
}

.regional-link {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.regional-link:hover,
.regional-link:focus-visible {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.regional-link img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.regional-copy {
  padding: 24px 26px 28px;
}

.regional-copy span {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.regional-copy h4 {
  margin: 8px 0 0;
  color: var(--blue-deep);
  font-size: 23px;
}

.regional-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.movie-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 70px;
  align-items: center;
}

.movie-copy h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 36px;
  line-height: 1.45;
}

.movie-copy p {
  margin: 20px 0 0;
  color: var(--muted);
}

.movie-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--blue-deep);
  border: 1px solid var(--line);
}

.movie-frame::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: rgba(4, 31, 59, 0.28);
  transition: background-color 180ms ease;
}

.movie-frame:has(.movie-play:hover)::after,
.movie-frame:has(.movie-play:focus-visible)::after {
  background: rgba(4, 31, 59, 0.16);
}

.movie-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.movie-frame:has(.movie-play:hover) .movie-poster,
.movie-frame:has(.movie-play:focus-visible) .movie-poster {
  transform: scale(1.02);
}

.movie-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 68px;
  height: 68px;
  padding: 0;
  color: var(--blue-deep);
  cursor: pointer;
  background: var(--paper);
  border: 0;
  border-radius: 50%;
  place-items: center;
  transform: translate(-50%, -50%);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.movie-play:hover,
.movie-play:focus-visible {
  color: var(--paper);
  background: var(--blue);
  transform: translate(-50%, -50%) scale(1.06);
}

.movie-play span {
  margin-left: 4px;
  font-size: 24px;
  line-height: 1;
}

.movie-frame iframe {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  border: 0;
}

.advisory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.advisor-profile {
  min-height: 210px;
  padding: 34px;
}

.advisor-profile + .advisor-profile {
  border-left: 1px solid var(--line);
}

.advisor-profile span {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.advisor-profile h3 {
  margin: 14px 0 0;
  color: var(--blue-deep);
  font-size: 24px;
}

.advisor-profile strong {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.advisor-profile p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.past-speakers-title {
  margin: 52px 0 22px;
  color: var(--blue-deep);
  font-size: 20px;
}

.past-speakers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.past-speaker {
  min-height: 145px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.past-speaker:nth-child(3n) {
  border-right: 0;
}

.past-speaker:nth-child(n + 4) {
  border-bottom: 0;
}

.past-speaker span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.past-speaker h4 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 18px;
}

.past-speaker p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.join-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.join-layout h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.45;
}

.join-layout .body-copy {
  color: #d5e6f3;
}

.join-points {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.join-points li {
  padding: 18px 0;
  color: var(--paper);
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.invitation-note {
  margin-top: 32px;
  padding-left: 20px;
  color: #c8e1f4;
  font-size: 13px;
  border-left: 4px solid #7fc2f4;
}

/* Short annual digest */
.course-list-simple {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.course-simple {
  min-height: 135px;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.course-simple:nth-child(even) {
  border-right: 0;
}

.course-simple:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.course-simple span {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.course-simple h3 {
  margin: 8px 0 0;
  color: var(--blue-deep);
  font-size: 19px;
  line-height: 1.55;
  text-wrap: balance;
}

.digest-note {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.report-timelines {
  margin-top: 92px;
  border-top: 1px solid var(--line);
}

.report-timelines--day2 {
  margin-top: 72px;
}

.report-timeline-day {
  padding: 68px 0;
  border-bottom: 1px solid var(--line);
}

.report-timeline-heading {
  display: flex;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
}

.report-timeline-heading h3 {
  margin: 12px 0 0;
  color: var(--blue-deep);
  font-size: 32px;
  line-height: 1.35;
}

.report-timeline-heading > time {
  padding-bottom: 5px;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.report-timeline-day .program-layout {
  margin-top: 38px;
}

.report-timeline-day .timeline li {
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 15px 0;
}

.report-timeline-day .photo-stack {
  align-content: start;
}

.photo-stack figure {
  position: relative;
}

.photo-stack--two figure,
.photo-stack--two figure:first-child,
.photo-stack--two figure:not(:first-child) {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.photo-stack figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 14px 12px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 31, 66, 0.76));
  font-size: 11px;
  font-weight: 700;
}

.day-one-scenes {
  margin-top: 74px;
  padding-top: 4px;
}

.scene-note {
  margin: 22px 0 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.report-scenes {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.report-scene {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--blue-soft);
}

.report-scene--wide {
  grid-row: 1 / 3;
}

.report-scene--portrait {
  grid-row: 1 / 3;
  grid-column: 3;
}

.report-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-scene--share img {
  object-position: left center;
}

.report-scene--wide img {
  object-position: 48% center;
}

.report-scene--portrait img {
  object-position: center 42%;
}

.report-scene figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 16px 14px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 31, 66, 0.78));
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.acknowledgement-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr);
  gap: 64px;
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.acknowledgement-group h3 {
  margin: 0 0 20px;
  color: var(--blue);
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.acknowledgement-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.acknowledgement-list--places {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
}

.acknowledgement-list li {
  min-width: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.acknowledgement-sub {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
}

.acknowledgement-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.digest-voices {
  margin-top: 92px;
  padding-top: 84px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.quotes-grid--three {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 36px;
}

.quotes-grid--three .quote {
  min-height: 230px;
  font-size: 18px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-settle {
  from {
    opacity: 0.6;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1040px) {
  .hero h1 {
    font-size: 56px;
  }

  .hero--report h1 {
    font-size: 50px;
  }

  .section-title,
  .day-heading h2,
  .report-lede h2 {
    font-size: 36px;
  }

  .experience-copy {
    padding: 52px;
  }

  .experience-media {
    min-height: 460px;
  }

  .experience-media--landscape {
    min-height: 0;
  }

  .program-layout,
  .profile-layout {
    gap: 50px;
  }

  .speaker {
    grid-template-columns: 140px 1fr;
  }

  .speaker-photo {
    width: 140px;
    height: 190px;
  }

  .thanks-layout {
    gap: 54px;
  }

  .local-story,
  .join-layout {
    gap: 54px;
  }

  .reason {
    padding-inline: 22px;
  }

  .past-speaker {
    padding-inline: 18px;
  }
}

@media (max-width: 820px) {
  .report-scenes {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 220px 280px;
  }

  .report-scene--wide {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .report-scene--portrait {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .acknowledgement-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .report-timelines {
    margin-top: 72px;
  }

  .report-timeline-day {
    padding: 56px 0;
  }

  :root {
    --header-height: 64px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 99;
    display: grid;
    visibility: hidden;
    padding: 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 52px;
    color: var(--blue-deep);
    font-size: 15px;
    font-weight: 800;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav a:last-child {
    color: var(--blue);
    border-bottom: 0;
  }

  .mobile-break {
    display: none;
  }

  .journey-nav-inner {
    grid-template-columns: 1fr;
  }

  .journey-nav a {
    min-height: 78px;
    padding: 17px 54px 17px 20px;
    border-bottom: 1px solid var(--line);
  }

  .journey-nav a:last-child {
    border-bottom: 0;
  }

  .journey-nav a::after {
    right: 20px;
  }

  .journey-nav + .section {
    padding-top: 68px;
  }

  .hero {
    min-height: 760px;
    background: var(--blue-deep);
  }

  .hero::after {
    background: rgba(4, 31, 59, 0.3);
  }

  .hero-media {
    bottom: auto;
    height: 48%;
    object-fit: contain;
    object-position: center top;
    background: var(--blue-deep);
  }

  .hero-content {
    padding: 390px 0 52px;
  }

  .hero + .section {
    padding-top: 58px;
  }

  .hero h1,
  .hero--report h1 {
    font-size: 44px;
    line-height: 1.08;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 18px;
  }

  .section {
    padding: 82px 0;
  }

  .section--compact {
    padding: 64px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 42px;
  }

  .section-index {
    padding-top: 0;
  }

  .about-layout,
  .report-promo,
  .report-lede,
  .program-layout,
  .profile-layout,
  .thanks-layout,
  .local-story,
  .movie-layout,
  .join-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .statement,
  .profile-lead {
    font-size: 30px;
  }

  .fact-grid,
  .metric-row {
    grid-template-columns: 1fr 1fr;
  }

  .fact:nth-child(2),
  .metric:nth-child(2) {
    border-right: 0;
  }

  .fact:nth-child(-n + 2),
  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .metric:nth-child(-n + 2) {
    border-bottom-color: var(--line);
  }

  .experience-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .experience-row:nth-child(even) .experience-media,
  .experience-row:nth-child(even) .experience-copy {
    order: initial;
  }

  .experience-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .experience-media--portrait {
    aspect-ratio: 4 / 5;
  }

  .experience-media--landscape {
    aspect-ratio: 3 / 2;
  }

  .experience-copy {
    padding: 42px 32px 52px;
  }

  .report-promo-actions {
    max-width: 480px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .event-outline {
    grid-template-columns: 1fr;
  }

  .outline-unit {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .outline-unit:last-child {
    border-bottom: 0;
  }

  .themes,
  .speakers,
  .course-grid,
  .quotes-grid,
  .quotes-grid--three {
    grid-template-columns: 1fr;
  }

  .theme + .theme {
    border-top: 1px solid rgba(255, 255, 255, 0.26);
    border-left: 0;
  }

  .speaker {
    grid-template-columns: 180px 1fr;
  }

  .speaker-photo {
    width: 180px;
    height: 220px;
  }

  .survey-score {
    font-size: 88px;
  }

  .score-row {
    grid-template-columns: 240px 1fr 60px;
  }

  .closing-photo {
    min-height: 620px;
  }

  .closing-content h2 {
    font-size: 40px;
  }

  .reason-grid,
  .past-speakers {
    grid-template-columns: 1fr 1fr;
  }

  .reason:nth-child(2) {
    border-right: 0;
  }

  .reason:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .past-speakers .past-speaker {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .past-speaker:nth-child(2n) {
    border-right: 0;
  }

  .past-speaker:nth-child(n + 5) {
    border-bottom: 0;
  }

  .report-feature h2 {
    font-size: 40px;
  }

  .activity-flow {
    grid-template-columns: 1fr;
  }

  .activity-step {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .activity-step:last-child {
    border-bottom: 0;
  }

  .advisor-profile {
    padding: 28px;
  }
}

/* iPad portrait is treated as its own editorial canvas, not a widened phone. */
@media (min-width: 581px) and (max-width: 1100px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 64px), var(--container));
  }

  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 99;
    display: grid;
    visibility: hidden;
    padding: 24px 32px;
    align-content: start;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 58px;
    color: var(--blue-deep);
    font-size: 16px;
    font-weight: 800;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav a:last-child {
    color: var(--blue);
    border-bottom: 0;
  }

  .hero {
    display: block;
    min-height: 0;
    background: var(--blue-deep);
  }

  .hero::after {
    display: none;
  }

  .hero-media,
  .hero--report .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center center;
    background: var(--blue-deep);
  }

  .hero-content {
    padding: 38px 0 48px;
    background: var(--blue-deep);
  }

  .hero-copy {
    display: block;
    max-width: 680px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 12px;
  }

  .hero h1,
  .hero--report h1 {
    font-size: clamp(42px, 5.3vw, 48px);
    line-height: 1.08;
  }

  .hero-lead {
    max-width: 580px;
    margin-top: 18px;
    font-size: 20px;
  }

  .hero-meta {
    margin-top: 18px;
    font-size: 12px;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-actions .button {
    min-height: 52px;
    padding-inline: 22px;
  }

  .journey-nav-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .journey-nav a {
    min-height: 96px;
    padding: 20px 46px 20px 20px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .journey-nav a::after {
    right: 18px;
  }

  .journey-nav strong {
    font-size: 14px;
  }

  .journey-nav + .section {
    padding-top: 84px;
  }

  .section {
    padding: 88px 0;
  }

  .section--compact {
    padding: 68px 0;
  }

  .section-head {
    grid-template-columns: 142px minmax(0, 1fr);
    gap: 32px;
    margin-bottom: 50px;
  }

  .section-title,
  .day-heading h2,
  .report-lede h2 {
    font-size: clamp(32px, 4.2vw, 38px);
  }

  .section-intro {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.85;
  }

  .about-layout,
  .report-lede,
  .program-layout,
  .profile-layout,
  .thanks-layout,
  .local-story,
  .movie-layout,
  .join-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .statement,
  .profile-lead {
    max-width: 660px;
    font-size: 32px;
  }

  .body-copy {
    font-size: 16px;
    line-height: 2;
  }

  .local-photos {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .themes,
  .speakers,
  .quotes-grid,
  .quotes-grid--three {
    grid-template-columns: 1fr;
  }

  .theme + .theme {
    border-top: 1px solid rgba(255, 255, 255, 0.26);
    border-left: 0;
  }

  .reason-grid,
  .past-speakers,
  .regional-grid,
  .advisory-grid,
  .course-list-simple {
    grid-template-columns: 1fr 1fr;
  }

  .reason:nth-child(2),
  .past-speaker:nth-child(2) {
    border-right: 0;
  }

  .reason:nth-child(-n + 2),
  .past-speaker:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .activity-flow {
    grid-template-columns: 1fr;
  }

  .activity-step {
    min-height: 0;
    padding: 30px 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .activity-step:last-child {
    border-bottom: 0;
  }

  .experience-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .experience-row:nth-child(even) .experience-media,
  .experience-row:nth-child(even) .experience-copy {
    order: initial;
  }

  .experience-media {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .experience-copy {
    padding: 44px 40px 50px;
  }

  .report-scenes {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 230px 340px;
  }

  .report-scene--wide {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .report-scene--portrait {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .report-feature {
    min-height: 600px;
  }

  .report-feature-content {
    max-width: 650px;
    padding: 70px 0;
  }

  .report-feature h2 {
    font-size: 40px;
  }

  .movie-copy h2,
  .join-layout h2 {
    font-size: 34px;
  }

  .closing-content h2 {
    font-size: 40px;
  }
}

/* Portrait tablets use the ceiling/window and floor areas, leaving faces clear. */
@media (min-width: 740px) and (max-width: 1100px) and (orientation: portrait) {
  .hero {
    display: flex;
    min-height: min(72svh, 720px);
    align-items: flex-end;
  }

  .hero::after {
    display: block;
    background: linear-gradient(
      to bottom,
      rgba(4, 24, 43, 0.32) 0%,
      rgba(4, 24, 43, 0.04) 32%,
      rgba(4, 24, 43, 0.08) 58%,
      rgba(4, 24, 43, 0.94) 100%
    );
  }

  .hero-media,
  .hero--report .hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center center;
  }

  .hero-content,
  .hero--report .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-height) + 22px) 0 42px;
    background: transparent;
  }

  .hero-copy {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    grid-template-areas:
      "eyebrow ."
      "title meta"
      "title actions";
    column-gap: 28px;
    align-items: end;
    max-width: none;
  }

  .hero-copy .eyebrow {
    grid-area: eyebrow;
  }

  .hero-copy h1 {
    grid-area: title;
  }

  .hero-copy .hero-meta {
    grid-area: meta;
  }

  .hero-copy .hero-actions {
    grid-area: actions;
  }

  .hero-lead {
    position: absolute;
    top: calc(var(--header-height) + 14px);
    right: 32px;
    z-index: 3;
    width: min(360px, 46vw);
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    text-align: right;
    text-shadow: 0 1px 12px rgba(4, 24, 43, 0.62);
  }

  .hero--report .hero-lead {
    color: var(--blue-deep);
    text-shadow: 0 1px 12px rgba(255, 255, 255, 0.82);
  }

  .hero--report .hero-copy {
    grid-template-columns: minmax(0, 1fr) 280px;
    grid-template-areas:
      ". meta"
      "eyebrow actions"
      "title actions";
    column-gap: 20px;
    row-gap: 8px;
  }

  .hero--report .hero-copy .eyebrow {
    margin-bottom: 0;
    align-self: end;
  }

  .hero--report h1 {
    padding-top: 0;
    border-top: 0;
    font-size: 40px;
  }
}

@media (max-width: 580px) {
  .report-scenes {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
    margin-top: 38px;
  }

  .report-scene,
  .report-scene--wide,
  .report-scene--portrait {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .report-scene--portrait {
    aspect-ratio: 3 / 4;
  }

  .acknowledgement-grid {
    gap: 36px;
    margin-top: 38px;
    padding-top: 22px;
  }

  .acknowledgement-list--places {
    grid-template-columns: 1fr;
  }

  .acknowledgement-list li {
    font-size: 15px;
  }

  .report-timelines {
    margin-top: 58px;
  }

  .report-timeline-day {
    padding: 46px 0;
  }

  .report-timeline-heading {
    display: grid;
    gap: 12px;
  }

  .report-timeline-heading h3 {
    font-size: 26px;
  }

  .report-timeline-heading > time {
    padding-bottom: 0;
  }

  .report-timeline-day .program-layout {
    gap: 32px;
    margin-top: 30px;
  }

  .report-timeline-day .timeline li {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .wordmark {
    font-size: 16px;
  }

  .hero {
    display: block;
    min-height: 0;
  }

  .hero::after {
    display: none;
  }

  .hero-media,
  .hero--report .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center center;
  }

  .hero-content {
    padding: 30px 0 40px;
    background: var(--blue-deep);
  }

  .hero + .section {
    padding-top: 48px;
  }

  .hero h1,
  .hero--report h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-meta {
    font-size: 11px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section-title,
  .day-heading h2,
  .report-lede h2 {
    font-size: 30px;
  }

  .section-intro,
  .day-summary {
    font-size: 16px;
  }

  .statement,
  .profile-lead {
    font-size: 27px;
  }

  .body-copy {
    font-size: 15px;
  }

  .manifesto-line {
    padding-left: 20px;
    font-size: 18px;
  }

  .fact-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .fact,
  .fact:nth-child(2),
  .metric,
  .metric:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .metric,
  .metric:nth-child(2) {
    border-bottom-color: var(--line);
  }

  .participant-profile {
    margin-top: 52px;
  }

  .participant-profile .metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .participant-profile .metric,
  .participant-profile .metric:nth-child(2) {
    min-height: 138px;
    padding: 22px 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .participant-profile .metric:nth-child(even) {
    border-right: 0;
  }

  .participant-profile .metric:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .participant-profile .metric dd {
    font-size: 36px;
  }

  .fact:last-child,
  .metric:last-child {
    border-bottom: 0;
  }

  .fact-value {
    font-size: 42px;
  }

  .experience-copy {
    padding-inline: 24px;
  }

  .experience-copy h3,
  .report-promo h2 {
    font-size: 29px;
  }

  .footer-links,
  .affiliations,
  .profile-facts,
  .thanks-list,
  .regional-grid,
  .advisory-grid,
  .course-list-simple {
    grid-template-columns: 1fr;
  }

  .thanks-list li:nth-child(even) {
    padding-left: 0;
  }

  .footer-bottom {
    display: grid;
  }

  .day-heading {
    display: grid;
    gap: 8px;
  }

  .timeline li {
    grid-template-columns: 88px 1fr;
    gap: 14px;
  }

  .photo-stack {
    grid-template-columns: 1fr;
  }

  .photo-stack figure,
  .photo-stack figure:first-child,
  .photo-stack figure:not(:first-child) {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .speaker {
    grid-template-columns: 112px 1fr;
    gap: 18px;
  }

  .speaker-photo {
    width: 112px;
    height: 154px;
  }

  .speaker h4 {
    font-size: 20px;
  }

  .speaker-block h3 {
    font-size: 27px;
  }

  .mobile-break {
    display: block;
  }

  .course-grid {
    gap: 18px;
  }

  .course-card h3 {
    font-size: 18px;
  }

  .fieldwork-scenes,
  .share-strip {
    grid-template-columns: 1fr;
  }

  .share-strip figure,
  .share-strip figure:last-child {
    aspect-ratio: 4 / 3;
  }

  .survey-hero {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .survey-score {
    font-size: 72px;
  }

  .survey-score small {
    font-size: 24px;
  }

  .survey-summary strong {
    font-size: 48px;
  }

  .score-row {
    grid-template-columns: 1fr 50px;
    gap: 12px;
  }

  .score-row .score-track {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .quote {
    min-height: 0;
    padding-left: 40px;
    font-size: 17px;
  }

  .quotes-grid--three .quote {
    min-height: 0;
    font-size: 17px;
  }

  .closing-photo {
    min-height: 660px;
    background: var(--blue-deep);
  }

  .local-photos {
    grid-template-columns: 1fr;
  }

  .local-photos figure:first-child,
  .local-photos figure:last-child {
    aspect-ratio: 4 / 3;
  }

  .reason-grid,
  .past-speakers {
    grid-template-columns: 1fr;
  }

  .reason,
  .reason:nth-child(2),
  .past-speakers .past-speaker {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .reason:last-child,
  .past-speaker:last-child {
    border-bottom: 0;
  }

  .report-feature {
    min-height: 700px;
  }

  .report-feature img {
    bottom: auto;
    height: 39%;
    object-fit: contain;
    object-position: center top;
  }

  .report-feature::after {
    background: rgba(4, 31, 59, 0.28);
  }

  .report-feature-content {
    padding: 310px 0 48px;
  }

  .report-feature h2 {
    font-size: 29px;
  }

  .regional-copy h4 {
    font-size: 21px;
  }

  .movie-copy h2,
  .join-layout h2 {
    font-size: 30px;
  }

  .advisor-profile + .advisor-profile {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .course-simple,
  .course-simple:nth-child(even),
  .course-simple:nth-last-child(-n + 2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .course-simple:last-child {
    border-bottom: 0;
  }

  .closing-photo img {
    bottom: auto;
    height: 42%;
    object-fit: contain;
    object-position: center top;
  }

  .closing-photo::after {
    background: rgba(4, 31, 59, 0.28);
  }

  .closing-content {
    padding: 330px 0 44px;
  }

  .closing-content h2 {
    font-size: 27px;
    line-height: 1.5;
  }

  .closing-actions {
    display: grid;
  }
}

/* Short landscape phones and small tablets keep the title in the first view. */
@media (min-width: 581px) and (max-width: 899px) and (max-height: 600px) and (min-aspect-ratio: 4 / 3) {
  .hero {
    display: flex;
    align-items: flex-end;
    min-height: max(100svh, 380px);
  }

  .hero::after {
    display: block;
    background: linear-gradient(
      to bottom,
      rgba(4, 24, 43, 0.12) 0%,
      rgba(4, 24, 43, 0.24) 38%,
      rgba(4, 24, 43, 0.94) 100%
    );
  }

  .hero-media,
  .hero--report .hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center 44%;
  }

  .hero-content {
    padding: calc(var(--header-height) + 22px) 0 30px;
    background: transparent;
  }

  .hero-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.82fr);
    grid-template-areas:
      "eyebrow lead"
      "title meta"
      "title actions";
    column-gap: 28px;
    align-items: end;
    max-width: none;
  }

  .hero-copy .eyebrow {
    grid-area: eyebrow;
  }

  .hero-copy h1 {
    grid-area: title;
  }

  .hero-copy .hero-lead {
    grid-area: lead;
    margin: 0;
  }

  .hero-copy .hero-meta {
    grid-area: meta;
  }

  .hero-copy .hero-actions {
    grid-area: actions;
  }

  .hero h1,
  .hero--report h1 {
    font-size: clamp(36px, 5.2vw, 44px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 16px;
  }

  .hero-actions .button {
    min-height: 46px;
    padding: 9px 14px;
    font-size: 12px;
  }
}

/* Short, wide tablets keep the image-led desktop rhythm without desktop density. */
@media (min-width: 900px) and (max-width: 1100px) and (max-height: 900px) and (min-aspect-ratio: 6 / 5) {
  .hero {
    display: flex;
    align-items: flex-end;
    min-height: calc(100svh - 24px);
  }

  .hero::after {
    display: block;
    background: linear-gradient(
      to bottom,
      rgba(4, 24, 43, 0.08) 0%,
      rgba(4, 24, 43, 0.18) 42%,
      rgba(4, 24, 43, 0.92) 100%
    );
  }

  .hero-media,
  .hero--report .hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center 43%;
  }

  .hero-content {
    padding: calc(var(--header-height) + 30px) 0 42px;
    background: transparent;
  }

  .hero-copy {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    grid-template-areas:
      "eyebrow lead"
      "title meta"
      "title actions";
    column-gap: 40px;
    align-items: end;
    max-width: none;
  }

  .hero-copy .eyebrow {
    grid-area: eyebrow;
  }

  .hero-copy h1 {
    grid-area: title;
  }

  .hero-copy .hero-lead {
    grid-area: lead;
    margin: 0;
  }

  .hero-copy .hero-meta {
    grid-area: meta;
  }

  .hero-copy .hero-actions {
    grid-area: actions;
  }

  .hero h1,
  .hero--report h1 {
    font-size: 50px;
  }

  .section-head {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 36px;
  }

  .about-layout,
  .report-lede,
  .local-story,
  .join-layout {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .movie-layout {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 48px;
  }

  .themes,
  .speakers,
  .quotes-grid,
  .quotes-grid--three {
    grid-template-columns: 1fr 1fr;
  }

  .theme + .theme {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.26);
  }

  .activity-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .activity-step {
    min-height: 250px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .activity-step:last-child {
    border-right: 0;
  }

  .experience-row {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .experience-row:nth-child(even) .experience-media {
    order: 2;
  }

  .experience-row:nth-child(even) .experience-copy {
    order: 1;
  }

  .experience-copy {
    padding: 38px;
  }

  .report-scenes {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-template-rows: repeat(2, minmax(210px, 1fr));
  }

  .report-scene--wide {
    grid-column: auto;
    grid-row: 1 / 3;
  }

  .report-scene--portrait {
    grid-column: 3;
    grid-row: 1 / 3;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .page-report .report-scenes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-closing-media {
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 580px) {
  .email-dialog-inner {
    padding: 36px 22px 24px;
  }

  .email-dialog h2 {
    padding-right: 28px;
    font-size: 24px;
  }

  .email-dialog-actions {
    display: grid;
  }

  .email-dialog-actions .button {
    width: 100%;
  }

  .report-share-strip,
  .page-report .report-scenes {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .report-scenes-title {
    margin-top: 52px;
    font-size: 21px;
  }

  .report-closing .closing-content {
    padding: 46px 0 50px;
  }
}

@media print {
  .site-header,
  .mobile-nav,
  .hero-actions,
  .closing-actions {
    display: none !important;
  }

  .hero,
  .closing-photo {
    min-height: 500px;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
