:root {
  --sz-ink: #17332f;
  --sz-ink-soft: #405b56;
  --sz-green: #133f3a;
  --sz-green-2: #1f5b52;
  --sz-mint: #dcebe4;
  --sz-sage: #a9c8b7;
  --sz-river: #4d8fa0;
  --sz-sun: #f3c35b;
  --sz-red: #b4232c;
  --sz-red-dark: #78171d;
  --sz-red-soft: #fff0ed;
  --sz-red-border: rgba(180, 35, 44, 0.28);
  --sz-cream: #f6f0df;
  --sz-paper: #fffdf7;
  --sz-white: #ffffff;
  --sz-border: rgba(23, 51, 47, 0.16);
  --sz-shadow: 0 18px 55px rgba(19, 63, 58, 0.12);
  --sz-radius-sm: 14px;
  --sz-radius: 24px;
  --sz-radius-lg: 38px;
  --sz-shell: min(1180px, calc(100vw - 40px));
  --sz-reading: 760px;
  --sz-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sz-serif: Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
}

body {
  margin: 0;
  color: var(--sz-ink);
  background: var(--sz-paper);
  font-family: var(--sz-font);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.has-open-menu {
  overflow: hidden;
}

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

a {
  color: var(--sz-green-2);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--sz-green);
}

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

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.55em;
  color: var(--sz-ink);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1.2em;
}

::selection {
  color: var(--sz-white);
  background: var(--sz-green-2);
}

.sz-shell {
  width: var(--sz-shell);
  margin-inline: auto;
}

.sz-main {
  min-height: 60vh;
  overflow: hidden;
}

.sz-skip-link {
  position: fixed;
  z-index: 10000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--sz-white);
  background: var(--sz-green);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.sz-kicker {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  margin: 0 0 1rem;
  color: var(--sz-green-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.sz-kicker::before {
  width: 30px;
  height: 2px;
  background: var(--sz-sun);
  content: "";
}

.sz-lead {
  max-width: 760px;
  color: var(--sz-ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.sz-section {
  position: relative;
  padding: clamp(72px, 9vw, 120px) 0;
}

.sz-section--cream {
  background: var(--sz-cream);
}

.sz-section--green {
  color: rgba(255, 255, 255, 0.85);
  background: var(--sz-green);
}

.sz-section--warning {
  background:
    radial-gradient(circle at 92% 8%, rgba(180, 35, 44, 0.1), transparent 24%),
    linear-gradient(145deg, #fffaf7, var(--sz-red-soft));
  border-top: 1px solid var(--sz-red-border);
  border-bottom: 1px solid var(--sz-red-border);
}

.sz-section--warning .sz-kicker,
.sz-section--procurement .sz-kicker {
  color: var(--sz-red-dark);
}

.sz-section--warning .sz-kicker::before,
.sz-section--procurement .sz-kicker::before {
  background: var(--sz-red);
}

.sz-section--accountability-alert {
  background:
    radial-gradient(circle at 90% 4%, rgba(255, 172, 145, 0.2), transparent 24%),
    linear-gradient(145deg, #4e1117, #7a1c24 62%, #4e1117);
}

.sz-section--procurement {
  background: #fffaf7;
}

.sz-section--green h2,
.sz-section--green h3,
.sz-section--green .sz-kicker {
  color: var(--sz-white);
}

.sz-section--green .sz-kicker::before {
  background: var(--sz-sun);
}

.sz-section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.58fr);
  gap: clamp(32px, 7vw, 100px);
  align-items: end;
  margin-bottom: clamp(38px, 6vw, 68px);
}

.sz-section__head > p {
  margin: 0;
  color: var(--sz-ink-soft);
  font-size: 1.06rem;
}

.sz-section--green .sz-section__head > p {
  color: rgba(255, 255, 255, 0.72);
}

.sz-red-alert {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin: 0 0 34px;
  padding: 22px 24px;
  color: var(--sz-white);
  background: linear-gradient(135deg, var(--sz-red-dark), var(--sz-red));
  border: 1px solid rgba(122, 23, 29, 0.35);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(122, 23, 29, 0.16);
}

.sz-red-alert__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--sz-white);
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  font-family: var(--sz-serif);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.sz-red-alert strong,
.sz-red-alert p {
  display: block;
}

.sz-red-alert strong {
  margin: 2px 0 5px;
  color: inherit;
  font-size: 1.05rem;
}

.sz-red-alert p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.93rem;
}

.sz-red-alert--light {
  color: var(--sz-red-dark);
  background: #fff7f4;
  border-color: rgba(255, 188, 164, 0.55);
  box-shadow: none;
}

.sz-red-alert--light .sz-red-alert__icon {
  color: var(--sz-white);
  background: var(--sz-red);
  border-color: var(--sz-red);
}

.sz-red-alert--light p {
  color: #6d373a;
}

.sz-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.sz-button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  color: var(--sz-white);
  background: var(--sz-green);
  border: 2px solid var(--sz-green);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(19, 63, 58, 0.16);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.sz-button:hover,
.sz-button:focus-visible {
  color: var(--sz-white);
  background: var(--sz-green-2);
  border-color: var(--sz-green-2);
  box-shadow: 0 12px 30px rgba(19, 63, 58, 0.24);
  transform: translateY(-2px);
}

.sz-button--ghost {
  color: var(--sz-green);
  background: transparent;
  box-shadow: none;
}

.sz-button--ghost:hover,
.sz-button--ghost:focus-visible {
  color: var(--sz-white);
}

.sz-button--light {
  color: var(--sz-green);
  background: var(--sz-white);
  border-color: var(--sz-white);
}

.sz-button--light:hover,
.sz-button--light:focus-visible {
  color: var(--sz-green);
  background: var(--sz-sun);
  border-color: var(--sz-sun);
}

.sz-button--small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.88rem;
}

.sz-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 253, 247, 0.92);
  border-bottom: 1px solid var(--sz-border);
  backdrop-filter: blur(14px);
}

.admin-bar .sz-header {
  top: 32px;
}

