@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap");

:root {
  --black: #171716;
  --espresso: #201300;
  --espresso-soft: #2a1a02;
  --cream: #f4f0e1;
  --cream-warm: #fff9e0;
  --line: rgba(255, 249, 224, 0.78);
  --text: #181616;
  --muted: rgba(255, 249, 224, 0.78);
  --max: 1220px;
  --mobile-panel-top: 104px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream-warm);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 18px;
  line-height: 1.45;
  overflow-x: hidden;
}

body > main,
body > .footer {
  animation: page-in 520ms ease both;
}

html.theme-transition body,
html.theme-transition .site-header,
html.theme-transition .mobile-panel,
html.theme-transition .dark-band,
html.theme-transition .cream-band,
html.theme-transition .report-tools,
html.theme-transition .report-card img,
html.theme-transition .slide-card,
html.theme-transition .button,
html.theme-transition .theme-toggle,
html.theme-transition .theme-toggle-track,
html.theme-transition .theme-toggle-dot,
html.theme-transition .footer {
  transition-duration: 560ms !important;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
}

body.menu-open {
  overflow: hidden;
}

body.page-exit > main,
body.page-exit > .footer {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 240ms ease, transform 240ms ease;
}

body.page-cache-hold > main,
body.page-cache-hold > .footer {
  opacity: 0;
  transform: translateY(8px);
}

body.page-enter-replay > main,
body.page-enter-replay > .footer {
  animation: page-in-replay 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

figure {
  margin: 0;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 104px;
  padding: 0 48px;
  border-bottom: 1px solid rgba(255, 249, 224, 0.55);
  background: var(--black);
}

.brand {
  flex: 0 0 auto;
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--cream-warm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  width: 100%;
  font-size: 18px;
  white-space: nowrap;
}

.nav a,
.nav summary {
  cursor: pointer;
  opacity: 0.88;
  transition: opacity 160ms ease, color 160ms ease;
}

.nav a:hover,
.nav summary:hover,
.nav .active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.nav details {
  position: relative;
}

.nav summary {
  list-style: none;
}

.nav summary::-webkit-details-marker {
  display: none;
}

.nav summary::after {
  content: "v";
  display: inline-block;
  margin-left: 8px;
  font-size: 12px;
  transform: translateY(-1px);
}

.nav-menu {
  position: absolute;
  top: 36px;
  right: 0;
  display: grid;
  gap: 9px;
  min-width: 270px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 249, 224, 0.32);
  background: rgba(23, 23, 22, 0.98);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
  animation: menu-in 180ms ease both;
}

.nav-menu a {
  display: block;
  white-space: normal;
}

.socials {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 6px;
  font-size: 25px;
  font-weight: 700;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mail-icon {
  font-size: 23px;
  line-height: 1;
  transform: translateY(1px);
}

.mobile-menu-button,
.header-search-button,
.header-linkedin,
.mobile-panel,
.header-mobile-socials,
.report-search-toggle {
  display: none;
}

.hamburger-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 18px;
}

.hamburger-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 220ms ease, opacity 160ms ease, top 220ms ease;
}

.hamburger-icon span:nth-child(1) { top: 0; }
.hamburger-icon span:nth-child(2) { top: 8px; }
.hamburger-icon span:nth-child(3) { top: 16px; }

.mobile-menu-button[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.dark-band {
  background: var(--espresso);
  color: var(--cream-warm);
}

.cream-band {
  background: var(--cream);
  color: var(--text);
}

.wrap {
  width: min(1500px, calc(100% - 64px));
  margin: 0 auto;
}

.home-hero {
  padding: 58px 0 42px;
}

.home-hero h1,
.page-hero h1,
.report-hero h1 {
  margin: 0;
  font-size: clamp(58px, 7vw, 92px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0;
}

.home-hero hr,
.page-hero hr,
.report-hero hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 24px 0 46px;
}

.section-head {
  padding: 38px 0 42px;
}

.home-hero .section-head {
  padding: 0;
}

.section-head h2,
.home-hero h2 {
  margin: 0 0 10px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 500;
}

.section-head p,
.home-hero p {
  margin: 0;
  max-width: 1060px;
  font-size: 22px;
}

.report-tools {
  display: grid;
  grid-template-columns: max-content minmax(360px, 1fr) minmax(170px, 220px);
  gap: 14px 18px;
  align-items: end;
  margin: 0;
}

.report-filter-panel {
  grid-column: 1;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.report-filter-label {
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
}

.report-search,
.report-sort {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.report-search {
  grid-column: 2;
}

.report-sort {
  grid-column: 3;
}

.report-search span,
.report-sort span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
}

.report-search input,
.report-sort select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 249, 224, 0.58);
  border-radius: 0;
  background: rgba(255, 249, 224, 0.08);
  color: var(--cream-warm);
  font: inherit;
  font-size: 16px;
}

