@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benzin";
  src: url("../fonts/BenzinRegular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benzin";
  src: url("../fonts/BenzinBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benzin";
  src: url("../fonts/BenzinExtraBold.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-wide: "Benzin", "Arial Black", Arial, sans-serif;
  --font-base: "Montserrat", Arial, sans-serif;
  --max: 1424px;
  --nav: 80px;
  --clip-sm: polygon(0 18px, 18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px));
  --clip-lg: polygon(0 0, calc(100% - 60px) 0, 100% 60px, 100% 100%, 0 100%);
  --bg: #f8f4eb;
  --paper: #ffffff;
  --paper-soft: #efe4cf;
  --text: #2a2117;
  --muted: #806a42;
  --line: #dec28b;
  --accent: #ac8d4a;
  --accent-2: #c39f5a;
  --accent-3: #805621;
  --accent-soft: rgba(172, 141, 74, .16);
  --hero: #2b2418;
  --hero-text: #dec28b;
  --shadow: rgba(128, 86, 33, .13);
}

:root[data-theme="light"] {
  --bg: #f8f4eb;
  --paper: #ffffff;
  --paper-soft: #efe4cf;
  --text: #2a2117;
  --muted: #806a42;
  --line: #dec28b;
  --accent: #ac8d4a;
  --accent-2: #c39f5a;
  --accent-3: #805621;
  --accent-soft: rgba(172, 141, 74, .16);
  --hero: #2b2418;
  --hero-text: #dec28b;
  --shadow: rgba(128, 86, 33, .13);
}

:root[data-theme="dark"] {
  --bg: #15110b;
  --paper: #20180f;
  --paper-soft: #2b2114;
  --text: #f8f4eb;
  --muted: #c8ae7a;
  --line: #5b4527;
  --accent: #d3ad68;
  --accent-2: #ac8d4a;
  --accent-3: #dec28b;
  --accent-soft: rgba(211, 173, 104, .18);
  --hero: #0d0a06;
  --hero-text: #dec28b;
  --shadow: rgba(0, 0, 0, .34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-base);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--paper);
  pointer-events: none;
  animation: preloader-out .75s ease 1.6s forwards;
}

.preloader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, transparent, var(--accent-soft));
  animation: loader-slide 1.7s ease-in-out infinite;
}

@keyframes loader-slide {
  0% { transform: translateY(100%); }
  45% { transform: translateY(18%); }
  100% { transform: translateY(-100%); }
}

@keyframes preloader-out {
  to { opacity: 0; visibility: hidden; }
}

.site {
  width: 100%;
  max-width: 1908px;
  margin: 0 auto;
  overflow: hidden;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  transition: transform .35s ease, box-shadow .25s ease;
  min-height: var(--nav);
  background: linear-gradient(0deg, var(--paper) 45%, var(--paper-soft));
  box-shadow: 0 1px 0 var(--line);
}

.topbar.is-hidden {
  transform: translateY(-100%);
}

.topbar.is-floating {
  box-shadow: 0 16px 40px var(--shadow);
}