.sz-header__inner {
  display: flex;
  min-height: 78px;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.sz-brand {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 11px;
  align-items: center;
  color: var(--sz-ink);
  line-height: 1;
  text-decoration: none;
}

.sz-brand:hover {
  color: var(--sz-ink);
}

.sz-brand img {
  width: 46px;
  height: 46px;
}

.sz-brand span {
  display: grid;
  gap: 4px;
}

.sz-brand strong {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.sz-brand small {
  color: var(--sz-ink-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sz-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.sz-nav > a:not(.sz-button) {
  position: relative;
  padding: 27px 0 25px;
  color: var(--sz-ink);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.sz-nav > a:not(.sz-button)::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--sz-sun);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.sz-nav > a:hover::after,
.sz-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.sz-nav > a.sz-nav__story {
  color: var(--sz-red-dark);
}

.sz-nav > a.sz-nav__story::after {
  background: var(--sz-red);
}

.sz-menu-toggle {
  display: none;
  min-height: 46px;
  padding: 8px 12px;
  gap: 9px;
  align-items: center;
  color: var(--sz-ink);
  background: transparent;
  border: 1px solid var(--sz-border);
  border-radius: 12px;
  font-weight: 750;
}

.sz-menu-toggle__icon {
  position: relative;
  display: block;
  width: 21px;
  height: 16px;
}

.sz-menu-toggle__icon i {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: center;
  transition: top 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.sz-menu-toggle__icon i:nth-child(2) {
  top: 7px;
}

.sz-menu-toggle__icon i:last-child {
  top: 14px;
}

.sz-menu-toggle[aria-expanded="true"] .sz-menu-toggle__icon i:first-child {
  top: 7px;
  transform: rotate(45deg);
}

.sz-menu-toggle[aria-expanded="true"] .sz-menu-toggle__icon i:nth-child(2) {
  opacity: 0;
}

.sz-menu-toggle[aria-expanded="true"] .sz-menu-toggle__icon i:last-child {
  top: 7px;
  transform: rotate(-45deg);
}

.sz-hero {
  position: relative;
  min-height: min(780px, calc(100vh - 78px));
  padding: clamp(74px, 10vw, 132px) 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(243, 195, 91, 0.34), transparent 19%),
    linear-gradient(145deg, #f9f4e6 0%, #eef4e9 52%, #dcebe4 100%);
}

.sz-hero::before {
  position: absolute;
  right: -7vw;
  bottom: -24vw;
  width: 68vw;
  height: 48vw;
  background: rgba(77, 143, 160, 0.18);
  border-radius: 48% 52% 0 0;
  content: "";
  transform: rotate(-8deg);
}

.sz-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  gap: clamp(42px, 7vw, 105px);
  align-items: center;
}

.sz-hero h1 {
  max-width: 780px;
  margin-bottom: 0.28em;
}

.sz-hero h1 em {
  display: block;
  color: var(--sz-green-2);
  font-family: var(--sz-serif);
  font-weight: 500;
}

.sz-hero__lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--sz-ink-soft);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.sz-hero__note {
  display: flex;
  max-width: 580px;
  margin-top: 28px;
  gap: 11px;
  align-items: flex-start;
  color: var(--sz-ink-soft);
  font-size: 0.9rem;
}

.sz-hero__note::before {
  display: block;
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 0.5em;
  background: var(--sz-sun);
  border-radius: 50%;
  content: "";
}

.sz-hero__art {
  position: relative;
  min-height: 430px;
}

.sz-hero__sun {
  position: absolute;
  top: 0;
  right: 7%;
  width: 132px;
  height: 132px;
  background: var(--sz-sun);
  border-radius: 50%;
  box-shadow: 0 0 0 20px rgba(243, 195, 91, 0.12);
}

.sz-hero__tree,
.sz-hero__tree::before,
.sz-hero__tree::after {
  position: absolute;
  background: var(--sz-green-2);
  border-radius: 55% 45% 48% 52%;
  content: "";
}

.sz-hero__tree {
  right: 13%;
  bottom: 93px;
  width: 126px;
  height: 220px;
  opacity: 0.86;
}

.sz-hero__tree::before {
  top: 56px;
  left: -74px;
  width: 118px;
  height: 150px;
}

.sz-hero__tree::after {
  top: 84px;
  right: -74px;
  width: 115px;
  height: 130px;
}

.sz-hero__river {
  position: absolute;
  right: -12%;
  bottom: 0;
  width: 118%;
  height: 150px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(77, 143, 160, 0.78));
  border-radius: 58% 42% 0 0;
  transform: rotate(-7deg);
}

.sz-hero__river::after {
  position: absolute;
  top: 34px;
  left: 10%;
  width: 66%;
  height: 9px;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  content: "";
  transform: rotate(4deg);
}

.sz-hero__label {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 0;
  max-width: 255px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  box-shadow: var(--sz-shadow);
  backdrop-filter: blur(10px);
}

.sz-hero__label strong,
.sz-hero__label span {
  display: block;
}

.sz-hero__label strong {
  margin-bottom: 4px;
  font-family: var(--sz-serif);
  font-size: 1.3rem;
}

.sz-hero__label span {
  color: var(--sz-ink-soft);
  font-size: 0.82rem;
}

.sz-manifesto {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.sz-manifesto__mark {
  position: sticky;
  top: 118px;
  color: var(--sz-green-2);
  font-family: var(--sz-serif);
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.7;
}

.sz-manifesto__copy {
  max-width: 800px;
}

.sz-manifesto__byline {
  margin: -0.25em 0 1.45em;
  color: var(--sz-red-dark);
  font-family: var(--sz-font) !important;
  font-size: 0.92rem !important;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sz-manifesto__copy p {
  font-family: var(--sz-serif);
  font-size: clamp(1.28rem, 2.2vw, 1.72rem);
  line-height: 1.62;
}

.sz-manifesto__copy p:first-of-type::first-letter {
  float: left;
  margin: 0.08em 0.1em 0 0;
  color: var(--sz-green-2);
  font-size: 3.8em;
  line-height: 0.78;
}

.sz-manifesto__caption {
  margin-top: 26px;
  padding-top: 18px;
  color: var(--sz-ink-soft);
  border-top: 1px solid var(--sz-border);
  font-family: var(--sz-font) !important;
  font-size: 0.9rem !important;
}

.sz-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sz-fact {
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  box-shadow: 0 10px 30px rgba(19, 63, 58, 0.05);
}

.sz-fact__number {
  display: block;
  margin-bottom: 23px;
  color: var(--sz-green-2);
  font-family: var(--sz-serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
}

.sz-fact h3 {
  margin-bottom: 11px;
  font-size: 1.08rem;
}

.sz-fact p {
  margin: 0;
  color: var(--sz-ink-soft);
  font-size: 0.9rem;
}

.sz-source-note {
  margin-top: 24px;
  padding: 16px 20px;
  color: var(--sz-ink-soft);
  background: rgba(255, 255, 255, 0.62);
  border-left: 4px solid var(--sz-sun);
  border-radius: 0 var(--sz-radius-sm) var(--sz-radius-sm) 0;
  font-size: 0.88rem;
}

.sz-problem-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.sz-problem {
  position: relative;
  grid-column: span 4;
  min-height: 390px;
  padding: clamp(28px, 3vw, 38px);
  overflow: hidden;
  background: var(--sz-white);
  border: 1px solid var(--sz-red-border);
  border-radius: var(--sz-radius);
  box-shadow: 0 14px 34px rgba(122, 23, 29, 0.07);
}

.sz-problem::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--sz-red-dark), var(--sz-red));
  content: "";
}

.sz-problem:nth-child(1),
.sz-problem:nth-child(2) {
  grid-column: span 6;
}

.sz-problem__index {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  place-items: center;
  color: var(--sz-white);
  background: var(--sz-red);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
}

.sz-problem h3 {
  max-width: 350px;
}

.sz-problem p {
  margin-bottom: 0;
  color: var(--sz-ink-soft);
  font-size: 0.96rem;
}

.sz-problem .sz-problem__impact {
  margin-top: 20px;
  padding: 14px 16px;
  color: #6d292e;
  background: var(--sz-red-soft);
  border-left: 4px solid var(--sz-red);
  border-radius: 0 12px 12px 0;
  font-size: 0.86rem;
}

.sz-problem a {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.86rem;
  font-weight: 750;
}

.sz-accountability {
  display: grid;
  gap: 14px;
}

.sz-official {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(190px, 0.46fr) minmax(260px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 5px solid #ff9a82;
  border-radius: 18px;
}

.sz-official strong,
.sz-official span,
.sz-official p {
  display: block;
  margin: 0;
}

.sz-official strong {
  color: var(--sz-white);
  font-size: 1.06rem;
}

.sz-official span {
  color: #ffd9c9;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.sz-official p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.sz-disclaimer {
  max-width: 900px;
  margin-top: 28px;
  padding: 18px 22px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.12);
  border-radius: var(--sz-radius-sm);
  font-size: 0.88rem;
}

.sz-procurement-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 22px;
}

.sz-procurement-stats article {
  min-height: 190px;
  padding: 26px;
  background: var(--sz-white);
  border: 1px solid var(--sz-red-border);
  border-radius: var(--sz-radius);
}

.sz-procurement-stats strong,
.sz-procurement-stats span,
.sz-procurement-stats small {
  display: block;
}

.sz-procurement-stats strong {
  margin-bottom: 12px;
  color: var(--sz-red-dark);
  font-family: var(--sz-serif);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 0.95;
}

.sz-procurement-stats span {
  color: var(--sz-ink);
  font-weight: 800;
  line-height: 1.25;
}

.sz-procurement-stats small {
  margin-top: 10px;
  color: var(--sz-ink-soft);
  font-size: 0.8rem;
}

.sz-procurement-method,
.sz-procurement-disclaimer {
  margin: 0 0 34px;
  padding: 17px 20px;
  color: var(--sz-ink-soft);
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: 14px;
  font-size: 0.84rem;
}

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

.sz-procurement-card {
  position: relative;
  padding: clamp(28px, 3vw, 38px);
  overflow: hidden;
  background: var(--sz-white);
  border: 1px solid var(--sz-red-border);
  border-radius: var(--sz-radius);
  box-shadow: 0 12px 34px rgba(67, 28, 29, 0.06);
}

.sz-procurement-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--sz-red);
  content: "";
}