.report-search input::placeholder {
  color: rgba(255, 249, 224, 0.62);
}

.report-sort option {
  background: #fff;
  color: var(--text);
}

.report-search input:focus,
.report-sort select:focus {
  border-color: var(--cream-warm);
  outline: 2px solid rgba(255, 249, 224, 0.24);
  outline-offset: 2px;
}

.report-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.report-filters button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 249, 224, 0.58);
  border-radius: 999px;
  background: transparent;
  color: var(--cream-warm);
  font: inherit;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.report-filters button:hover,
.report-filters button:focus-visible,
.report-filters button.is-active {
  border-color: var(--cream-warm);
  background: var(--cream-warm);
  color: var(--espresso);
  outline: none;
  transform: translateY(-1px);
}

.report-count {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.report-empty {
  padding: 56px 20px;
  background: var(--cream);
  color: var(--text);
  font-size: 22px;
  text-align: center;
}

.gallery-block {
  padding: 30px 0 46px;
}

.featured-reports {
  padding: 28px 0 94px;
  background: #ffffff;
}

.featured-reports .wrap {
  width: min(1500px, calc(100% - 64px));
}

.featured-carousel {
  position: relative;
  min-width: 0;
  --featured-image-height: clamp(390px, 31vw, 510px);
  --featured-panel-left: clamp(56px, 4.5vw, 96px);
  --featured-panel-width: min(900px, calc(100% - 440px));
  --featured-panel-top: calc(var(--featured-image-height) - 80px);
}

.featured-carousel-track {
  position: relative;
  min-height: calc(var(--featured-image-height) + 350px);
}

.featured-carousel-slide {
  position: absolute;
  inset: 0;
  display: block;
  min-width: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.featured-carousel-media {
  position: relative;
  display: block;
  width: 100%;
  height: var(--featured-image-height);
  overflow: hidden;
  min-width: 0;
  background: #fff;
  box-shadow: none;
}

.featured-carousel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 54%, rgba(0, 0, 0, 0.08) 100%);
  opacity: 0.5;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-carousel-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--featured-tint, rgba(46, 117, 184, 0.22)), rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), var(--featured-tint, rgba(46, 117, 184, 0.22)));
  mix-blend-mode: multiply;
}

.featured-carousel-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1), filter 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-image-mark {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--featured-accent, #8f5a39);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.featured-carousel-copy {
  position: absolute;
  top: var(--featured-panel-top);
  left: var(--featured-panel-left);
  z-index: 4;
  width: var(--featured-panel-width);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0 clamp(22px, 3vw, 36px);
  min-width: 0;
  padding: 44px 56px 52px;
  background: #ffffff;
  color: var(--text);
}

.featured-report-index {
  color: var(--featured-accent, rgba(143, 90, 57, 0.92));
  font-size: clamp(56px, 6.8vw, 92px);
  font-weight: 400;
  line-height: 0.9;
}

.featured-carousel-copy > div {
  display: grid;
  gap: 20px;
  min-width: 0;
  padding-top: 8px;
}

.featured-report-eyebrow,
.featured-report-action {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.featured-report-eyebrow {
  color: var(--featured-accent, currentColor);
}

.featured-carousel-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px, 5.4vw, 86px);
  font-weight: 500;
  line-height: 1.02;
  overflow-wrap: break-word;
}

.featured-carousel-copy p {
  max-width: 700px;
  margin: 0;
  font-size: 21px;
  line-height: 1.45;
}

.featured-report-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 42px;
  margin-top: 6px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: var(--featured-soft, transparent);
}

.featured-report-action span {
  display: inline-block;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-carousel-media:hover img,
.featured-carousel-media:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.03);
}

.featured-carousel-media:hover::after,
.featured-carousel-media:focus-visible::after {
  opacity: 0.35;
}

.featured-report-action:hover span,
.featured-report-action:focus-visible span {
  transform: translateX(5px);
}

.featured-carousel-controls {
  position: absolute;
  top: calc(var(--featured-panel-top) + 104px);
  left: calc(var(--featured-panel-left) + var(--featured-panel-width) + 30px);
  right: auto;
  bottom: auto;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}

.featured-carousel-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.featured-carousel-controls button:hover,
.featured-carousel-controls button:focus-visible {
  background: var(--text);
  color: var(--cream);
  transform: translateY(-1px);
}

