﻿:root {
  --ink: #18222f;
  --muted: #5d6876;
  --line: #d8dee6;
  --paper: #ffffff;
  --wash: #f4f7fa;
  --rice: #00205b;
  --bayou: #007a78;
  --sun: #c84c31;
  --leaf: #5f7f3a;
  --shadow: 0 14px 38px rgba(24, 34, 47, 0.11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body {
  margin: 0;
  background: var(--wash);
}

body.report-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #eef3f7;
}

a {
  color: var(--rice);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--bayou);
  text-decoration: underline;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.6rem 0.8rem;
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.site-header__inner,
.site-footer__inner,
.section,
.report-page__header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  min-width: 0;
}

.brand__seal {
  width: min(225px, 28.5vw);
  flex: 0 1 auto;
}

.brand__mark {
  width: min(225px, 22.5vw);
  flex: 0 1 auto;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  padding: 0.55rem 0.75rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.45rem 0.7rem;
  color: var(--ink);
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] {
  background: #e6edf5;
  color: var(--rice);
}

.site-nav a.is-disabled {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.58;
  pointer-events: none;
}

.hero {
  background: linear-gradient(110deg, rgba(0, 32, 91, 0.88), rgba(0, 122, 120, 0.78)), url("../images/FloodPlain2012.jpg") center/cover;
  color: #fff;
}

.hero__inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 460px;
  margin: 0 auto;
  padding: 5rem 0 4.5rem;
  display: grid;
  align-content: end;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-title h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p,
.page-title p {
  max-width: 760px;
  margin: 1.2rem 0 0;
  font-size: 1.12rem;
}

.hero__actions,
.card__actions,
.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--rice);
  border-radius: 6px;
  background: var(--rice);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button:hover,
.button:focus {
  color: #fff;
  background: #163d78;
  text-decoration: none;
}

.button--light {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.12);
}

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

.button--secondary:hover,
.button--secondary:focus {
  color: var(--rice);
  background: #edf3f8;
}

.page-title--worldcup {
  background: #00205b;
}

.worldcup-button-bar {
  position: sticky;
  top: 0;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 32px));
  margin: 1rem auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(24, 34, 47, 0.08);
}

.worldcup-button-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  border-right: 1px solid var(--line);
  padding: 0.85rem 1rem;
  color: var(--rice);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.worldcup-button-bar a:last-child {
  border-right: 0;
}

.worldcup-button-bar a:hover,
.worldcup-button-bar a:focus {
  background: #edf3f8;
  color: #163d78;
  text-decoration: none;
}

.worldcup-platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.worldcup-overview,
.platform-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.worldcup-overview > div:first-child,
.platform-detail > div:first-child,
.worldcup-panel-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  background: var(--paper);
  box-shadow: 0 4px 18px rgba(24, 34, 47, 0.06);
}

.worldcup-overview h2,
.platform-detail h2,
.worldcup-panel-grid h3 {
  margin: 0 0 0.7rem;
  color: var(--rice);
}

.worldcup-overview p,
.platform-detail p,
.worldcup-panel-grid li {
  color: var(--muted);
  line-height: 1.65;
}

.worldcup-facts {
  display: grid;
  gap: 0.75rem;
}

.worldcup-facts div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: #edf3f8;
}

.worldcup-facts strong,
.worldcup-facts span {
  display: block;
}

.worldcup-facts strong {
  color: var(--rice);
  font-size: 0.9rem;
}

.worldcup-facts span {
  margin-top: 0.25rem;
  color: #334155;
}

.worldcup-platform {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  background: var(--paper);
  box-shadow: 0 4px 18px rgba(24, 34, 47, 0.06);
}

.worldcup-platform h2 {
  margin: 0 0 0.7rem;
  color: var(--rice);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.15;
}

.worldcup-platform p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.worldcup-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.worldcup-panel-grid ul {
  margin: 0;
  padding-left: 1.15rem;
}

.best-practice-subnav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}

.best-practice-subnav a,
.best-practice-section-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 4px 18px rgba(24, 34, 47, 0.06);
}

.best-practice-subnav a {
  display: grid;
  align-content: start;
  min-height: 138px;
  padding: 1rem;
  color: var(--ink);
  text-decoration: none;
}