.sz-procurement-card:last-child {
  grid-column: 1 / -1;
}

.sz-procurement-card__flag {
  display: inline-block;
  margin-bottom: 20px;
  padding: 7px 11px;
  color: var(--sz-red-dark);
  background: var(--sz-red-soft);
  border: 1px solid var(--sz-red-border);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sz-procurement-card h3 {
  max-width: 650px;
}

.sz-procurement-card p {
  color: var(--sz-ink-soft);
  font-size: 0.92rem;
}

.sz-procurement-card .sz-procurement-card__verdict {
  margin: 22px 0;
  padding: 15px 17px;
  color: #65292e;
  background: var(--sz-red-soft);
  border-left: 4px solid var(--sz-red);
  border-radius: 0 12px 12px 0;
  font-size: 0.88rem;
}

.sz-procurement-card a {
  color: var(--sz-red-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.sz-procurement-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.sz-procurement-demands {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
  margin-top: 36px;
  padding: clamp(30px, 5vw, 52px);
  color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(135deg, var(--sz-red-dark), #4f1117);
  border-radius: var(--sz-radius-lg);
}

.sz-procurement-demands .sz-kicker,
.sz-procurement-demands h3 {
  color: var(--sz-white);
}

.sz-procurement-demands ul {
  margin: 0;
  padding-left: 22px;
}

.sz-procurement-demands li {
  margin-bottom: 11px;
}

.sz-procurement-disclaimer {
  margin: 24px 0 0;
  border-left: 5px solid var(--sz-red);
}

.sz-procurement-card--waste {
  color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at 92% 4%, rgba(255, 183, 153, 0.22), transparent 28%),
    linear-gradient(135deg, #941f28, #5a1117 72%);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 54px rgba(90, 17, 23, 0.22);
}

.sz-procurement-card--waste::before {
  height: 7px;
  background: #ffb49f;
}

.sz-procurement-card--waste h3 {
  max-width: 850px;
  color: var(--sz-white);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.sz-procurement-card--waste p {
  max-width: 980px;
  color: rgba(255, 255, 255, 0.8);
}

.sz-procurement-card--waste .sz-procurement-card__flag {
  color: #4a1116;
  background: #ffb49f;
  border-color: rgba(255, 255, 255, 0.2);
}

.sz-waste-card__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 22px;
}

.sz-waste-card__facts span {
  display: flex;
  min-height: 126px;
  padding: 20px;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  font-size: 0.82rem;
  line-height: 1.55;
}

.sz-waste-card__facts strong {
  display: block;
  margin-bottom: 10px;
  color: var(--sz-white);
  font-size: 1.1rem;
  line-height: 1.15;
}

.sz-procurement-card--waste .sz-procurement-card__verdict {
  color: var(--sz-white);
  background: rgba(255, 255, 255, 0.1);
  border-left-color: #ffb49f;
}

.sz-procurement-card--waste .sz-procurement-card__links a {
  color: #ffd3c6;
}

.sz-procurement-card--waste .sz-procurement-card__links a:hover,
.sz-procurement-card--waste .sz-procurement-card__links a:focus-visible {
  color: var(--sz-white);
}

.sz-procurement-card--waste .sz-waste-card__button {
  width: fit-content;
  margin-top: 26px;
  color: #5a1117;
  text-decoration: none;
}

.sz-procurement-card--waste .sz-waste-card__button:hover,
.sz-procurement-card--waste .sz-waste-card__button:focus-visible {
  color: #5a1117;
}

/* Waste investigation. */
.sz-waste-hero {
  padding: clamp(72px, 9vw, 124px) 0;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 180, 159, 0.22), transparent 26%),
    radial-gradient(circle at 96% 92%, rgba(243, 195, 91, 0.12), transparent 25%),
    linear-gradient(145deg, #3f0e13, #78171d 54%, #310b0f);
}

.sz-waste-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.62fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.sz-waste-hero .sz-kicker,
.sz-waste-hero h1 {
  color: var(--sz-white);
}

.sz-waste-hero .sz-kicker::before {
  background: #ffb49f;
}

.sz-waste-hero h1 {
  max-width: 900px;
  margin: 20px 0 0.3em;
  font-size: clamp(2.65rem, 6vw, 5.25rem);
}

.sz-waste-status {
  display: inline-block;
  padding: 8px 12px;
  color: #4a1116;
  background: #ffb49f;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.sz-waste-hero__lead {
  max-width: 780px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.sz-waste-hero__link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 800;
}

.sz-waste-hero__link:hover,
.sz-waste-hero__link:focus-visible {
  color: var(--sz-white);
}

.sz-waste-updated {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
}

.sz-waste-dossier {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  background: rgba(24, 5, 7, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--sz-radius-lg);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.28);
}

.sz-waste-dossier::after {
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 160px;
  height: 160px;
  border: 28px solid rgba(255, 180, 159, 0.08);
  border-radius: 50%;
  content: "";
}

.sz-waste-dossier__label {
  margin-bottom: 16px;
  color: #ffb49f;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sz-waste-dossier h2 {
  color: var(--sz-white);
  font-size: clamp(1.55rem, 2.7vw, 2.2rem);
}

.sz-waste-dossier > p:last-child {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.sz-waste-dossier__facts {
  display: grid;
  gap: 10px;
}

.sz-waste-dossier__facts article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sz-waste-dossier__facts strong {
  color: var(--sz-white);
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.sz-waste-dossier__facts span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.45;
}

.sz-waste-summary {
  padding: 0 0 clamp(56px, 7vw, 86px);
  background: #310b0f;
}

.sz-waste-summary__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--sz-radius);
}

.sz-waste-summary article {
  display: flex;
  min-height: 188px;
  padding: 26px;
  flex-direction: column;
  background: #481016;
}

.sz-waste-summary strong {
  margin-bottom: 14px;
  color: #ffb49f;
  font-size: clamp(1.75rem, 3.4vw, 2.45rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.sz-waste-summary span {
  color: var(--sz-white);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
}

.sz-waste-summary small {
  margin-top: auto;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  line-height: 1.45;
}

.sz-waste-timeline {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.sz-waste-timeline::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 201px;
  width: 2px;
  background: var(--sz-red-border);
  content: "";
}

.sz-waste-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 44px;
  margin-bottom: 22px;
}

.sz-waste-timeline__item::before {
  position: absolute;
  top: 31px;
  left: 194px;
  z-index: 1;
  width: 16px;
  height: 16px;
  background: var(--sz-red);
  border: 4px solid var(--sz-paper);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--sz-red);
  content: "";
}

.sz-waste-timeline__item--plan::before {
  background: var(--sz-sun);
  box-shadow: 0 0 0 2px #b78012;
}

.sz-waste-timeline__date {
  padding-top: 18px;
  text-align: right;
}

.sz-waste-timeline__date time,
.sz-waste-timeline__date span {
  display: block;
}

.sz-waste-timeline__date time {
  color: var(--sz-ink);
  font-size: 0.84rem;
  font-weight: 850;
}

.sz-waste-timeline__date span {
  margin-top: 4px;
  color: var(--sz-ink-soft);
  font-size: 0.72rem;
}

.sz-waste-timeline__body {
  padding: clamp(26px, 4vw, 40px);
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  box-shadow: 0 14px 42px rgba(19, 63, 58, 0.08);
}

.sz-waste-timeline__body h3 {
  max-width: 720px;
  margin-top: 16px;
}

.sz-waste-timeline__body p {
  color: var(--sz-ink-soft);
  font-size: 0.9rem;
}

.sz-waste-timeline__body > a {
  color: var(--sz-red-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.sz-waste-result {
  display: inline-block;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
}

.sz-waste-result--failed {
  color: var(--sz-red-dark);
  background: var(--sz-red-soft);
  border: 1px solid var(--sz-red-border);
}

.sz-waste-result--pending {
  color: #604708;
  background: #fff4ce;
  border: 1px solid rgba(183, 128, 18, 0.32);
}

.sz-waste-timeline__body .sz-waste-timeline__note {
  margin: 22px 0;
  padding: 14px 16px;
  color: #63343a;
  background: var(--sz-red-soft);
  border-left: 4px solid var(--sz-red);
  border-radius: 0 12px 12px 0;
  font-size: 0.82rem;
}

.sz-waste-timeline__item--plan .sz-waste-timeline__note {
  color: #5c490e;
  background: #fff8df;
  border-left-color: #b78012;
}

.sz-waste-failures {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sz-waste-failures article {
  padding: clamp(24px, 3vw, 34px);
  background: var(--sz-white);
  border: 1px solid var(--sz-red-border);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(67, 28, 29, 0.05);
}

.sz-waste-failures article > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--sz-white);
  background: var(--sz-red);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 850;
}

.sz-waste-failures p {
  margin: 0;
  color: var(--sz-ink-soft);
  font-size: 0.86rem;
}

.sz-waste-risk {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(400px, 0.72fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.sz-waste-risk > div > p:not(.sz-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.sz-waste-risk__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
}

.sz-waste-risk__points article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.sz-waste-risk__points strong,
.sz-waste-risk__points span {
  display: block;
}

.sz-waste-risk__points strong {
  margin-bottom: 8px;
  color: var(--sz-white);
  font-size: 0.86rem;
}

.sz-waste-risk__points span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  line-height: 1.5;
}

.sz-waste-map {
  margin: 0;
}

.sz-waste-map img {
  width: 100%;
  background: var(--sz-white);
  border: 8px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--sz-radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.sz-waste-map figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  line-height: 1.55;
}

.sz-waste-map figcaption strong {
  color: rgba(255, 255, 255, 0.82);
}

.sz-waste-map figcaption a {
  color: #bfe3d5;
}

.sz-section--responsibility {
  background:
    radial-gradient(circle at 92% 8%, rgba(180, 35, 44, 0.08), transparent 25%),
    #fffaf7;
}

.sz-section--responsibility .sz-kicker {
  color: var(--sz-red-dark);
}

.sz-section--responsibility .sz-kicker::before {
  background: var(--sz-red);
}

.sz-waste-legal-note {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 30px;
  padding: 22px 24px;
  color: #662f35;
  background: var(--sz-red-soft);
  border: 1px solid var(--sz-red-border);
  border-radius: 16px;
}

.sz-waste-legal-note > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--sz-white);
  background: var(--sz-red);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 900;
}

.sz-waste-legal-note p {
  margin: 0;
}

.sz-waste-responsibility {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sz-waste-responsibility article {
  padding: clamp(26px, 3vw, 36px);
  background: var(--sz-white);
  border: 1px solid var(--sz-red-border);
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(67, 28, 29, 0.06);
}

.sz-waste-responsibility article > span {
  display: block;
  margin-bottom: 16px;
  color: var(--sz-red);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sz-waste-responsibility article > p {
  color: var(--sz-ink-soft);
  font-size: 0.86rem;
}

.sz-waste-responsibility article > strong {
  display: block;
  margin-top: 22px;
  padding-top: 18px;
  color: var(--sz-red-dark);
  border-top: 1px solid var(--sz-red-border);
  font-size: 0.78rem;
}

.sz-waste-contact-note {
  margin: 24px 0 0;
  padding-left: 18px;
  color: var(--sz-ink-soft);
  border-left: 4px solid var(--sz-sun);
  font-size: 0.78rem;
}

.sz-waste-demands {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.sz-waste-demands > div {
  position: sticky;
  top: 110px;
}

.sz-waste-demands > div > p:last-child {
  color: var(--sz-ink-soft);
}

.sz-waste-demands ol {
  margin: 0;
  padding: 0;
  counter-reset: waste-demands;
  list-style: none;
}

.sz-waste-demands li {
  position: relative;
  min-height: 58px;
  margin-bottom: 12px;
  padding: 16px 18px 16px 66px;
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: 14px;
  counter-increment: waste-demands;
  font-size: 0.86rem;
}

.sz-waste-demands li::before {
  position: absolute;
  top: 13px;
  left: 15px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--sz-white);
  background: var(--sz-green);
  border-radius: 50%;
  content: counter(waste-demands, decimal-leading-zero);
  font-size: 0.66rem;
  font-weight: 850;
}

.sz-section--photo-evidence {
  color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at 8% 92%, rgba(255, 180, 159, 0.2), transparent 26%),
    linear-gradient(135deg, #6f161d, #3d0d12);
}

.sz-waste-photo-callout {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 100px);
  align-items: center;
}

.sz-waste-photo-callout .sz-kicker,
.sz-waste-photo-callout h2 {
  color: var(--sz-white);
}

.sz-waste-photo-callout .sz-kicker::before {
  background: #ffb49f;
}

.sz-waste-photo-callout p {
  color: rgba(255, 255, 255, 0.72);
}

.sz-waste-photo-callout__empty {
  position: relative;
  display: flex;
  min-height: 360px;
  padding: 38px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(-45deg, transparent 0 18px, rgba(255, 255, 255, 0.035) 18px 36px);
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-radius: var(--sz-radius-lg);
}

.sz-waste-photo-callout__empty::before {
  position: absolute;
  top: 42px;
  left: 50%;
  width: 96px;
  height: 74px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  content: "";
  transform: translateX(-50%);
}

.sz-waste-photo-callout__empty::after {
  position: absolute;
  top: 82px;
  left: 50%;
  width: 46px;
  height: 46px;
  border-top: 4px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid rgba(255, 255, 255, 0.2);
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.sz-waste-photo-callout__empty span,
.sz-waste-photo-callout__empty strong,
.sz-waste-photo-callout__empty small {
  position: relative;
  z-index: 1;
  display: block;
}

.sz-waste-photo-callout__empty span {
  color: #ffb49f;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sz-waste-photo-callout__empty strong {
  margin: 8px 0;
  color: var(--sz-white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.sz-waste-photo-callout__empty small {
  color: rgba(255, 255, 255, 0.52);
}

@media (max-width: 1050px) {
  .sz-waste-summary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .sz-waste-risk {
    grid-template-columns: 1fr;
  }

  .sz-waste-map {
    max-width: 780px;
  }
}

@media (max-width: 860px) {
  .sz-waste-card__facts,
  .sz-waste-hero__grid,
  .sz-waste-responsibility,
  .sz-waste-demands,
  .sz-waste-photo-callout {
    grid-template-columns: 1fr;
  }

  .sz-waste-timeline::before {
    left: 7px;
  }

  .sz-waste-timeline__item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 32px;
  }

  .sz-waste-timeline__item::before {
    top: 24px;
    left: 0;
  }

  .sz-waste-timeline__date {
    padding-top: 14px;
    text-align: left;
  }

  .sz-waste-demands > div {
    position: static;
  }

  .sz-waste-photo-callout__empty {
    max-width: 560px;
  }
}

@media (max-width: 620px) {
  .sz-waste-summary__grid,
  .sz-waste-failures,
  .sz-waste-risk__points {
    grid-template-columns: 1fr;
  }

  .sz-waste-hero__grid {
    gap: 34px;
  }

  .sz-waste-dossier,
  .sz-waste-timeline__body,
  .sz-waste-failures article,
  .sz-waste-responsibility article {
    padding: 24px 20px;
  }

  .sz-waste-dossier__facts article {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .sz-waste-legal-note {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .sz-waste-legal-note > span {
    width: 44px;
    height: 44px;
  }

  .sz-waste-photo-callout__empty {
    min-height: 300px;
    padding: 26px;
  }
}

.sz-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sz-plan-card {
  padding: clamp(27px, 3vw, 38px);
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
}

.sz-plan-card__time {
  display: inline-block;
  margin-bottom: 24px;
  padding: 7px 12px;
  color: var(--sz-green);
  background: var(--sz-mint);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sz-plan-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.sz-plan-card li {
  position: relative;
  margin: 0 0 13px;
  padding-left: 22px;
  color: var(--sz-ink-soft);
  font-size: 0.93rem;
}

.sz-plan-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--sz-sun);
  border-radius: 50%;
  content: "";
}

.sz-leader {
  background: linear-gradient(125deg, #e5eee6 0%, var(--sz-cream) 100%);
}

.sz-leader__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}

.sz-leader__portrait {
  position: relative;
}

.sz-leader__portrait::before {
  position: absolute;
  z-index: 0;
  top: -22px;
  right: -22px;
  width: 74%;
  height: 56%;
  background: var(--sz-sun);
  border-radius: var(--sz-radius-lg);
  content: "";
}

.sz-leader__portrait picture,
.sz-leader__portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--sz-radius-lg);
}

.sz-leader__portrait img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--sz-shadow);
}

.sz-leader__copy blockquote {
  margin: 30px 0;
  padding: 0 0 0 24px;
  border-left: 4px solid var(--sz-sun);
  font-family: var(--sz-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.45;
}

.sz-story-hero {
  padding: clamp(68px, 9vw, 118px) 0;
  color: rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at 12% 18%, rgba(180, 35, 44, 0.34), transparent 30%),
    linear-gradient(145deg, #0e2926, #173b35 58%, #291215);
}

.sz-story-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.sz-story-hero .sz-kicker,
.sz-story-hero h1 {
  color: var(--sz-white);
}

.sz-story-hero h1 {
  margin: 18px 0 0.28em;
}

.sz-story-hero__lead {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.sz-story-badge {
  display: inline-block;
  padding: 8px 12px;
  color: #4a1116;
  background: #ffb49f;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sz-story-photo {
  margin: 0;
}

.sz-story-photo picture,
.sz-story-photo img {
  width: 100%;
}

.sz-story-photo img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--sz-radius-lg);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.sz-story-photo figcaption {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  line-height: 1.5;
}

.sz-story-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.sz-editor-note {
  min-height: 100%;
  padding: 24px;
  color: var(--sz-ink-soft);
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-top: 5px solid var(--sz-sun);
  border-radius: 16px;
}

.sz-editor-note strong {
  display: block;
  margin-bottom: 9px;
  color: var(--sz-ink);
}

.sz-editor-note p {
  margin: 0;
  font-size: 0.88rem;
}

.sz-editor-note--danger {
  color: #6d373a;
  background: var(--sz-red-soft);
  border-color: var(--sz-red-border);
  border-top-color: var(--sz-red);
}

.sz-editor-note--danger strong {
  color: var(--sz-red-dark);
}

.sz-interview-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: start;
}

.sz-interview-aside {
  position: sticky;
  top: 118px;
}

.sz-interview-aside > p:last-child {
  color: var(--sz-ink-soft);
  font-size: 0.86rem;
}

.sz-interview {
  display: grid;
  gap: 16px;
}

.sz-interview__item {
  padding: clamp(24px, 3vw, 34px);
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
}

.sz-interview__item h3 {
  margin-bottom: 16px;
  color: var(--sz-green-2);
  font-size: clamp(1.08rem, 1.8vw, 1.38rem);
}

.sz-interview__item p {
  margin: 0;
  font-family: var(--sz-serif);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.62;
}

.sz-interview__item--danger {
  background: var(--sz-red-soft);
  border: 2px solid var(--sz-red-border);
}

.sz-interview__item--danger h3 {
  color: var(--sz-red-dark);
}

.sz-interview__quote {
  margin: 10px 0 0;
  padding: clamp(28px, 4vw, 44px);
  color: var(--sz-white);
  background: linear-gradient(135deg, var(--sz-red-dark), var(--sz-red));
  border-radius: var(--sz-radius);
  font-family: var(--sz-serif);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.35;
}

.sz-stay-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sz-stay-grid article {
  padding: 28px;
  background: var(--sz-white);
  border: 1px solid var(--sz-red-border);
  border-top: 5px solid var(--sz-red);
  border-radius: var(--sz-radius);
}

.sz-stay-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--sz-white);
  background: var(--sz-red);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 850;
}