.featured-carousel-controls [data-featured-next] {
  border-color: var(--featured-soft, #a9dff8);
  background: var(--featured-soft, #b9e6fb);
}

.featured-carousel-dots {
  display: none;
}

.featured-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: rgba(143, 90, 57, 0.72);
  cursor: pointer;
  transition: width 240ms cubic-bezier(0.22, 1, 0.36, 1), background 240ms ease, color 240ms ease;
}

.featured-carousel-dots button.is-active {
  width: 34px;
  background: currentColor;
  color: rgba(143, 90, 57, 0.95);
}

.gallery-grid {
  display: grid;
  gap: 34px 42px;
}

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

.grid-featured .feature {
  grid-column: span 2;
}

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

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

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

.report-card figure {
  position: relative;
}

.report-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
  line-height: 0;
}

.report-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(23, 23, 22, 0.04), rgba(23, 23, 22, 0.8));
  color: var(--cream-warm);
  opacity: 0;
  pointer-events: none;
  clip-path: inset(14px 14px 14px 14px round 0);
  transform: scale(1.015);
  transition: opacity 300ms cubic-bezier(0.22, 1, 0.36, 1), clip-path 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.report-card-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.18) 45%, transparent 62%);
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity 260ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.report-card-title,
.report-card-action {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 92%;
  line-height: 1.08;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.report-card-title {
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.08;
}

.report-card-action {
  width: fit-content;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 249, 224, 0.48);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.report-card-action span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.report-card:hover .report-card-overlay,
.report-card:focus-visible .report-card-overlay {
  opacity: 1;
  clip-path: inset(0 0 0 0 round 0);
  transform: scale(1);
}

.report-card:hover .report-card-overlay::before,
.report-card:focus-visible .report-card-overlay::before {
  opacity: 1;
  transform: translateX(55%);
}

.report-card:hover .report-card-title,
.report-card:hover .report-card-action,
.report-card:focus-visible .report-card-title,
.report-card:focus-visible .report-card-action {
  opacity: 1;
  transform: translateY(0);
}

.report-card:hover .report-card-action,
.report-card:focus-visible .report-card-action {
  transition-delay: 55ms;
}

.report-card:hover .report-card-action span,
.report-card:focus-visible .report-card-action span {
  transform: translateX(5px);
}

.report-card[data-featured="true"] figure::after {
  content: "Featured";
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  background: rgba(23, 23, 22, 0.82);
  color: var(--cream-warm);
  font-size: 12px;
  line-height: 1;
}

.report-card img {
  width: 100%;
  background: #fff;
  object-fit: contain;
  transition: opacity 220ms ease, transform 220ms ease;
}

.report-card figcaption {
  margin-top: 10px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.3;
}

.report-card:hover figcaption {
  text-decoration: none;
}

.report-card:hover img {
  transform: translateY(-2px) scale(1.012);
}

.report-group {
  padding: 0 0 42px;
  background: transparent;
  color: var(--text);
}

.report-block {
  padding: clamp(34px, 4.4vw, 62px) clamp(28px, 4.6vw, 64px) clamp(26px, 4vw, 48px);
  background: var(--cream);
}

.report-block-charcoal {
  background: var(--black);
  color: var(--cream-warm);
}

.report-group .section-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: end;
  padding: 0 0 24px;
  border-top: 1px solid rgba(23, 23, 22, 0.16);
  border-bottom: 1px solid rgba(23, 23, 22, 0.16);
}

.report-group:first-of-type .section-head {
  border-top: 0;
}

.report-group .section-head > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
}

.report-group .section-head span {
  color: var(--espresso);
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 0.9;
}

.report-group .section-head h2 {
  margin: 0;
  color: currentColor;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
}

.report-group .section-head p {
  max-width: 640px;
  margin: 0;
  color: color-mix(in srgb, currentColor 76%, transparent);
  font-size: 18px;
  line-height: 1.5;
}

.report-block-charcoal .section-head {
  border-color: rgba(255, 249, 224, 0.28);
}

.report-block-charcoal .report-card {
  border-color: rgba(255, 249, 224, 0.2);
}

.report-block-charcoal .report-card-title,
.report-block-charcoal .report-card-description,
.report-block-charcoal .report-card-kicker,
.report-block-charcoal .report-card-action {
  color: var(--cream-warm);
}

.report-block-charcoal .report-card-description,
.report-block-charcoal .report-card-kicker {
  color: rgba(255, 249, 224, 0.72);
}

.report-index-list {
  display: grid;
  gap: 0;
}

.report-index-list.grid-featured,
.report-index-list.grid-three,
.report-index-list.grid-two {
  grid-template-columns: 1fr;
}

.report-index-list > .report-card {
  grid-column: 1 / -1;
}