.best-practice-subnav a:hover,
.best-practice-subnav a:focus,
.best-practice-subnav a[aria-current="page"] {
  border-color: rgba(0, 32, 91, 0.32);
  background: #edf3f8;
  color: var(--ink);
  text-decoration: none;
}

.best-practice-subnav strong,
.best-practice-subnav span {
  display: block;
}

.best-practice-subnav strong {
  color: var(--rice);
  line-height: 1.2;
}

.best-practice-subnav span {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.best-practice-section-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.best-practice-section-card:hover,
.best-practice-section-card:focus {
  border-color: rgba(0, 32, 91, 0.32);
  color: inherit;
  text-decoration: none;
}

.best-practice-section-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #edf3f8;
}

.best-practice-section-card div {
  padding: 1rem;
}

.best-practice-section-card h3 {
  margin: 0 0 0.55rem;
  color: var(--rice);
}

.best-practice-section-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.report-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.report-image-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 4px 18px rgba(24, 34, 47, 0.06);
}

.report-thumb {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0;
  background: #edf3f8;
  cursor: zoom-in;
  text-align: left;
}

.report-thumb:focus-visible {
  outline: 3px solid rgba(0, 122, 120, 0.34);
  outline-offset: -3px;
}

.report-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  background: #edf3f8;
}

.report-thumb__label {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  background: rgba(0, 32, 91, 0.88);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.report-figure figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--muted);
  line-height: 1.45;
}

.report-figure figcaption strong,
.report-figure figcaption span {
  display: block;
}

.report-figure figcaption strong {
  color: var(--rice);
}

.report-figure figcaption span {
  margin-top: 0.3rem;
}

.report-extract {
  margin: 0.75rem 0 0;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.55;
}

.report-lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(12, 18, 27, 0.78);
}

.report-lightbox.is-open {
  display: flex;
}

.report-lightbox__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  width: min(1180px, 100%);
  max-height: calc(100vh - 2rem);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.report-lightbox__image-wrap {
  min-height: 0;
  overflow: auto;
  background: #111827;
}

.report-lightbox__image {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}

.report-lightbox__copy {
  min-height: 0;
  overflow: auto;
  padding: 1.1rem;
}

.report-lightbox__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.report-lightbox__title {
  margin: 0;
  color: var(--rice);
  line-height: 1.2;
}

.report-lightbox__close {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  padding: 0.45rem 0.65rem;
}

.report-lightbox__description,
.report-lightbox__extract {
  color: var(--muted);
  line-height: 1.6;
}

.report-lightbox__extract {
  border-top: 1px solid var(--line);
  margin-top: 1rem;
  padding-top: 1rem;
  color: #334155;
}

.best-practice-callout {
  margin: 1rem 0;
  border: 1px solid rgba(0, 122, 120, 0.22);
  border-left: 5px solid var(--bayou);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  background: #eef8f7;
  color: #23413f;
}

.best-practice-callout p {
  margin: 0;
}

.urban-data-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.urban-data-feature__copy,
.urban-data-feature__image,
.urban-data-visual-grid figure {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 4px 18px rgba(24, 34, 47, 0.06);
}

.urban-data-feature__copy {
  padding: 1.3rem;
}

.urban-data-feature__copy h2 {
  margin: 0 0 0.7rem;
  color: var(--rice);
  font-size: clamp(1.55rem, 2.8vw, 2.55rem);
  line-height: 1.08;
}

.urban-data-feature__copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.urban-data-feature__image,
.urban-data-visual-grid figure {
  overflow: hidden;
  margin: 0;
}

.urban-data-feature__image img,
.urban-data-visual-grid img {
  display: block;
  width: 100%;
  height: auto;
  background: #f8fafc;
}

.urban-data-feature__image figcaption,
.urban-data-visual-grid figcaption {
  display: block;
  padding: 0.85rem 1rem 1rem;
  color: var(--muted);
  line-height: 1.45;
}

.urban-data-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.urban-data-visual-grid figcaption strong,
.urban-data-visual-grid figcaption span {
  display: block;
}

.urban-data-visual-grid figcaption strong {
  color: var(--rice);
}