.sz-stay-grid h3 {
  font-size: 1.15rem;
}

.sz-stay-grid p {
  margin: 0;
  color: var(--sz-ink-soft);
  font-size: 0.88rem;
}

.sz-cta {
  padding: clamp(58px, 8vw, 96px) 0;
  color: var(--sz-white);
  background: var(--sz-river);
}

.sz-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
}

.sz-cta h2 {
  max-width: 800px;
  margin-bottom: 0.25em;
  color: var(--sz-white);
}

.sz-cta p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.sz-page-hero {
  padding: clamp(78px, 10vw, 130px) 0 clamp(62px, 8vw, 100px);
  background:
    radial-gradient(circle at 85% 20%, rgba(243, 195, 91, 0.28), transparent 20%),
    linear-gradient(145deg, var(--sz-cream), #e2eee7);
}

.sz-page-hero--compact {
  min-height: 62vh;
  display: grid;
  align-items: center;
}

.sz-page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.sz-page-hero p:not(.sz-kicker) {
  max-width: 760px;
  color: var(--sz-ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.sz-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.sz-placeholder {
  position: relative;
  grid-column: span 4;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(19, 63, 58, 0.82), rgba(77, 143, 160, 0.72)),
    var(--sz-green);
  border-radius: var(--sz-radius);
}

.sz-placeholder:nth-child(1),
.sz-placeholder:nth-child(5) {
  grid-column: span 8;
}

.sz-placeholder::before,
.sz-placeholder::after {
  position: absolute;
  content: "";
}

.sz-placeholder::before {
  right: -10%;
  bottom: -35%;
  width: 90%;
  height: 70%;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 50% 50% 0 0;
  transform: rotate(-8deg);
}

.sz-placeholder::after {
  top: 35px;
  right: 38px;
  width: 58px;
  height: 58px;
  background: var(--sz-sun);
  border-radius: 50%;
}

.sz-placeholder__icon {
  position: absolute;
  top: 32px;
  left: 32px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--sz-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 15px;
  font-size: 1.4rem;
}

.sz-placeholder figcaption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
}

.sz-placeholder figcaption strong {
  display: block;
  margin-bottom: 7px;
  color: var(--sz-white);
  font-size: 1.18rem;
}

.sz-gallery-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--sz-mint);
  border-radius: var(--sz-radius-sm);
}