.report-card {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: clamp(18px, 2.6vw, 36px);
  align-items: start;
  min-width: 0;
  min-height: 0;
  padding: 34px 0;
  border-bottom: 1px solid rgba(23, 23, 22, 0.16);
  color: var(--text);
  text-decoration: none;
  transition: background 280ms ease, border-color 280ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.report-card::before {
  content: "";
  position: absolute;
  inset: 0 -28px;
  z-index: 0;
  background: rgba(255, 255, 255, 0.42);
  opacity: 0;
  transform: scaleX(0.985);
  transform-origin: center;
  transition: opacity 280ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.report-card > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.report-card.feature {
  grid-template-columns: 70px minmax(0, 1fr);
  padding: 34px 0;
}

.report-card-number {
  grid-column: 1;
  grid-row: 1 / span 2;
  color: var(--espresso);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 0.92;
}

.report-card-media {
  grid-column: 2;
  grid-row: 1;
  width: min(100%, 340px);
  overflow: visible;
  background: transparent;
  line-height: 0;
}

.report-card-media img {
  width: 100%;
  background: #fff;
  object-fit: contain;
  transform: scale(1.001);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.report-card-body {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  gap: 12px;
  min-width: 0;
}

.report-card-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: rgba(24, 22, 22, 0.68);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.report-card-kicker span {
  min-width: 0;
}

.report-card-title {
  display: block;
  max-width: 760px;
  color: var(--text);
  font-size: clamp(26px, 2.55vw, 38px);
  line-height: 1.06;
  opacity: 1;
  transform: none;
  overflow-wrap: break-word;
}

.report-card-description {
  display: block;
  max-width: 780px;
  color: rgba(24, 22, 22, 0.76);
  font-size: 16px;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.report-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 38px;
  margin-top: 6px;
  padding-top: 0;
  border-top: 0;
  color: var(--espresso);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 1;
  transform: none;
}

.report-card-action span {
  display: inline-block;
  margin-left: 0;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.report-card[data-featured="true"]::after {
  content: "Featured";
  position: absolute;
  top: 22px;
  right: 0;
  z-index: 2;
  color: var(--espresso);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.report-card:hover::before,
.report-card:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.report-card:hover,
.report-card:focus-visible {
  outline: none;
  border-bottom-color: rgba(23, 23, 22, 0.28);
}

.report-card:hover img,
.report-card:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.03) contrast(1.02);
}

.report-card:hover .report-card-action span,
.report-card:focus-visible .report-card-action span {
  transform: translateX(5px);
}

.page-hero {
  padding: 64px 0 62px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 440px) minmax(420px, 1fr);
  gap: 64px;
  align-items: stretch;
  padding: 46px 0 50px;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: 100%;
  max-height: none;
  object-fit: cover;
  border-radius: 16px;
}

.about-kicker {
  margin: 4px 0 44px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(23, 23, 22, 0.75);
  font-size: 19px;
  line-height: 1.75;
}

.about-kicker div:first-child {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 600;
}

.about-copy p {
  margin: 0 0 24px;
  font-size: 21px;
  line-height: 1.55;
}

.about-proof-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: -10px 0 30px;
  border-bottom: 1px solid rgba(23, 23, 22, 0.22);
}

.about-proof-stats .profile-stat {
  min-height: 106px;
  padding: 18px 18px 16px 0;
}

.about-proof-stats .profile-stat:nth-child(2n) {
  padding-left: 18px;
  border-right: 0;
}

.profile-details {
  padding: 18px 0 82px;
}

.profile-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: end;
  padding: 34px 0 30px;
  border-top: 1px solid rgba(23, 23, 22, 0.22);
  scroll-margin-top: 132px;
}

.profile-intro h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 78px);
  line-height: 0.98;
}

.profile-intro p {
  margin: 0;
  max-width: 620px;
  font-size: 22px;
  line-height: 1.42;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 23, 22, 0.24);
  border-bottom: 1px solid rgba(23, 23, 22, 0.24);
}

.profile-stat {
  min-height: 124px;
  padding: 22px 24px;
  border-right: 1px solid rgba(23, 23, 22, 0.18);
}

.profile-stat:last-child {
  border-right: 0;
}

.profile-stat strong,
.profile-stat span {
  display: block;
}

.profile-stat strong {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.94;
}

.profile-stat span {
  font-size: 15px;
  line-height: 1.35;
}

.progression-shell {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid rgba(23, 23, 22, 0.24);
}

.progression-item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(23, 23, 22, 0.18);
  scroll-margin-top: 132px;
}

.progression-marker {
  display: grid;
  gap: 18px;
  align-content: start;
  color: var(--cream-warm);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.9;
}