.urban-data-visual-grid figcaption span {
  margin-top: 0.3rem;
}

.prediction-flyer-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 32, 91, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: #081a37;
  box-shadow: 0 18px 44px rgba(24, 34, 47, 0.12);
}

.prediction-flyer-hero__art {
  margin: 0;
  min-width: 0;
  background: #081a37;
}

.prediction-flyer-hero__art img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.prediction-flyer-hero__copy {
  display: grid;
  padding: clamp(1.25rem, 3vw, 2rem);
  color: #fff;
}

.prediction-flyer-hero__copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.05;
}

.prediction-flyer-hero__copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.prediction-flyer-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}

.prediction-flyer-hero__metrics div {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
}

.prediction-flyer-hero__metrics strong,
.prediction-flyer-hero__metrics span {
  display: block;
}

.prediction-flyer-hero__metrics strong {
  color: #ff8a1d;
  font-size: 1.45rem;
  line-height: 1;
}

.prediction-flyer-hero__metrics span {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 800;
}

.prediction-flyer-showcase {
  margin: 1rem 0;
}

.prediction-flyer-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 1rem;
  align-items: stretch;
}

.prediction-flyer-showcase figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 4px 18px rgba(24, 34, 47, 0.06);
}

.prediction-flyer-showcase img {
  display: block;
  width: 100%;
  height: auto;
  background: #f8fafc;
}

.prediction-flyer-showcase figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--muted);
  line-height: 1.45;
}

.unleash-deck-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 0;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(68, 150, 207, 0.22);
  border-radius: var(--radius);
  background: #4496cf;
  box-shadow: 0 18px 44px rgba(24, 34, 47, 0.12);
}

.unleash-deck-hero__art {
  margin: 0;
  min-width: 0;
  background: #4496cf;
}

.unleash-deck-hero__art img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: left center;
}

.unleash-deck-hero__copy {
  display: grid;
  align-content: center;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  background: #2f5139;
  color: #fff;
}

.unleash-deck-hero__copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.05;
}

.unleash-deck-hero__copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.87);
  line-height: 1.65;
}

.unleash-deck-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.unleash-deck-hero__pills span {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.unleash-deck-showcase {
  margin: 1rem 0;
}

.unleash-deck-showcase__wide,
.unleash-deck-showcase__grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 4px 18px rgba(24, 34, 47, 0.06);
}

.unleash-deck-showcase__wide {
  margin-bottom: 1rem;
}

.unleash-deck-showcase img {
  display: block;
  width: 100%;
  height: auto;
  background: #f8fafc;
}

.unleash-deck-showcase figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--muted);
  line-height: 1.45;
}

.unleash-deck-showcase figcaption strong,
.unleash-deck-showcase figcaption span {
  display: block;
}

.unleash-deck-showcase figcaption strong {
  color: var(--rice);
}

.unleash-deck-showcase figcaption span {
  margin-top: 0.3rem;
}

.unleash-deck-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.unleash-focal-map {
  margin: 1rem 0;
}

.unleash-focal-map__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.unleash-focal-card {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: var(--paper);
  box-shadow: 0 4px 18px rgba(24, 34, 47, 0.06);
}

.unleash-focal-card span {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: var(--rice);
  color: #fff;
  font-weight: 900;
}

.unleash-focal-card h3 {
  margin: 0 0 0.7rem;
  color: var(--rice);
  line-height: 1.15;
}

.unleash-focal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.unleash-focal-card--blue span {
  background: #1261a6;
}

.unleash-focal-card--green span {
  background: #267a32;
}

.unleash-focal-card--orange span {
  background: #d36f16;
}

.unleash-focal-card--purple span {
  background: #6642a3;
}

.paris-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 32, 91, 0.16);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 158, 115, 0.22), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, #eef6f5 52%, #fff 100%);
  box-shadow: 0 18px 44px rgba(24, 34, 47, 0.11);
}

.paris-feature::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(0, 32, 91, 0.08);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.paris-feature__content,
.paris-feature__panel {
  position: relative;
  z-index: 1;
}

.paris-feature h2 {
  max-width: 820px;
  margin: 0 0 0.75rem;
  color: var(--rice);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.05;
}