.sz-gallery-note span {
  font-size: 1.65rem;
}

.sz-gallery-note p {
  margin: 0;
  color: var(--sz-ink-soft);
}

.sz-contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: start;
}

.sz-contact-aside {
  position: sticky;
  top: 116px;
}

.sz-contact-aside__item {
  padding: 20px 0;
  border-bottom: 1px solid var(--sz-border);
}

.sz-contact-aside__item:first-of-type {
  border-top: 1px solid var(--sz-border);
}

.sz-contact-aside__item strong,
.sz-contact-aside__item span {
  display: block;
}

.sz-contact-aside__item strong {
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.sz-contact-aside__item span {
  color: var(--sz-ink-soft);
  font-size: 0.9rem;
}

.sz-form-wrap {
  padding: clamp(28px, 5vw, 52px);
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius-lg);
  box-shadow: var(--sz-shadow);
}

.sz-form-wrap h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}

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

.sz-field {
  display: grid;
  gap: 8px;
}

.sz-field--full {
  grid-column: 1 / -1;
}

.sz-field label,
.sz-field > span:first-child {
  color: var(--sz-ink);
  font-size: 0.88rem;
  font-weight: 750;
}

.sz-required {
  color: #a73e2a;
}

.sz-field input,
.sz-field select,
.sz-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  color: var(--sz-ink);
  background: #fbfaf5;
  border: 1px solid rgba(23, 51, 47, 0.24);
  border-radius: 11px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.sz-field textarea {
  min-height: 180px;
  resize: vertical;
}