.progression-logo {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 22, 0.16);
  border-radius: 4px;
  background: #fff;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.progression-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.progression-content {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(240px, 0.66fr);
  gap: 8px 32px;
  align-items: start;
}

.progression-content > span {
  grid-row: span 3;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.3;
}

.progression-content h3,
.progression-content h4,
.progression-content p {
  margin: 0;
}

.progression-content h3 {
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.03;
}

.progression-content h4 {
  font-size: 18px;
  line-height: 1.25;
}

.progression-content p {
  max-width: 820px;
  font-size: 18px;
  line-height: 1.52;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 54px;
}

.profile-panel {
  padding: 26px 0 0;
  border-top: 1px solid rgba(23, 23, 22, 0.24);
}

.profile-panel-wide {
  grid-row: span 2;
}

.profile-panel h2 {
  margin: 0 0 24px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.04;
}

.profile-panel h3,
.profile-panel p {
  margin: 0;
}

.profile-panel h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  line-height: 1.25;
}

.profile-mini-logo {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 22, 0.16);
  border-radius: 50%;
  background: #fff;
}

.profile-mini-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.profile-panel p {
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.35;
}

.profile-list-block {
  padding: 0 0 24px;
}

.profile-panel ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.profile-panel li {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.38;
}

.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(23, 23, 22, 0.26);
  font-size: 15px;
  line-height: 1;
}

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

.report-hero {
  padding: 66px 0 58px;
}

.report-hero .wrap {
  max-width: 1120px;
}

.report-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.report-hero-grid::before {
  grid-column: 1 / -1;
}

.report-title-panel,
.report-context-panel {
  min-width: 0;
}

.report-title-panel {
  max-width: 980px;
}

.report-context-panel {
  max-width: 820px;
}

.report-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin-bottom: 28px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.report-back-link span {
  display: inline-block;
  transition: transform 220ms ease;
}

.report-back-link:hover span,
.report-back-link:focus-visible span {
  transform: translateX(4px);
}

.report-hero h1 {
  font-size: clamp(50px, 5vw, 72px);
  line-height: 1.04;
}

.report-meta {
  display: grid;
  gap: 18px;
  margin-top: 0;
  font-size: clamp(28px, 4vw, 44px);
  color: rgba(255, 249, 224, 0.72);
}

.report-meta .small {
  font-size: 24px;
  color: var(--cream-warm);
}

.report-meta .italic {
  font-style: italic;
}