.paris-feature p {
  max-width: 780px;
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.7;
}

.paris-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.paris-feature__actions span {
  border: 1px solid rgba(0, 32, 91, 0.12);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--rice);
  font-weight: 800;
  font-size: 0.85rem;
}

.paris-feature__panel {
  display: grid;
  align-content: center;
  gap: 0.75rem;
}

.paris-feature__metric {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(0, 32, 91, 0.92);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 32, 91, 0.18);
}

.paris-feature__metric strong,
.paris-feature__metric span {
  display: block;
}

.paris-feature__metric strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.paris-feature__metric span {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.paris-week {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.paris-week__card {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: var(--paper);
  box-shadow: 0 4px 18px rgba(24, 34, 47, 0.06);
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.paris-week__card::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: #009e73;
}

.paris-week__card:hover,
.paris-week__card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(0, 32, 91, 0.28);
  box-shadow: 0 14px 30px rgba(24, 34, 47, 0.12);
  color: inherit;
  text-decoration: none;
}

.paris-week__day {
  display: inline-flex;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
  background: #edf3f8;
  color: var(--rice);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.paris-week h3 {
  margin: 0 1.5rem 0.5rem 0;
  color: var(--rice);
}

.paris-week p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.paris-week__cta {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--rice);
  font-size: 0.85rem;
  font-weight: 900;
}

.paris-theme-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.paris-theme-nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  background: var(--paper);
  color: var(--rice);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.paris-theme-nav a:hover,
.paris-theme-nav a:focus,
.paris-theme-nav a[aria-current="page"] {
  border-color: var(--rice);
  background: var(--rice);
  color: #fff;
}

.paris-theme-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 32, 91, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(24, 34, 47, 0.11);
}

.paris-theme-hero__copy {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.paris-theme-hero h2 {
  margin: 0 0 0.75rem;
  color: var(--rice);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.paris-theme-hero p {
  color: #334155;
  line-height: 1.7;
}

.paris-theme-hero img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.paris-theme-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.paris-theme-meta div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem;
  background: #edf3f8;
}

.paris-theme-meta strong,
.paris-theme-meta span {
  display: block;
}

.paris-theme-meta strong {
  color: var(--rice);
  font-size: 0.84rem;
}

.paris-theme-meta span {
  margin-top: 0.25rem;
  color: #334155;
}

.paris-theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.paris-theme-card,
.expert-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 4px 18px rgba(24, 34, 47, 0.06);
}

.paris-theme-card {
  padding: 1.15rem;
}

.paris-theme-card h3 {
  margin: 0 0 0.7rem;
  color: var(--rice);
}

.paris-theme-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.paris-theme-card li {
  color: var(--muted);
  line-height: 1.65;
}

.expert-section {
  margin-top: 2rem;
}

.expert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.expert-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
}

.expert-card img,
.expert-card__avatar {
  width: 108px;
  height: 132px;
  border-radius: var(--radius);
}

.expert-card img {
  object-fit: cover;
  background: #dfe7ee;
}

.expert-card__avatar {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(0, 32, 91, 0.96), rgba(0, 101, 161, 0.86)),
    #dfe7ee;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.paris-theme-hero__image--city {
  object-position: 42% 70%;
}

.paris-theme-hero__image--legacy {
  object-position: 52% 34%;
}

.paris-theme-hero__image--translation {
  object-position: 55% 58%;
}

.paris-theme-hero__image--memo {
  object-position: 55% 94%;
}

.expert-card h3 {
  margin: 0;
  color: var(--rice);
}

.expert-card__role {
  display: block;
  margin-top: 0.25rem;
  color: #334155;
  font-weight: 800;
}

.expert-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.expert-card__focus {
  display: inline-flex;
  margin-top: 0.85rem;
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  background: #edf3f8;
  color: var(--rice);
  font-size: 0.78rem;
  font-weight: 900;
}

.worldcup-source-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.worldcup-button-bar a[aria-current="page"] {
  background: var(--rice);
  color: #fff;
}

.section {
  padding: 3rem 0;
}

.section--tight {
  padding-top: 2rem;
}

.section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.section__heading h2 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.1;
}