.nav-inner,
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.nav-inner {
  min-height: var(--nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}

.burger-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.burger {
  width: 50px;
  height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.burger span,
.burger span::before,
.burger span::after {
  display: block;
  width: 42px;
  height: 2px;
  background: var(--accent);
  transition: transform .35s ease, width .35s ease, background .35s ease;
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
}

.burger span {
  position: relative;
}

.burger span::before {
  transform: translateY(-10px);
}

.burger span::after {
  transform: translateY(10px);
}

.burger:hover span {
  width: 36px;
  background: var(--accent-3);
}

.burger:hover span::before {
  background: var(--accent-3);
  transform: translate(-8px, -6px) rotate(-35deg) scaleX(.55);
}

.burger:hover span::after {
  background: var(--accent-3);
  transform: translate(-8px, 6px) rotate(35deg) scaleX(.55);
}

.logo-mark {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  background: var(--accent);
  color: var(--paper);
  font: 900 24px/1 var(--font-wide);
  letter-spacing: 0;
}

.brand-line {
  width: 2px;
  height: 40px;
  background: var(--accent);
}

.brand-text {
  text-transform: uppercase;
  line-height: 1.28;
  min-width: 0;
}

.brand-name {
  color: var(--accent);
  font: 900 16px/1.25 var(--font-wide);
}

.brand-report {
  color: var(--muted);
  font-size: 14px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang {
  display: flex;
}

.lang a {
  padding: 16px 14px;
  color: var(--paper);
  background: var(--accent-2);
  font-size: 13px;
  transition: background .2s ease;
}

.lang a.active,
.lang a:hover {
  background: var(--accent);
}

.pdf-link,
.theme-button,
.icon-btn {
  height: 50px;
  min-width: 50px;
  display: inline-grid;
  place-items: center;
  clip-path: var(--clip-sm);
  background: var(--accent);
  color: var(--paper);
  font: 900 13px/1 var(--font-wide);
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}

.pdf-link {
  padding: 0 18px;
}

.theme-button {
  border: 0;
  padding: 0 16px;
  cursor: pointer;
}

.pdf-link:hover,
.theme-button:hover,
.icon-btn:hover {
  background: var(--accent-3);
  transform: translateY(-1px);
}

.rail {
  position: fixed;
  z-index: 20;
  left: max(16px, calc((100vw - var(--max)) / 2 - 68px));
  bottom: 32px;
  display: grid;
  gap: 8px;
}

.rail .icon-btn {
  box-shadow: 0 10px 24px var(--shadow);
}

.offcanvas {
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.offcanvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(16, 21, 19, .72), var(--hero));
}

.offcanvas-panel {
  position: relative;
  width: min(430px, 92vw);
  height: 100%;
  background: var(--paper);
  transform: translateX(-100%);
  transition: transform .38s ease;
  box-shadow: 20px 0 60px var(--shadow);
}

.burger-toggle:checked ~ .site .offcanvas {
  opacity: 1;
  pointer-events: auto;
}

.burger-toggle:checked ~ .site .offcanvas .offcanvas-panel {
  transform: translateX(0);
}

.offcanvas-head {
  min-height: 112px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(0deg, var(--paper), var(--paper-soft));
}

.close-btn {
  cursor: pointer;
}

.quick-links {
  padding: 40px 50px;
  background: var(--accent-2);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.quick-links a {
  display: block;
  padding: 10px 0;
  color: var(--paper);
  font-size: 14px;
}

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

.menu-links a {
  display: block;
  padding: 15px 50px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  transition: color .2s ease, border-color .2s ease;
}

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

.hero {
  margin-top: calc(var(--nav) + 30px);
  margin-bottom: 120px;
}

.hero-box {
  position: relative;
  min-height: calc(100vh - 110px);
  padding: 100px 150px;
  display: grid;
  align-content: space-between;
  /* background:
    linear-gradient(115deg, rgba(0, 0, 0, .25), transparent 48%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .14), transparent 26%),
    linear-gradient(135deg, var(--hero), color-mix(in srgb, var(--accent-3), var(--hero) 72%)); */
  background: url(../img/hero__bg.png) center no-repeat;
  background-size: cover;
  color: var(--paper);
  border-bottom: 40px solid var(--paper);
}

.hero-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--hero-text), var(--accent-3), var(--accent));
  background-size: 220% 100%;
  animation: gradient-flow 5s linear infinite;
}

@keyframes gradient-flow {
  to { background-position: 220% 0; }
}

.hero-title,
.section-title {
  margin: 0;
  max-width: 980px;
  text-transform: uppercase;
  font: 900 clamp(34px, 3.5vw, 76px)/1.05 var(--font-wide);
  letter-spacing: 0;
}

.hero-title {
  color: var(--hero-text);
}

.hero-title::before,
.section-title.lined::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  margin-bottom: 20px;
  background: currentColor;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 64px;
  align-items: end;
}

.report-year {
  color: transparent;
  -webkit-text-stroke: 2px var(--hero-text);
  font: 900 clamp(72px, 14vw, 180px)/.8 var(--font-wide);
}