.sz-field input:focus,
.sz-field select:focus,
.sz-field textarea:focus {
  background: var(--sz-white);
  border-color: var(--sz-river);
  box-shadow: 0 0 0 4px rgba(77, 143, 160, 0.17);
}

.sz-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--sz-ink-soft);
  font-size: 0.84rem;
}

.sz-consent input {
  width: 19px;
  height: 19px;
  margin-top: 3px;
  accent-color: var(--sz-green-2);
}

.sz-form-actions {
  display: flex;
  margin-top: 26px;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.sz-form-actions p {
  max-width: 330px;
  margin: 0;
  color: var(--sz-ink-soft);
  font-size: 0.78rem;
}

.sz-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.sz-alert {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 650;
}

.sz-alert--success {
  color: #174c34;
  background: #dff3e7;
  border: 1px solid #9bd0ae;
}

.sz-alert--error {
  color: #702a20;
  background: #f9e4df;
  border: 1px solid #e9b7aa;
}

.sz-standard-page {
  max-width: var(--sz-reading);
  padding-top: clamp(70px, 9vw, 110px);
  padding-bottom: clamp(70px, 9vw, 110px);
}

.sz-prose {
  max-width: var(--sz-reading);
}

.sz-prose h2,
.sz-prose h3 {
  margin-top: 1.55em;
}

.sz-prose li {
  margin-bottom: 0.55em;
}

.sz-sources {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.sz-sources li {
  padding: 15px 18px;
  color: var(--sz-ink-soft);
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: 12px;
  font-size: 0.87rem;
}

.sz-sources a {
  font-weight: 750;
}

.sz-footer {
  padding: 70px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  background: #0e2b27;
}

.sz-footer__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(2, minmax(150px, 0.42fr));
  gap: clamp(36px, 7vw, 90px);
}

.sz-brand--footer,
.sz-brand--footer:hover {
  color: var(--sz-white);
}

.sz-brand--footer small {
  color: rgba(255, 255, 255, 0.6);
}

.sz-footer__grid > div > p {
  max-width: 470px;
  margin-top: 22px;
  font-size: 0.92rem;
}

.sz-footer nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.sz-footer nav strong {
  margin-bottom: 7px;
  color: var(--sz-white);
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.sz-footer nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  text-decoration: none;
}

.sz-footer nav a:hover {
  color: var(--sz-sun);
}

.sz-footer__bottom {
  display: flex;
  margin-top: 58px;
  padding-top: 22px;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sz-footer__bottom p {
  max-width: 590px;
  margin: 0;
  font-size: 0.76rem;
}

@media (max-width: 1050px) {
  .sz-facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sz-problem,
  .sz-problem:nth-child(1),
  .sz-problem:nth-child(2) {
    grid-column: span 6;
  }

  .sz-problem:last-child {
    grid-column: 4 / span 6;
  }

  .sz-placeholder {
    grid-column: span 6;
  }

  .sz-placeholder:nth-child(1),
  .sz-placeholder:nth-child(5) {
    grid-column: span 6;
  }

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

@media (max-width: 860px) {
  .admin-bar .sz-header {
    top: 46px;
  }

  .sz-header__inner {
    min-height: 70px;
  }

  .sz-menu-toggle {
    display: inline-flex;
  }

  .sz-nav {
    position: absolute;
    z-index: 999;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    padding: 32px max(20px, calc((100vw - var(--sz-shell)) / 2));
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    background: #fffdf7;
    box-shadow: 0 24px 50px rgba(19, 63, 58, 0.12);
  }

  .admin-bar .sz-nav {
    top: 100%;
    height: calc(100vh - 116px);
    height: calc(100dvh - 116px);
  }

  .sz-nav.is-open {
    display: flex;
  }

  .sz-nav > a:not(.sz-button) {
    padding: 18px 4px;
    border-bottom: 1px solid var(--sz-border);
    font-size: 1.15rem;
  }

  .sz-nav > a:not(.sz-button)::after {
    display: none;
  }

  .sz-nav .sz-button {
    margin-top: 24px;
  }

  .sz-hero {
    min-height: auto;
  }

  .sz-hero__grid,
  .sz-section__head,
  .sz-leader__grid,
  .sz-contact-layout,
  .sz-story-hero__grid,
  .sz-story-intro,
  .sz-interview-layout,
  .sz-procurement-demands {
    grid-template-columns: 1fr;
  }

  .sz-story-hero__grid {
    gap: 44px;
  }

  .sz-story-photo {
    max-width: 720px;
  }

  .sz-interview-aside {
    position: static;
  }

  .sz-procurement-grid,
  .sz-procurement-stats {
    grid-template-columns: 1fr;
  }

  .sz-procurement-card:last-child {
    grid-column: auto;
  }

  .sz-hero__art {
    min-height: 320px;
    max-width: 560px;
  }

  .sz-manifesto {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 24px;
  }

  .sz-manifesto__mark {
    position: static;
  }

  .sz-plan-grid {
    grid-template-columns: 1fr;
  }

  .sz-plan-card {
    display: grid;
    grid-template-columns: minmax(180px, 0.4fr) 1fr;
    column-gap: 30px;
  }

  .sz-plan-card__time {
    justify-self: start;
  }

  .sz-plan-card h3 {
    grid-column: 1;
  }

  .sz-plan-card ul {
    grid-row: 1 / span 3;
    grid-column: 2;
    margin-top: 0;
  }

  .sz-official {
    grid-template-columns: minmax(170px, 0.55fr) 1fr;
  }

  .sz-official p {
    grid-column: 1 / -1;
  }

  .sz-leader__portrait {
    width: min(520px, calc(100% - 24px));
  }

  .sz-cta__inner {
    grid-template-columns: 1fr;
  }

  .sz-cta__inner .sz-button {
    justify-self: start;
  }

  .sz-contact-aside {
    position: static;
  }

  .sz-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .sz-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --sz-shell: min(100% - 28px, 1180px);
    --sz-radius: 20px;
    --sz-radius-lg: 26px;
  }

  body {
    font-size: 16px;
  }

  .sz-brand img {
    width: 42px;
    height: 42px;
  }

  .sz-brand strong {
    font-size: 0.94rem;
  }

  .sz-brand small {
    font-size: 0.66rem;
  }

  .sz-menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .sz-hero {
    padding-top: 62px;
  }

  .sz-hero__art {
    min-height: 265px;
  }

  .sz-hero__sun {
    width: 92px;
    height: 92px;
  }

  .sz-hero__tree {
    bottom: 62px;
    width: 90px;
    height: 155px;
  }

  .sz-hero__river {
    height: 112px;
  }

  .sz-hero__label {
    right: 28px;
    bottom: 8px;
    max-width: none;
  }

  .sz-manifesto {
    display: block;
  }

  .sz-manifesto__mark {
    margin-bottom: 30px;
  }

  .sz-facts-grid,
  .sz-form-grid {
    grid-template-columns: 1fr;
  }

  .sz-fact {
    min-height: auto;
  }

  .sz-problem,
  .sz-problem:nth-child(1),
  .sz-problem:nth-child(2),
  .sz-problem:last-child,
  .sz-placeholder,
  .sz-placeholder:nth-child(1),
  .sz-placeholder:nth-child(5) {
    grid-column: 1 / -1;
  }

  .sz-problem {
    min-height: auto;
  }

  .sz-red-alert {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .sz-red-alert__icon {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }

  .sz-procurement-card,
  .sz-procurement-stats article,
  .sz-stay-grid article {
    padding: 24px 20px;
  }

  .sz-stay-grid {
    grid-template-columns: 1fr;
  }

  .sz-official {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .sz-official p {
    grid-column: 1;
    margin-top: 7px;
  }

  .sz-plan-card {
    display: block;
  }

  .sz-plan-card ul {
    margin-top: 18px;
  }

  .sz-leader__portrait::before {
    top: -14px;
    right: -14px;
  }

  .sz-placeholder {
    min-height: 300px;
  }

  .sz-form-wrap {
    padding: 24px 18px;
  }

  .sz-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sz-form-actions .sz-button {
    width: 100%;
  }

  .sz-footer__grid {
    grid-template-columns: 1fr;
  }

  .sz-footer__grid > div:first-child {
    grid-column: 1;
  }

  .sz-footer__bottom {
    flex-direction: column;
  }
}

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

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

@media print {
  .sz-header,
  .sz-footer,
  .sz-button,
  .sz-menu-toggle {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .sz-section,
  .sz-page-hero,
  .sz-story-hero {
    padding: 28px 0;
    color: #000;
    background: #fff;
  }
}
