:root {
  --ink: #0a1016;
  --ink-soft: #1b2732;
  --night: #071019;
  --night-2: #0e1b26;
  --paper: #f2eee5;
  --paper-deep: #e7dfd0;
  --white: #fffdf8;
  --muted: #66727d;
  --line: rgba(10, 16, 22, 0.15);
  --line-dark: rgba(255, 253, 248, 0.16);
  --amber: #e0a94f;
  --amber-soft: #f3d49e;
  --danger: #e56d5a;
  --shell: min(1180px, calc(100% - 48px));
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(2.65rem, 6vw, 5.5rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.3;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--night);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: flex;
  width: var(--shell);
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--night);
  background: var(--white);
  border-radius: 50%;
  font-size: 0.78rem;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.83rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

.nav a:not(.nav-accent) {
  opacity: 0.78;
  transition: opacity 0.2s ease;
}

.nav a:not(.nav-accent):hover,
.nav a:not(.nav-accent):focus-visible {
  opacity: 1;
}

.lang-switch {
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  line-height: 1;
}

.nav-accent {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(880px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo {
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.82) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 9, 14, 0.92) 0%, rgba(4, 9, 14, 0.65) 43%, rgba(4, 9, 14, 0.16) 78%),
    linear-gradient(0deg, rgba(4, 9, 14, 0.7) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding-top: 92px;
}

.eyebrow,
.section-kicker,
.card-label {
  margin-bottom: 20px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-title {
  max-width: 920px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 36px;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: var(--night);
  background: var(--white);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(5, 10, 15, 0.2);
  backdrop-filter: blur(8px);
}

.hero-status {
  position: relative;
  z-index: 1;
  display: grid;
  align-self: end;
  padding: 26px 0 28px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.86rem;
}

.hero-status strong {
  color: var(--white);
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--danger);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(229, 109, 90, 0.16);
}

.status-date {
  text-align: right;
}

.section {
  padding: 130px 0;
}

.section-intro {
  background: var(--white);
}

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

.context-heading {
  max-width: 980px;
  margin-bottom: 72px;
}

.context-heading .lead {
  max-width: 900px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.context-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.context-card {
  min-height: 310px;
  padding: 38px;
  background: rgba(255, 253, 248, 0.44);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.context-card h3 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.context-card p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.translation-note {
  margin-top: -30px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: italic;
}

.intro-grid,
.split,
.goal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 10vw, 150px);
}

.intro-copy {
  padding-top: 14px;
}

.lead,
.statement-lead {
  font-size: clamp(1.25rem, 2.2vw, 1.72rem);
  line-height: 1.45;
}

.intro-copy p:not(.lead),
.statement > p:not(.statement-lead) {
  color: var(--ink-soft);
}

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

.fact-card {
  padding: 36px 34px 34px 0;
}

.fact-card + .fact-card {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.fact-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.fact-index {
  display: block;
  margin-bottom: 38px;
  color: var(--amber);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.section-dark {
  color: var(--white);
  background: var(--night);
}

.section-heading {
  display: grid;
  margin-bottom: 72px;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.45fr);
  column-gap: 80px;
}

.section-heading .section-kicker,
.section-heading h2 {
  grid-column: 1;
}

.section-heading > p:last-child {
  grid-column: 2;
  grid-row: 2;
  color: rgba(255, 253, 248, 0.62);
}

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

.timeline-item {
  position: relative;
  display: grid;
  padding: 35px 28px 35px 42px;
  grid-template-columns: minmax(170px, 0.35fr) minmax(0, 1fr);
  gap: 44px;
  border-bottom: 1px solid var(--line-dark);
}

.timeline-item::before {
  position: absolute;
  top: 43px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: rgba(255, 253, 248, 0.28);
  border-radius: 50%;
  content: "";
}

.timeline-item time {
  color: var(--amber-soft);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeline-item h3 {
  font-size: 1.35rem;
}

.timeline-item p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.62);
}

.timeline-focus {
  background: rgba(224, 169, 79, 0.08);
}

.timeline-focus::before {
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(224, 169, 79, 0.12);
}

.sticky-title {
  align-self: start;
}

.statement blockquote {
  margin: 44px 0;
  padding: 6px 0 6px 26px;
  border-left: 3px solid var(--amber);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.25;
}

.notice {
  margin-top: 44px;
  padding: 26px 28px;
  background: #f4f0e8;
  border-radius: 14px;
}

.notice strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.notice p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.section-system {
  color: var(--white);
  background: #111c25;
}

.system-heading {
  max-width: 980px;
  margin-bottom: 72px;
}

.system-heading .lead {
  max-width: 900px;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.7);
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.system-card {
  min-height: 330px;
  padding: 38px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.system-card h3 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.system-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.62);
}

.system-index {
  display: block;
  margin-bottom: 54px;
  color: var(--amber);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.system-thesis {
  display: grid;
  margin-top: 88px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(46px, 8vw, 110px);
  align-items: start;
}

.system-thesis blockquote {
  margin-bottom: 0;
  padding-left: 28px;
  border-left: 3px solid var(--amber);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.8vw, 3.4rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.system-thesis p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.62);
}

.legislative-questions {
  margin-top: 104px;
  padding: clamp(36px, 6vw, 72px);
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
}