.corner-line {
  width: min(320px, 100%);
  height: 4px;
  margin-bottom: 46px;
  background: var(--hero-text);
}

.hero-note {
  max-width: 520px;
  color: rgba(255, 255, 255, .76);
}

.section {
  scroll-margin-top: 112px;
}

.section .container {
  padding: 0 100px;
}

.section-title {
  color: var(--accent);
  font-size: clamp(30px, 3.4vw, 48px);
  margin-bottom: 56px;
}

.section-title.gradient {
  color: var(--accent);
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  gap: 64px;
  align-items: start;
}

p {
  margin: 0 0 18px;
  line-height: 1.7;
}

.lead {
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

.strong-blue {
  color: var(--accent-3);
  font-weight: 700;
}

.visual-placeholder {
  clip-path: var(--clip-lg);
  background:
    linear-gradient(135deg, var(--accent-soft), transparent),
    repeating-linear-gradient(45deg, transparent 0 18px, color-mix(in srgb, var(--accent), transparent 86%) 18px 19px),
    var(--paper-soft);
  border-bottom: 28px solid var(--accent);
  position: relative;
}

.visual-placeholder picture {
  position: relative;
  width: 100%;
  height: 100%;
}

.visual-placeholder picture img {
  object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
}

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

.subhead {
  margin: 34px 0 28px;
  color: var(--accent);
  text-transform: uppercase;
  font: 900 22px/1.15 var(--font-wide);
}

.card {
  width: 100%;
  padding: 30px;
  background: var(--paper);
  color: var(--text);
  box-shadow: 0 16px 42px var(--shadow);
  position: relative;
}

.card picture {
  position: relative;
  width: 100%;
  height: 100%;
}

.card picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.card h4 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.45;
}

.mini-chart {
  height: 140px;
  display: flex;
  align-items: end;
  gap: 13px;
  padding-top: 20px;
}

.mini-chart span {
  flex: 1;
  min-width: 18px;
  background: linear-gradient(0deg, var(--accent), var(--accent-2));
  clip-path: polygon(0 12px, 12px 0, 100% 0, 100% 100%, 0 100%);
  animation: bar-grow .9s ease both;
  animation-timeline: view();
  animation-range: entry 10% cover 34%;
}

@keyframes bar-grow {
  from { transform: scaleY(.2); transform-origin: bottom; opacity: .35; }
  to { transform: scaleY(1); opacity: 1; }
}

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

.event {
  min-height: 220px;
  padding: 30px;
  background: var(--paper);
  box-shadow: 0 16px 42px var(--shadow);
  position: relative;
}

.event::before {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  margin-bottom: 22px;
  background: var(--line);
}

.event-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  margin-bottom: 16px;
  color: var(--accent);
  text-transform: uppercase;
  font: 900 20px/1.2 var(--font-wide);
}