.section__heading p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 4px 18px rgba(24, 34, 47, 0.06);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #dfe7ee;
}

.card__body {
  padding: 1.1rem;
}

.card h3 {
  margin: 0;
  font-size: 1.15rem;
}

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

.metric-band {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.metric {
  min-height: 116px;
  padding: 1.1rem;
  background: var(--paper);
}

.metric strong {
  display: block;
  color: var(--rice);
  font-size: 1.8rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-weight: 700;
}

.page-title {
  background: linear-gradient(120deg, var(--rice), var(--bayou));
  color: #fff;
}

.page-title__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 3.75rem 0;
}

.report-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 250px;
}

.report-card__media {
  background: #e1e9ef;
}

.report-card__media img {
  height: 100%;
  aspect-ratio: auto;
}

.report-card__body {
  padding: 1.3rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: #e9f1ee;
  color: #23513f;
  font-size: 0.84rem;
  font-weight: 800;
}

.callout {
  border-left: 5px solid var(--sun);
  padding: 1rem 1.1rem;
  background: #fff7f4;
  color: #573129;
}

.content-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 1.4rem;
  box-shadow: 0 4px 18px rgba(24, 34, 47, 0.06);
}

.content-block h2,
.content-block h3 {
  margin-top: 0;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.link-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.link-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.person-card img {
  aspect-ratio: 1 / 1;
  object-position: top center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 1rem;
}

.team-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.team-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 4px 18px rgba(24, 34, 47, 0.06);
}

.team-photo {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e6edf5;
  background: #dfe7ee;
  box-shadow: 0 8px 18px rgba(24, 34, 47, 0.12);
}

.team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-photo--initials {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rice), #0d7ca8);
}

.team-card h3 {
  margin: 0;
  color: var(--rice);
  font-size: 1.05rem;
}

.team-role {
  margin: 0.25rem 0 0;
  color: #334155;
  font-weight: 800;
  line-height: 1.35;
}