.report-snapshot {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.report-snapshot-item {
  min-width: 0;
  padding: 22px 24px 24px 22px;
  border-right: 1px solid var(--line);
}

.report-snapshot-item:first-child {
  padding-left: 22px;
}

.report-snapshot-item:last-child {
  border-right: 0;
}

.report-snapshot-item span,
.report-insight span,
.gallery-heading p {
  display: block;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.report-snapshot-item strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.report-insight {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(120px, 0.22fr) minmax(0, 1fr);
  gap: 34px;
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--line);
}

.report-insight p {
  max-width: 1000px;
  min-width: 0;
  margin: 0;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.report-copy {
  grid-column: 1 / -1;
  min-width: 0;
  margin-top: 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.report-copy p {
  margin: 0 0 26px;
  font-size: 25px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.report-copy .copy-passage {
  color: var(--cream-warm);
  font-weight: 700;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0.02em 0.14em 0.04em;
  background: rgba(255, 249, 224, 0.12);
}

@keyframes filter-pop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.filter-pop {
  animation: filter-pop 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--filter-delay, 0ms);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 58px;
  padding: 14px 28px;
  border: 3px solid currentColor;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
}

.button:hover {
  background: var(--cream-warm);
  color: var(--espresso);
}

.slide-gallery {
  padding: 56px 0 76px;
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(260px, 1fr);
  gap: 32px;
  align-items: end;
  padding: 0 0 26px;
  border-bottom: 1px solid rgba(23, 23, 22, 0.18);
  margin-bottom: 34px;
}

.gallery-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1;
}

.gallery-heading p {
  margin: 0;
  color: var(--text);
}

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

.slide-card {
  margin: 0;
  background: #fff;
}

.slide-card:first-child {
  grid-column: 1 / -1;
}

.slide-card img {
  width: 100%;
  cursor: zoom-in;
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.slide-card img:hover,
.slide-card img:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(24, 22, 22, 0.18);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease var(--reveal-delay, 0ms), transform 700ms ease var(--reveal-delay, 0ms);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100vw;
  height: 100dvh;
  padding: 72px 72px 34px;
  background: rgba(10, 9, 8, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-stage {
  display: grid;
  place-items: center;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
}

.lightbox-stage.is-zoomed {
  place-items: start center;
  cursor: grab;
}

.lightbox-image {
  width: auto;
  max-width: min(100%, 1500px);
  max-height: calc(100vh - 160px);
  object-fit: contain;
  background: #fff;
  cursor: zoom-in;
  transform: scale(var(--zoom, 1));
  transform-origin: top center;
  transition: transform 160ms ease;
}

.lightbox-stage.is-zoomed .lightbox-image {
  cursor: zoom-out;
  max-height: none;
}

.lightbox-btn {
  border: 1px solid rgba(255, 249, 224, 0.72);
  border-radius: 999px;
  background: rgba(23, 23, 22, 0.78);
  color: var(--cream-warm);
  font: inherit;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.lightbox-btn:hover,
.lightbox-btn:focus {
  background: var(--cream-warm);
  color: var(--espresso);
  outline: none;
  transform: translateY(-1px);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  padding: 12px 18px;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  width: 66px;
  height: 44px;
  transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-prev:focus,
.lightbox-next:hover,
.lightbox-next:focus {
  transform: translateY(calc(-50% - 1px));
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

.lightbox-tools {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.lightbox-tools .lightbox-btn {
  width: 42px;
  height: 42px;
  font-size: 24px;
}

.lightbox-count {
  min-width: 80px;
  color: var(--cream-warm);
  text-align: center;
}

@keyframes page-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes page-in-replay {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes submenu-in {
  from {
    opacity: 0;
    transform: translateY(-8px) scaleY(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

.footer {
  background: var(--black);
  color: var(--cream-warm);
  padding: 44px 0;
}

.footer .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.footer h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 500;
}

.footer .socials {
  justify-content: center;
  margin: 0;
}

.footer .email {
  justify-self: end;
  font-size: 21px;
}

@media (max-width: 1120px) {
  .site-header {
    gap: 14px;
    padding: 0 22px;
  }

  .desktop-nav {
    display: none;
  }

  .theme-toggle {
    margin-left: auto;
  }

  .header-mobile-socials {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 22px;
    font-weight: 700;
    color: inherit;
  }

  .header-mobile-socials a {
    line-height: 1;
    opacity: 0.92;
    transition: opacity 160ms ease, color 160ms ease;
  }

  .header-mobile-socials a:hover,
  .header-mobile-socials a:focus-visible {
    opacity: 1;
  }

  .header-search-button,
  .header-linkedin,
  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .header-search-button {
    margin-left: 0;
  }

  .header-linkedin {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
  }

  .header-search-button svg {
    width: 20px;
    height: 20px;
  }

  .header-search-button[aria-expanded="true"] {
    color: var(--cream-warm);
  }

  .header-search-button:focus-visible,
  .mobile-menu-button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
    border-radius: 4px;
  }

  .mobile-panel {
    position: fixed;
    inset: var(--mobile-panel-top) 0 0;
    z-index: 19;
    display: grid;
    align-content: start;
    justify-content: stretch;
    justify-items: start;
    gap: 0;
    width: 100%;
    padding: 26px max(28px, calc((100vw - var(--max)) / 2 + 48px)) 64px;
    overflow: auto;
  background: var(--black);
  border-top: 1px solid rgba(255, 249, 224, 0.35);
  opacity: 0;
  visibility: hidden;
    transform: translateY(-14px) scale(0.992);
    transition: opacity 320ms cubic-bezier(0.22, 1, 0.36, 1), transform 380ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 320ms;
  }

  .mobile-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: opacity 360ms cubic-bezier(0.22, 1, 0.36, 1), transform 420ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s;
  }

  .mobile-panel > * {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 240ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-panel.is-open > * {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-panel.is-open > *:nth-child(1) {
    transition-delay: 70ms;
  }

  .mobile-panel.is-open > *:nth-child(2) {
    transition-delay: 105ms;
  }

  .mobile-panel.is-open > *:nth-child(3) {
    transition-delay: 140ms;
  }

  .mobile-panel.is-open > *:nth-child(4) {
    transition-delay: 175ms;
  }

  .mobile-panel.is-open > *:nth-child(5) {
    transition-delay: 210ms;
  }

  .mobile-panel.is-open > *:nth-child(6) {
    transition-delay: 245ms;
  }

  .mobile-panel > a {
    width: min(100%, 560px);
    padding: 13px 0;
    font-size: 19px;
  }

  .mobile-panel details {
    width: min(100%, 560px);
    border-top: 1px solid rgba(255, 249, 224, 0.2);
    padding: 16px 0 0;
  }

  .mobile-panel summary {
    margin: 0;
    font-size: 18px;
  }

  .mobile-panel .nav-menu {
    position: static;
    min-width: 0;
    padding: 4px 0 0 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    gap: 8px;
    overflow: hidden;
    transform-origin: top;
    animation: submenu-in 300ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .mobile-panel .nav-menu a {
    font-size: 16px;
  }

  .mobile-panel details.is-submenu-animating .nav-menu {
    animation: none;
    transition: height 340ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease, transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-panel > .socials {
    width: min(100%, 560px);
    margin: 18px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 249, 224, 0.2);
  }

  .home-hero {
    padding: 30px 0 24px;
  }

  .home-hero hr {
    margin: 16px 0 22px;
  }

  .report-tools {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "filters"
      "search"
      "count";
    align-items: start;
    gap: 8px 10px;
    padding: 12px;
  }

  .report-tools .report-filter-panel {
    grid-area: filters;
    min-width: 0;
    gap: 7px;
  }

  .report-tools .report-filter-label {
    font-size: 12px;
  }

  .report-tools .report-filters {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0 0 4px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .report-tools .report-filters::-webkit-scrollbar {
    display: none;
  }

  .report-tools .report-filters button {
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 32px;
    padding: 0 11px;
    font-size: 13px;
  }

  .report-tools .report-search {
    grid-area: search;
    display: none;
    gap: 0;
  }

  .report-tools .report-search span {
    display: none;
  }

  .report-tools.is-search-open .report-search {
    display: block;
  }

  .report-tools .report-search input {
    min-height: 42px;
  }

  .report-tools .report-sort {
    display: none;
  }

  .report-tools .report-count {
    grid-area: count;
    margin: 0;
    font-size: 13px;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 17px;
  }

  .site-header {
    min-height: 116px;
  }

  :root {
    --mobile-panel-top: 116px;
  }

  .brand {
    font-size: 52px;
  }

  .wrap {
    width: calc(100% - 32px);
  }

  .home-hero,
  .page-hero,
  .report-hero {
    padding: 44px 0 42px;
  }

  .home-hero h1,
  .page-hero h1,
  .report-hero h1 {
    font-size: clamp(44px, 12vw, 58px);
    overflow-wrap: break-word;
  }

  .section-head h2,
  .home-hero h2 {
    font-size: 36px;
  }

  .section-head p,
  .home-hero p,
  .about-copy p,
  .report-copy p {
    font-size: 20px;
    overflow-wrap: break-word;
  }

  .section-head p,
  .home-hero p {
    font-size: 18px;
  }

  .grid-featured,
  .grid-three,
  .grid-two,
  .slides,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .profile-intro,
  .report-hero-grid,
  .progression-content,
  .profile-grid {
    grid-template-columns: 1fr;
  }

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

  .featured-reports .wrap {
    width: calc(100% - 44px);
  }

  .featured-carousel {
    --featured-image-height: clamp(320px, 45vw, 440px);
    --featured-panel-left: clamp(24px, 5vw, 56px);
    --featured-panel-width: min(760px, calc(100% - 48px));
    --featured-panel-top: calc(var(--featured-image-height) - 58px);
  }

  .featured-carousel-track {
    min-height: calc(var(--featured-image-height) + 430px);
  }

  .featured-carousel-copy {
    padding: 38px 42px 44px;
  }

  .featured-carousel-controls {
    top: calc(var(--featured-panel-top) + 250px);
    left: var(--featured-panel-left);
  }

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

  .about-proof-stats .profile-stat {
    padding: 16px 14px 16px 0;
  }

  .about-proof-stats .profile-stat:nth-child(2n) {
    padding-left: 14px;
  }

  .progression-item {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px;
  }

  .progression-logo {
    width: 42px;
    height: 42px;
  }

  .progression-content > span {
    grid-row: auto;
  }

  .profile-panel-wide {
    grid-row: auto;
  }

  .grid-featured .feature {
    grid-column: auto;
  }

  .report-group .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 0 22px;
  }

  .report-block {
    padding: 32px 24px 26px;
  }

  .report-card,
  .report-card.feature {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    min-height: 0;
    padding: 24px 0;
  }

  .report-card-media {
    grid-column: 2;
    grid-row: 1;
    width: min(100%, 300px);
  }

  .report-card-body {
    grid-column: 2;
    grid-row: 2;
  }

  .report-card[data-featured="true"]::after {
    top: 24px;
  }

  .about-layout {
    align-items: start;
    gap: 34px;
  }

  .about-photo {
    height: auto;
    max-height: none;
  }

  .report-meta {
    gap: 16px;
    margin-top: 36px;
    font-size: 34px;
  }

  .report-meta .small {
    font-size: 23px;
  }

  .about-kicker {
    font-size: 18px;
  }

  .about-kicker div:first-child {
    font-size: 21px;
  }

  .profile-details {
    padding-bottom: 56px;
  }

  .profile-intro {
    gap: 18px;
    padding-top: 24px;
  }

  .profile-intro h2 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .profile-intro p,
  .report-copy p,
  .progression-content p {
    font-size: 17px;
  }

  .profile-stat {
    min-height: 116px;
    padding: 18px 16px;
  }

  .profile-stat strong {
    font-size: clamp(34px, 12vw, 48px);
  }

  .profile-stat span,
  .profile-panel li {
    font-size: 15px;
  }

  .progression-shell,
  .profile-grid {
    margin-top: 38px;
  }

  .progression-item {
    padding: 24px 0;
  }

  .progression-content h3 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .report-hero-grid {
    gap: 30px;
  }

  .report-snapshot,
  .gallery-heading {
    grid-template-columns: 1fr;
  }

  .report-snapshot-item {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .report-snapshot-item:last-child {
    border-bottom: 0;
  }

  .report-insight {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .report-insight p {
    max-width: 100%;
    font-size: clamp(24px, 7.2vw, 31px);
    line-height: 1.16;
  }

  .report-context-panel {
    padding-top: 20px;
  }

  .report-copy {
    max-width: 100%;
    padding-top: 24px;
  }

  .report-copy p {
    max-width: 100%;
    font-size: clamp(18px, 5.2vw, 20px);
    line-height: 1.38;
  }

  .button {
    width: 100%;
  }

  .footer .wrap {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer .email {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .featured-reports {
    padding: 28px 0 58px;
  }

  .featured-reports .wrap {
    width: calc(100% - 40px);
  }

  .featured-carousel {
    --featured-image-height: clamp(250px, 64vw, 320px);
    --featured-panel-left: 0px;
    --featured-panel-width: 100%;
    --featured-panel-top: calc(var(--featured-image-height) - 22px);
    display: grid;
  }

  .featured-carousel-track {
    min-height: calc(var(--featured-image-height) + 470px);
  }

  .featured-carousel-media {
    height: var(--featured-image-height);
  }

  .featured-carousel-copy {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 34px 0 38px;
  }

  .featured-report-index {
    font-size: clamp(46px, 16vw, 72px);
  }

  .featured-carousel-copy h2 {
    max-width: 330px;
    font-size: clamp(30px, 9.2vw, 38px);
  }

  .featured-carousel-copy p {
    max-width: 330px;
    font-size: 16px;
  }

  .featured-carousel-controls,
  .featured-carousel-dots {
    margin-top: 0;
  }

  .featured-carousel-controls {
    position: absolute;
    top: calc(var(--featured-panel-top) + 405px);
    left: 0;
    justify-content: flex-start;
  }

  .report-group .section-head > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .report-group .section-head span {
    font-size: clamp(42px, 17vw, 64px);
  }

  .report-group .section-head h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .report-group .section-head p {
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .report-card,
  .report-card.feature {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
  }

  .report-card-number {
    grid-column: 1;
    grid-row: auto;
    font-size: clamp(38px, 15vw, 56px);
  }

  .report-card-media {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: 270px;
  }

  .report-card-body {
    grid-column: auto;
    grid-row: auto;
    gap: 10px;
  }

  .report-card-title {
    max-width: 100%;
    font-size: clamp(25px, 8.2vw, 34px);
    line-height: 1.06;
  }

  .report-card-description {
    max-width: 100%;
    font-size: 15px;
  }

  .report-card[data-featured="true"]::after {
    top: 26px;
    right: 0;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: calc(100% - 24px);
  }

  .site-header {
    padding: 0 28px;
  }

  .mobile-panel {
    padding-left: 28px;
    padding-right: 28px;
  }

  .report-group {
    padding-bottom: 30px;
  }

  .report-block {
    width: calc(100% - 40px);
    padding: 28px 18px 24px;
  }

  .home-hero hr,
  .page-hero hr,
  .report-hero hr {
    margin: 20px 0 36px;
  }

  .gallery-block,
  .slide-gallery {
    padding: 28px 0 38px;
  }

  .gallery-heading {
    gap: 12px;
    margin-bottom: 22px;
  }

  .lightbox {
    padding: 74px 16px 24px;
  }

  .lightbox-close {
    top: 20px;
    right: 16px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 22px;
    width: 58px;
    height: 42px;
  }

  .lightbox-prev,
  .lightbox-prev:hover,
  .lightbox-prev:focus,
  .lightbox-next,
  .lightbox-next:hover,
  .lightbox-next:focus {
    transform: none;
  }

  .lightbox-tools {
    padding: 0 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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