.event-num {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  clip-path: var(--clip-sm);
  background: var(--muted);
  color: var(--paper);
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.person {
  max-width: 430px;
}

.person-name {
  margin: -32px 0 10px 15px;
  line-height: 1.65;
  font-size: 1.2rem;
}

.shade {
  display: inline-block;
  padding: 4px 15px;
  background: var(--accent);
  color: var(--paper);
  font-weight: 700;
}

.shade.alt {
  background: var(--accent-2);
}

.person-job {
  margin-left: 15px;
  font-size: .9rem;
  font-weight: 700;
}

.section-rule {
  height: 4px;
  margin: 60px 0;
  background: var(--line);
}

.footer {
  margin-top: 64px;
  padding: 70px 0;
  background: var(--accent);
  color: var(--paper);
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  animation: reveal-up .7s ease forwards;
  animation-timeline: view();
  animation-range: entry 8% cover 28%;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports not (animation-timeline: view()) {
  .reveal,
  .mini-chart span {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 1199px) {
  .rail {
    left: 16px;
    bottom: 24px;
  }

  .section .container,
  .hero-box {
    padding-left: 70px;
    padding-right: 70px;
  }

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

.drawer-menu {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drawer-link {
  display: flex;
  gap: 1rem;
  font-size: .9rem;
  align-items: center;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1rem;
}

.drawer-link:last-child {
  padding-bottom: 0;
  border: 0;
}

.drawer-link:hover,
.active {
  color: var(--accent-2);
}

.content-page img {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (max-width: 900px) {
  .brand-line,
  .lang,
  header .pdf-link {
    display: none;
  }

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

  .hero {
    margin-bottom: 72px;
  }

  .hero-box {
    min-height: 720px;
    padding: 70px 34px;
  }

  .hero-bottom,
  .grid-2,
  .events {
    grid-template-columns: 1fr;
  }

  .section .container {
    padding: 0 24px;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .logo-mark {
    width: 64px;
    height: 64px;
    font-size: 18px;
  }

  .brand {
    gap: 14px;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-report {
    font-size: 12px;
  }

  .theme-button {
    min-width: 44px;
    padding: 0 12px;
  }

  .hero-title,
  .section-title {
    overflow-wrap: anywhere;
  }

  .quick-links,
  .menu-links a {
    padding-left: 30px;
    padding-right: 30px;
  }
}


.theme-icon,
.pdf-icon {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.pdf-link {
  grid-auto-flow: column;
  gap: 10px;
  white-space: nowrap;
}

.theme-button .moon-icon {
  display: none;
}

:root[data-theme="dark"] .theme-button .sun-icon {
  display: none;
}

:root[data-theme="dark"] .theme-button .moon-icon {
  display: block;
}

h1, h2, h3, h4, .brand-name, .logo-mark, .subhead, .event-head, .report-year {
  font-family: var(--font-wide);
}

p {
  font-family: var(--font-base);
}


.language-select {
  position: relative;
  min-width: 118px;
}

.language-trigger {
  width: 100%;
  height: 50px;
  border: 0;
  padding: 0 42px 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: var(--clip-sm);
  background: var(--accent-2);
  color: var(--paper);
  font: 700 13px/1 var(--font-base);
  cursor: pointer;
}

.language-trigger::after {
  content: "";
  position: absolute;
  right: 18px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}

.language-select.is-open .language-trigger::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 100%;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--paper);
  box-shadow: 0 18px 45px var(--shadow);
  clip-path: polygon(0 16px, 16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
}

.language-select.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-option {
  width: 100%;
  border: 0;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  color: var(--text);
  font: 600 13px/1.2 var(--font-base);
  cursor: pointer;
  text-align: left;
}

.language-option:hover,
.language-option[aria-selected="true"] {
  background: var(--accent-soft);
  color: var(--accent-3);
}

.language-option[aria-selected="true"]::after {
  content: "✓";
  color: var(--accent);
}

@media (max-width: 900px) {
  header .language-select {
    display: none;
  }
}


.chart-h-33 { height: 33%; }
.chart-h-35 { height: 35%; }
.chart-h-38 { height: 38%; }
.chart-h-40 { height: 40%; }
.chart-h-42 { height: 42%; }
.chart-h-43 { height: 43%; }
.chart-h-48 { height: 48%; }
.chart-h-50 { height: 50%; }
.chart-h-51 { height: 51%; }
.chart-h-52 { height: 52%; }
.chart-h-54 { height: 54%; }
.chart-h-55 { height: 55%; }
.chart-h-58 { height: 58%; }
.chart-h-59 { height: 59%; }
.chart-h-61 { height: 61%; }
.chart-h-62 { height: 62%; }
.chart-h-63 { height: 63%; }
.chart-h-64 { height: 64%; }
.chart-h-66 { height: 66%; }
.chart-h-67 { height: 67%; }
.chart-h-70 { height: 70%; }
.chart-h-72 { height: 72%; }
.chart-h-74 { height: 74%; }
.chart-h-76 { height: 76%; }
.chart-h-78 { height: 78%; }
.chart-h-79 { height: 79%; }
.chart-h-80 { height: 80%; }
.chart-h-84 { height: 84%; }
.chart-h-86 { height: 86%; }
.chart-h-88 { height: 88%; }
.chart-h-90 { height: 90%; }
.chart-h-92 { height: 92%; }
.chart-h-96 { height: 96%; }