.team-bio {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.team-link {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  font-weight: 800;
}

.team-link a {
  color: var(--rice);
  text-decoration: none;
}

.team-link a:hover,
.team-link a:focus {
  text-decoration: underline;
}

.report-toolbar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.report-toolbar__inner {
  width: min(1400px, calc(100% - 24px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.report-title {
  min-width: 0;
}

.report-title p,
.report-title h1 {
  margin: 0;
}

.report-title p {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.report-title h1 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.report-container {
  flex: 1 1 auto;
  min-height: 620px;
  height: calc(100vh - 69px);
  background: var(--paper);
}

#ia-report-container {
  width: 100%;
  height: 100%;
}

.noscript-message {
  padding: 2rem;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.site-footer {
  background: var(--ink);
  color: #dce4ea;
}

.site-footer__inner {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer a {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.visualization-shell {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1rem;
  align-items: start;
}

.control-panel,
.chart-panel,
.table-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 4px 18px rgba(24, 34, 47, 0.06);
}

.control-panel {
  position: sticky;
  top: 1rem;
  padding: 1rem;
}

.control-panel label {
  display: block;
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.control-panel select,
.control-panel input {
  display: block;
  width: 100%;
  min-height: 40px;
  margin-top: 0.32rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.45rem 0.55rem;
  color: var(--ink);
  background: #fff;
}

.chart-panel {
  min-width: 0;
  padding: 1rem;
}

.chart-summary {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-weight: 800;
}

.chart-wrap {
  min-height: 420px;
  overflow: auto;
}

.visualization-chart {
  width: 100%;
  min-width: 640px;
  height: auto;
  background: #fbfcfd;
  border: 1px solid #e5ebf1;
  border-radius: 6px;
}

.grid-line,
.grid-ring {
  stroke: #dce4eb;
  stroke-width: 1;
  fill: none;
}

.axis-line {
  stroke: #778393;
  stroke-width: 1.5;
}

.axis-label,
.radar-label {
  fill: #415062;
  font-size: 13px;
  font-weight: 700;
}

.bubble-point {
  fill: rgba(0, 122, 120, 0.46);
  stroke: #005f61;
  stroke-width: 1.2;
}

.bubble-point:hover {
  fill: rgba(200, 76, 49, 0.68);
}

.radar-area {
  fill-opacity: 0.18;
  stroke-width: 2.5;
}

.radar-dot {
  stroke: #fff;
  stroke-width: 1.5;
}

.rank-bar {
  stroke-width: 1;
}

.bar-good {
  fill: rgba(0, 122, 120, 0.78);
  stroke: #005f61;
}

.bar-mid {
  fill: rgba(95, 127, 58, 0.72);
  stroke: #4d6730;
}

.bar-neutral {
  fill: rgba(0, 32, 91, 0.62);
  stroke: #00205b;
}

.bar-label,
.bar-value {
  fill: #334155;
  font-size: 12px;
  font-weight: 700;
}

.table-panel {
  grid-column: 1 / -1;
  overflow: auto;
}

.data-source-note {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.data-source-note span {
  margin: 0 0.55rem;
  color: #9aa7b5;
}

.visualization-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.visualization-table th,
.visualization-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0.8rem;
  text-align: left;
  vertical-align: top;
}

.visualization-table th {
  background: #edf3f8;
  color: #334155;
  font-size: 0.82rem;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .site-header__inner {
    min-height: auto;
    padding: 0.8rem 0;
    align-items: flex-start;
  }

  .brand {
    gap: 0.7rem;
  }

.brand__seal {
  width: min(210px, 66vw);
}

.brand__mark {
  width: min(180px, 43.5vw);
}

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    margin-top: 0.7rem;
    justify-content: stretch;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-nav a {
    width: 100%;
  }

  .hero__inner {
    min-height: 420px;
    padding: 4rem 0 3.25rem;
  }

  .grid--3,
  .grid--4,
  .grid--2,
  .metrics,
  .report-card {
    grid-template-columns: 1fr;
  }

  .section__heading {
    display: block;
  }

  .section__heading p {
    margin-top: 0.6rem;
  }

  .report-card__media img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .report-toolbar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.8rem 0;
  }

  .worldcup-button-bar,
  .worldcup-platforms,
  .worldcup-overview,
  .platform-detail,
  .worldcup-panel-grid,
  .best-practice-subnav,
  .report-image-grid,
  .report-image-grid--two,
  .report-lightbox__panel,
  .urban-data-feature,
  .urban-data-visual-grid,
  .prediction-flyer-hero,
  .prediction-flyer-showcase__grid,
  .unleash-deck-hero,
  .unleash-deck-showcase__grid,
  .unleash-focal-map__grid,
  .paris-feature,
  .paris-week,
  .paris-theme-hero,
  .paris-theme-meta,
  .paris-theme-grid,
  .expert-grid,
  .expert-card {
    grid-template-columns: 1fr;
  }

  .paris-theme-hero img {
    min-height: 220px;
  }

  .expert-card {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .expert-card img,
  .expert-card__avatar {
    width: 86px;
    height: 108px;
  }

  .worldcup-button-bar a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .worldcup-button-bar a:last-child {
    border-bottom: 0;
  }

  .report-container {
    height: calc(100vh - 132px);
  }

  .visualization-shell {
    grid-template-columns: 1fr;
  }

  .control-panel {
    position: static;
  }
}

@media print {
  body {
    background: #fff;
    color: #000;
  }

  .skip-link,
  .nav-toggle,
  .site-nav,
  .control-panel,
  .site-footer {
    display: none !important;
  }

  .site-header,
  .page-title,
  .section {
    background: #fff;
  }

  .site-header__inner,
  .section,
  .page-title__inner {
    width: 100%;
  }

  .site-header__inner {
    min-height: 60px;
  }

.brand__seal {
  width: 195px;
}

.brand__mark {
  width: 270px;
}

  .page-title {
    border: 0;
    padding: 0.4rem 0 0.8rem;
  }

  .page-title h1 {
    color: #000;
  }

  .visualization-shell {
    display: block;
  }

  .chart-panel,
  .table-panel {
    border: 1px solid #999;
    box-shadow: none;
    break-inside: avoid;
  }

  .chart-wrap {
    min-height: 0;
    overflow: visible;
  }

  .visualization-chart {
    min-width: 0;
    width: 100%;
  }

  .table-panel {
    margin-top: 1rem;
  }
}