.legislative-questions h3 {
  max-width: 900px;
  margin-bottom: 42px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.legislative-questions ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: questions;
  border-top: 1px solid var(--line);
}

.legislative-questions li {
  position: relative;
  padding: 24px 0 24px 64px;
  border-bottom: 1px solid var(--line);
  counter-increment: questions;
}

.legislative-questions li::before {
  position: absolute;
  left: 0;
  color: #9b6d22;
  content: "0" counter(questions);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.law-note {
  margin-top: 30px;
  padding: 24px 28px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
}

.law-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--amber-soft);
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.law-note p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.6);
  font-size: 0.87rem;
}

.law-note a {
  color: rgba(255, 253, 248, 0.88);
  text-underline-offset: 3px;
}

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

.duma-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px clamp(60px, 10vw, 150px);
}

.addressee-card {
  align-self: start;
  padding: 40px;
  background: var(--night);
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(23, 19, 12, 0.15);
}

.addressee-card h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.addressee-card p:not(.card-label) {
  color: rgba(255, 253, 248, 0.68);
}

.addressee-list {
  display: grid;
  gap: 0;
}

.addressee-person {
  padding: 24px 0;
}

.addressee-person:first-child {
  padding-top: 0;
}

.addressee-person + .addressee-person {
  border-top: 1px solid var(--line-dark);
}

.addressee-person p {
  margin-bottom: 0;
  font-size: 0.91rem;
}

.request-list {
  grid-column: 1 / -1;
}

.request-list ol {
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(10, 16, 22, 0.2);
}

.request-list li {
  display: grid;
  padding: 24px 0;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  border-bottom: 1px solid rgba(10, 16, 22, 0.2);
}

.request-list li > span {
  color: #9b6d22;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.request-list li p {
  max-width: 840px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.section-goal {
  color: var(--white);
  background: var(--night-2);
}

.goal-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: goals;
  border-top: 1px solid var(--line-dark);
}

.goal-list li {
  position: relative;
  padding: 22px 0 22px 50px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 253, 248, 0.76);
  counter-increment: goals;
}

.goal-list li::before {
  position: absolute;
  left: 0;
  color: var(--amber);
  content: "0" counter(goals);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.section-contact {
  background: var(--white);
}

.contact-card {
  padding: clamp(42px, 7vw, 90px);
  color: var(--white);
  background: var(--night);
  border-radius: calc(var(--radius) + 8px);
}

.contact-card h2 {
  max-width: 920px;
}

.contact-card > p:not(.section-kicker) {
  max-width: 740px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 1.08rem;
}

.contact-card .response-note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.92rem;
}

.contact-link {
  display: inline-flex;
  margin-top: 24px;
  align-items: center;
  gap: 14px;
  color: var(--amber-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 3vw, 2.35rem);
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}

.site-footer {
  padding: 50px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1.6fr;
  gap: 50px;
  align-items: start;
  font-size: 0.84rem;
}

.footer-grid p {
  margin-bottom: 4px;
  color: var(--muted);
}

.footer-note {
  max-width: 560px;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

@media (min-width: 900px) {
  .sticky-title {
    position: sticky;
    top: 40px;
  }
}

@media (max-width: 1120px) and (min-width: 901px) {
  .nav {
    gap: 16px;
    font-size: 0.72rem;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .nav a:not(.nav-accent):not(.lang-switch) {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 9, 14, 0.88), rgba(4, 9, 14, 0.35)),
      linear-gradient(0deg, rgba(4, 9, 14, 0.82), rgba(4, 9, 14, 0.08) 58%);
  }

  .hero-content {
    align-self: center;
  }

  .section {
    padding: 90px 0;
  }

  .intro-grid,
  .split,
  .goal-grid,
  .duma-grid,
  .section-heading,
  .system-thesis {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .system-card {
    min-height: 0;
  }

  .context-card {
    min-height: 0;
  }

  .section-heading .section-kicker,
  .section-heading h2,
  .section-heading > p:last-child {
    grid-column: 1;
  }

  .section-heading > p:last-child {
    grid-row: auto;
  }

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

  .fact-card,
  .fact-card + .fact-card {
    padding: 28px 0;
    border-left: 0;
  }

  .fact-card + .fact-card {
    border-top: 1px solid var(--line);
  }

  .fact-index {
    margin-bottom: 18px;
  }

  .request-list {
    grid-column: 1;
  }

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

  .footer-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
  }

  body {
    font-size: 16px;
  }

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

  .brand > span:last-child {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .nav-accent {
    padding: 9px 13px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-photo {
    object-position: 57% 50%;
  }

  .hero-content {
    padding-top: 78px;
  }

  .hero-status {
    grid-template-columns: auto 1fr;
  }

  .status-date {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  h2 {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
  }

  .timeline-item {
    padding: 28px 8px 28px 30px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .timeline-item::before {
    top: 35px;
  }

  .addressee-card {
    padding: 30px 24px;
  }

  .request-list li {
    grid-template-columns: 44px 1fr;
    gap: 8px;
  }

  .contact-card {
    width: calc(100% - 16px);
    padding: 42px 24px;
  }

  .contact-link {
    overflow-wrap: anywhere;
  }

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

  .footer-note {
    grid-column: 1;
  }
}

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

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