/* Wide linear editorial layout — revision 3, 24.08.2026 */
:root {
  --page: #f5f7f5;
  --surface: #ffffff;
  --ink: #0e1514;
  --muted: #5e6967;
  --teal: #0aa7a0;
  --teal-dark: #087c77;
  --teal-pale: #e2f2f0;
  --line: #d8e1df;
  --content-max: 1720px;
  --page-gutter: clamp(20px, 3vw, 56px);
  --section-space: clamp(78px, 7vw, 116px);
}

html {
  scroll-padding-top: 96px;
}

body {
  overflow-x: clip;
  color: var(--ink);
  background: var(--page);
}

.page-shell {
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: var(--content-max);
}

.site-header {
  top: 18px;
  width: calc(100% - 32px);
  max-width: var(--content-max);
  height: 66px;
  padding: 0 9px 0 22px;
  border-color: rgba(12, 51, 48, 0.06);
  box-shadow: 0 16px 42px rgba(11, 47, 44, 0.07);
}

.main-nav {
  gap: clamp(20px, 2vw, 34px);
}

.main-nav a {
  color: #384341;
}

.header-cta {
  min-width: 150px;
  height: 50px;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 480ms ease, transform 580ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--delay {
  transition-delay: 80ms;
}

.story-kicker {
  margin: 0 0 20px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Hero */
.editorial-hero {
  display: block;
  min-height: 0;
  padding-top: 126px;
  padding-bottom: 28px;
}

.editorial-hero__card {
  position: relative;
  display: grid;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(10, 91, 86, 0.08);
  border-radius: 44px;
  background: var(--surface);
  box-shadow: 0 28px 70px rgba(11, 47, 44, 0.09);
  isolation: isolate;
}

.editorial-hero__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  width: 100%;
  max-width: 820px;
  min-width: 0;
  padding: clamp(54px, 5.6vw, 94px);
  padding-right: 0;
}

.editorial-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(68px, 5.4vw, 102px);
  font-weight: 820;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.editorial-hero h1 em {
  color: var(--teal);
  font-style: normal;
}

.editorial-hero__lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.48;
}

.editorial-hero__visual {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 auto;
  width: 74%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}

.editorial-hero__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

/* Live campaign case directly under the hero */
.hero-impact {
  padding-bottom: clamp(52px, 6vw, 92px);
}

.hero-impact__card {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  color: #fff;
  background: #111817;
  box-shadow: 0 28px 70px rgba(11, 47, 44, 0.12);
}

.impact-dashboard--hero {
  max-width: none;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
}

.impact-dashboard--hero strong {
  font-variant-numeric: tabular-nums;
}

.hero-impact__message {
  display: flex;
  align-items: center;
  padding: clamp(38px, 4.4vw, 64px) clamp(28px, 6vw, 88px) clamp(42px, 5vw, 70px);
  flex-direction: column;
  text-align: center;
}

.hero-impact__message .story-kicker {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.58);
}

.hero-impact__message h2 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-impact__message > p:not(.story-kicker) {
  max-width: 840px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.58;
}

.hero-impact__cta {
  min-width: 280px;
  margin-top: 32px;
}

/* One shared editorial line for every chapter */
.story {
  display: block;
}

.story-section,
.story-section__inner {
  display: block;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.story-section--tint {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: var(--teal-pale);
}

.story-index {
  grid-column: 1;
  padding-top: 1px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.story-content,
.story-content--wide {
  width: 100%;
  max-width: none;
  min-width: 0;
}

.story-content > .story-kicker {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-bottom: 24px;
  text-align: center;
}

.story-content h2 {
  max-width: 1380px;
  margin: 0 0 36px;
  font-size: clamp(50px, 4.5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.president-layout {
  display: contents;
}

.story-content > p,
.president-layout > p {
  max-width: 1380px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.28vw, 21px);
  line-height: 1.62;
}

.story-content > .story-lead,
.president-layout > .story-lead {
  max-width: 1320px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 650;
  line-height: 1.4;
}

.story-content blockquote {
  max-width: 1380px;
  margin: 44px 0 0;
  padding: 28px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  color: var(--ink);
  font-size: clamp(21px, 1.7vw, 28px);
  font-weight: 650;
  line-height: 1.42;
}

.story-content .davankov-quote {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(124px, 12vw, 172px);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  max-width: 1380px;
  padding: clamp(28px, 3vw, 44px);
  border: 0;
  border-left: 4px solid var(--teal);
  border-radius: 0 30px 30px 0;
  background: rgba(226, 242, 240, 0.72);
}

.davankov-quote p {
  max-width: 960px;
  margin: 0;
}

.davankov-quote footer {
  display: flex;
  gap: 5px;
  margin-top: 24px;
  flex-direction: column;
}

.davankov-quote footer strong {
  color: var(--ink);
  font-size: 16px;
}

.davankov-quote footer span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 550;
  line-height: 1.4;
}

.davankov-quote img {
  width: 100%;
  height: clamp(124px, 12vw, 172px);
  aspect-ratio: 1;
  align-self: center;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(11, 47, 44, 0.16);
}

.story-content > .proposal-attribution {
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: clamp(20px, 1.6vw, 27px);
  font-weight: 800;
}

/* Proposal rows */
.rules-list {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 50px 0 0;
  padding: 0;
  flex-direction: column;
  list-style: none;
  border-bottom: 1px solid rgba(8, 74, 71, 0.18);
}

.rules-list li,
.rules-list__price {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  min-height: 126px;
  margin: 0;
  padding: 28px 0 !important;
  border: 0 !important;
  border-top: 1px solid rgba(8, 74, 71, 0.18) !important;
  border-radius: 0;
  color: inherit;
  background: transparent;
}

.rules-list strong,
.rules-list__price strong {
  color: var(--teal-dark);
  font-size: clamp(42px, 3.6vw, 62px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.rules-list span,
.rules-list__price span {
  max-width: 1040px;
  color: #33403e;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.55;
}

/* Economy */
.impact-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  width: 100%;
  max-width: 1400px;
  margin-top: 50px;
  overflow: hidden;
  border: 1px solid #17201f;
  border-radius: 30px;
  color: #fff;
  background: #42504e;
}

.impact-dashboard > div {
  display: flex;
  min-height: 230px;
  padding: 34px 38px;
  flex-direction: column;
  justify-content: flex-end;
  background: #111817;
}

.impact-dashboard span {
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-dashboard strong {
  color: #fff;
  font-size: clamp(42px, 4.7vw, 72px);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.impact-dashboard strong b,
.impact-dashboard__sum strong {
  color: var(--teal-bright);
  font-weight: inherit;
}

.impact-dashboard small {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
}

.impact-goals {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 22px 0 0;
  padding: 0;
  flex-direction: column;
  list-style: none;
}

.impact-goals li {
  position: relative;
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--line);
}

.impact-goals li > div {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.impact-goals strong {
  display: block;
  font-size: clamp(22px, 1.7vw, 29px);
  line-height: 1.25;
}

.impact-goals p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.impact-goals p b {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.impact-goals li > i {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  overflow: hidden;
  background: transparent;
}

.impact-goals li > i span {
  display: block;
  width: calc(var(--progress, 0) * 100%);
  height: 100%;
  background: var(--teal);
  transition: width 1200ms var(--ease-out);
}

/* Timeline */
.editorial-timeline {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 52px 0 0;
  padding: 0;
  flex-direction: column;
  list-style: none;
  border-top: 1px solid rgba(8, 74, 71, 0.18);
}

.editorial-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid rgba(8, 74, 71, 0.18);
}

.editorial-timeline time {
  color: var(--teal-dark);
  font-size: clamp(30px, 2.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.editorial-timeline p {
  max-width: 1040px;
  margin: 0;
  color: #33403e;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.58;
}

.story-conclusion {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 44px;
  width: 100%;
  max-width: 1400px;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid rgba(8, 74, 71, 0.18);
}

.story-conclusion strong {
  font-size: clamp(22px, 1.7vw, 29px);
  line-height: 1.25;
}

.story-conclusion p {
  max-width: 880px;
  margin: 0;
  color: #33403e;
  font-size: 17px;
  line-height: 1.58;
}

.story-section--closing {
  align-items: start;
}

.story-section--closing h2 em {
  color: var(--teal);
  font-style: normal;
}

.president-figure {
  width: 100%;
  max-width: 1380px;
  margin: 46px 0 34px;
}

.president-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.president-figure figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* Desktop-only editorial split: keep the proven phone/tablet flow untouched. */
@media (min-width: 1280px) {
  .story-section--closing h2 {
    margin-bottom: clamp(38px, 3.2vw, 50px);
  }

  .story-section--closing .president-layout {
    --president-photo-width: min(46%, 640px);
    --president-gap: clamp(24px, 2.4vw, 36px);
    --president-card-border: rgba(8, 74, 71, 0.13);
    --president-card-surface: rgba(226, 242, 240, 0.78);

    position: relative;
    display: block;
    width: 100%;
    max-width: 1400px;
    min-height: clamp(440px, 34vw, 500px);
    padding-left: calc(var(--president-photo-width) + var(--president-gap));
    box-sizing: border-box;
  }

  .story-section--closing .president-layout > .president-figure {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--president-photo-width);
    max-width: none;
    margin: 0;
  }

  .story-section--closing .president-figure img {
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(11, 47, 44, 0.1);
  }

  .story-section--closing .president-layout > p {
    position: relative;
    z-index: 1;
    min-width: 0;
    max-width: none;
    margin: 0;
    padding-right: clamp(24px, 2.4vw, 36px);
    padding-left: clamp(24px, 2.4vw, 36px);
    border-right: 1px solid var(--president-card-border);
    border-left: 1px solid var(--president-card-border);
    background: var(--president-card-surface);
    box-sizing: border-box;
  }

  .story-section--closing .president-layout > .story-lead {
    padding-top: clamp(26px, 2.4vw, 36px);
    padding-bottom: 22px;
    border-top: 1px solid var(--president-card-border);
    border-radius: 24px 24px 0 0;
    color: var(--ink);
    font-size: clamp(19px, 1.45vw, 23px);
    line-height: 1.5;
  }

  .story-section--closing .president-layout > .president-figure + p {
    padding-top: 18px;
    padding-bottom: 18px;
    border-top: 1px solid var(--president-card-border);
    color: #084a47;
    background: rgba(10, 167, 160, 0.14);
    font-size: clamp(18px, 1.2vw, 20px);
    line-height: 1.42;
  }

  .story-section--closing .president-layout > .president-figure + p + p {
    padding-top: 18px;
    padding-bottom: clamp(26px, 2.3vw, 34px);
    border-top: 1px solid var(--president-card-border);
    border-bottom: 1px solid var(--president-card-border);
    border-radius: 0 0 24px 24px;
    color: #33403e;
    font-size: clamp(17px, 1.18vw, 20px);
    line-height: 1.55;
  }
}

.author-card--editorial {
  margin-top: 42px;
}

.author-card--editorial .author-card__avatar {
  width: 64px;
  height: 64px;
}

.author-card--editorial small {
  font-size: 13px;
}

.author-card--editorial strong {
  font-size: 17px;
}

/* Full-width sign section */
.sign {
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: 76px 0;
  border-radius: 0;
}

.sign__inner {
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(60px, 8vw, 132px);
  min-height: 0;
}

.sign__intro {
  width: 100%;
  max-width: 620px;
  justify-self: center;
  text-align: center;
}

.sign__intro h2 {
  margin-top: 18px;
  font-size: clamp(50px, 4.8vw, 76px);
  line-height: 0.96;
}

.sign__intro > p:not(.section-kicker) {
  max-width: 620px;
  margin-inline: auto;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.5;
}

.signature-counter {
  width: 100%;
  align-items: center;
  margin: 52px auto 0;
  padding-left: 0;
  border-left: 0;
  text-align: center;
}

.signature-counter strong {
  font-size: clamp(68px, 6.6vw, 102px);
}

.sign-form {
  width: 100%;
  max-width: 650px;
  min-height: 0;
  padding: 30px 36px 32px;
  border-radius: 34px;
  justify-self: center;
}

.form-heading span {
  font-size: 28px;
}

.field input {
  border-color: #eef1f0;
  background: #eef1f0;
}

/* FAQ uses the same wide page line */
.faq {
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: var(--content-max);
  min-height: 0;
  padding-top: 96px;
  padding-bottom: 96px;
}

.faq .section-heading {
  text-align: center;
}

.faq .section-heading h2 {
  font-size: clamp(48px, 4.4vw, 70px);
  letter-spacing: -0.05em;
}

.faq-list {
  gap: 12px;
  margin-top: 42px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 24px;
}

.faq-item h3 button {
  min-height: 78px;
  padding: 20px 72px 20px 30px;
  font-size: clamp(20px, 1.5vw, 25px);
}

.faq-answer p {
  max-width: 1180px;
  margin: 0 72px 0 30px;
  padding-bottom: 30px;
  font-size: 16px;
  line-height: 1.58;
}

/* Footer spans the viewport; its contents stay aligned with the story */
.site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  background-image: none;
}

.petition-invite {
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  padding: 46px 0 36px;
}

.petition-invite h2 {
  font-size: 34px;
}

.footer-bottom {
  grid-template-columns: 220px minmax(0, 1fr) auto;
  min-height: 100px;
}

@media (max-width: 1099px) {
  :root {
    --page-gutter: 32px;
    --section-space: 86px;
  }

  .main-nav {
    gap: 20px;
  }

  .editorial-hero {
    min-height: 0;
    padding-top: 118px;
    padding-bottom: 64px;
  }

  .editorial-hero__card {
    min-height: 580px;
    border-radius: 36px;
  }

  .editorial-hero__copy {
    max-width: 570px;
    padding: 58px 0 58px 54px;
  }

  .editorial-hero__lead {
    max-width: 470px;
  }

  .editorial-hero__visual {
    width: 78%;
  }

  .editorial-hero__visual > img {
    object-position: 58% center;
  }

  .story-content > .story-kicker {
    width: 100%;
    margin-left: 0;
  }

  .rules-list li,
  .rules-list__price,
  .editorial-timeline li {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 28px;
  }

  .impact-goals li > div {
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
    gap: 28px;
  }

  .sign__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sign__intro {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .signature-counter {
    margin-top: 36px;
  }

  .sign-form {
    justify-self: center;
  }

  .petition-invite {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
    text-align: left;
  }

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

  .footer-bottom nav {
    flex-wrap: wrap;
    gap: 12px 24px;
  }
}

/* Compact poster composition for every non-desktop viewport: the wave, copy and
   car share one landscape frame, matching the mobile campaign reference. */
@media (max-width: 1279px) {
  .site-header .brand {
    margin-right: auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: block;
    order: 2;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: stretch;
    width: min(280px, calc(100vw - 32px));
    padding: 13px;
    border-radius: 25px;
    opacity: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 46px rgba(15, 44, 41, 0.12);
    pointer-events: none;
    transform: translateY(-10px) scale(0.97);
    transform-origin: top right;
    transition: opacity 200ms ease, transform 280ms var(--ease-out);
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .main-nav a {
    padding: 13px 17px;
    border-radius: 16px;
  }

  .main-nav a:hover {
    background: #edf7f6;
  }

  .main-nav a::after {
    display: none;
  }

  .editorial-hero {
    padding-top: 104px;
    padding-bottom: 24px;
  }

  .editorial-hero__card {
    display: block;
    min-height: 0;
    aspect-ratio: 1.88 / 1;
  }

  .editorial-hero__copy {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    padding: clamp(22px, 6.5vw, 68px);
    background: transparent;
  }

  .editorial-hero .story-kicker {
    margin-bottom: clamp(6px, 1.1vw, 14px);
    font-size: clamp(8px, 1.05vw, 14px);
  }

  .editorial-hero h1 {
    max-width: none;
    font-size: clamp(24px, 6.4vw, 78px);
    line-height: 0.9;
    white-space: nowrap;
  }

  .editorial-hero__lead {
    width: 43%;
    max-width: 500px;
    margin-top: clamp(8px, 1.8vw, 24px);
    font-size: clamp(9px, 1.55vw, 20px);
    line-height: 1.35;
  }

  .editorial-hero__visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .editorial-hero__visual.reveal {
    transform: none;
  }

  .editorial-hero__visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
  }
}

@media (max-width: 767px) {
  :root {
    --page-gutter: clamp(24px, 8vw, 32px);
    --section-space: 58px;
  }

  html {
    scroll-padding-top: 82px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - (var(--page-gutter) * 2));
    height: 58px;
    padding: 0 7px 0 14px;
  }

  .brand,
  .brand-logo {
    width: 124px;
    height: 34px;
  }

  .brand-logo__vector--left {
    width: 116px;
    height: 24px;
  }

  .brand-logo__vector--right {
    width: 62px;
    height: 26px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .main-nav {
    top: 64px;
  }

  .editorial-hero {
    padding-top: 78px;
    padding-bottom: 18px;
  }

  .editorial-hero__card {
    min-height: 0;
    aspect-ratio: 1.88 / 1;
    border-radius: 22px;
  }

  .story-kicker {
    margin-bottom: 13px;
    font-size: 11px;
  }

  .story-content > .story-kicker {
    width: 100%;
    margin-left: 0;
  }

  .editorial-hero h1 {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 0.9;
  }

  .editorial-hero__copy {
    width: 100%;
    max-width: none;
    padding: clamp(22px, 6.5vw, 28px);
  }

  .editorial-hero__lead {
    width: 44%;
    margin-top: clamp(6px, 1.8vw, 8px);
    font-size: clamp(8.5px, 2.3vw, 10px);
    line-height: 1.32;
  }

  .editorial-hero__visual {
    aspect-ratio: auto;
  }

  .editorial-hero__visual > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
  }

  .hero-impact {
    padding-bottom: 48px;
  }

  .hero-impact__card {
    border-radius: 22px;
  }

  .impact-dashboard--hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: 0;
    border-radius: 0;
  }

  .impact-dashboard--hero > div {
    min-width: 0;
    min-height: 142px;
    padding: 18px 14px;
  }

  .impact-dashboard--hero span {
    font-size: 8px;
    letter-spacing: 0.06em;
  }

  .impact-dashboard--hero strong {
    font-size: clamp(23px, 6.7vw, 29px);
    letter-spacing: -0.065em;
  }

  .impact-dashboard--hero small {
    margin-top: 8px;
    font-size: 9px;
    line-height: 1.25;
  }

  .hero-impact__message {
    padding: 28px 20px 24px;
  }

  .hero-impact__message .story-kicker {
    margin-bottom: 12px;
    font-size: 9px;
  }

  .hero-impact__message h2 {
    font-size: clamp(26px, 8vw, 32px);
    line-height: 1;
  }

  .hero-impact__message > p:not(.story-kicker) {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-impact__cta {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    margin-top: 22px;
  }

  .story-section,
  .story-section__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .story > .story-section:first-child {
    padding-top: 34px;
  }

  .story-index,
  .story-content,
  .story-content--wide {
    grid-column: 1;
  }

  .story-index {
    margin-bottom: 12px;
    padding: 0;
    font-size: 12px;
  }

  .story-content h2 {
    margin-bottom: 26px;
    font-size: clamp(32px, 9.4vw, 40px);
    line-height: 1;
  }

  .story-content > p,
  .president-layout > p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.58;
  }

  .story-content > .story-lead,
  .president-layout > .story-lead {
    font-size: 18px;
    line-height: 1.42;
  }

  .story-content blockquote {
    margin-top: 30px;
    padding: 22px 0 22px 18px;
    font-size: 18px;
  }

  .story-content blockquote.davankov-quote {
    grid-template-columns: minmax(0, 1fr) 84px;
    gap: 14px;
    padding: 20px 16px 20px 18px;
    border-radius: 0 20px 20px 0;
    font-size: 16px;
    line-height: 1.4;
  }

  .davankov-quote img {
    width: 84px;
    height: 84px;
  }

  .davankov-quote footer {
    margin-top: 16px;
  }

  .davankov-quote footer strong {
    font-size: 14px;
  }

  .davankov-quote footer span {
    font-size: 11px;
  }

  .story-content > .proposal-attribution {
    margin-bottom: 12px;
    font-size: 19px;
  }

  .rules-list {
    margin-top: 34px;
  }

  .rules-list li,
  .rules-list__price {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 24px 0 !important;
  }

  .rules-list strong,
  .rules-list__price strong {
    font-size: 38px;
  }

  .rules-list span,
  .rules-list__price span {
    font-size: 16px;
    line-height: 1.5;
  }

  .impact-dashboard {
    grid-template-columns: 1fr;
    margin-top: 34px;
    border-radius: 26px;
  }

  .impact-dashboard > div {
    min-height: 184px;
    padding: 26px;
  }

  .impact-dashboard strong {
    font-size: 38px;
  }

  .impact-dashboard small {
    font-size: 12px;
  }

  .impact-goals li {
    padding: 25px 0 29px;
  }

  .impact-goals li > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .impact-goals strong {
    font-size: 21px;
  }

  .impact-goals p {
    font-size: 14px;
    line-height: 1.5;
  }

  .editorial-timeline {
    margin-top: 36px;
  }

  .editorial-timeline li {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .editorial-timeline time {
    font-size: 28px;
  }

  .editorial-timeline p {
    font-size: 15px;
    line-height: 1.55;
  }

  .story-conclusion {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
    padding-top: 25px;
  }

  .story-conclusion strong {
    font-size: 19px;
  }

  .story-conclusion p {
    font-size: 15px;
  }

  .author-card--editorial {
    margin-top: 30px;
  }

  .president-figure {
    margin: 30px 0 24px;
  }

  .president-figure img {
    border-radius: 18px;
  }

  .president-figure figcaption {
    margin-top: 9px;
    font-size: 12px;
  }

  .sign {
    padding: 52px 0 16px;
  }

  .sign__inner {
    gap: 38px;
  }

  .sign__intro h2 {
    font-size: 38px;
  }

  .sign__intro > p:not(.section-kicker) {
    font-size: 17px;
  }

  .signature-counter {
    margin: 30px auto 0;
    padding-left: 0;
    border-left: 0;
  }

  .signature-counter strong {
    font-size: 62px;
  }

  .signature-counter span {
    margin-top: 12px;
    font-size: 15px;
  }

  .sign-form {
    padding: 26px 22px 22px;
    border-radius: 28px;
  }

  .form-heading span {
    font-size: 25px;
  }

  .telegram-sign {
    min-height: 52px;
    padding: 0 56px 0 46px;
    font-size: 14px;
  }

  .telegram-sign > svg {
    left: 16px;
  }

  .telegram-sign small {
    right: 12px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .consent-stack .check-control {
    font-size: 11px;
  }

  .faq {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .faq .section-heading {
    text-align: center;
  }

  .faq .section-heading h2 {
    font-size: 34px;
  }

  .faq-list {
    margin-top: 32px;
  }

  .faq-item {
    border-radius: 22px;
  }

  .faq-item h3 button {
    min-height: 68px;
    padding: 18px 56px 18px 24px;
    font-size: 17px;
  }

  .faq-item h3 button i {
    right: 21px;
  }

  .faq-answer p {
    margin: 0 24px;
    padding: 4px 0 22px;
    font-size: 14px;
    line-height: 1.5;
  }

  .petition-invite {
    padding: 36px 0 30px;
  }

  .petition-invite h2 {
    font-size: 28px;
  }

  .petition-invite__actions {
    gap: 8px;
  }

  .petition-invite__actions a,
  .petition-invite__actions button {
    min-height: 44px;
    padding: 0 16px;
  }

  .footer-bottom {
    padding: 28px 0 30px;
  }

  .footer-bottom nav {
    flex-direction: column;
    gap: 8px;
  }
}

/* Keep the campaign metrics in one compact row on phones, as in the brief. */
@media (max-width: 767px) {
  .hero-impact .impact-dashboard--hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
  }

  .hero-impact .impact-dashboard--hero > div {
    min-width: 0;
    min-height: 142px;
    padding: 18px 14px;
  }

  .hero-impact .impact-dashboard--hero span {
    font-size: 8px;
    letter-spacing: 0.06em;
  }

  .hero-impact .impact-dashboard--hero strong {
    font-size: clamp(23px, 6.7vw, 29px);
  }

  .hero-impact .impact-dashboard--hero small {
    margin-top: 8px;
    font-size: 9px;
    line-height: 1.25;
  }
}

@media (max-width: 420px) {
  .telegram-sign {
    padding-right: 18px;
  }

  .telegram-sign small {
    display: none;
  }
}

@media (max-width: 360px) {
  .telegram-sign {
    padding-right: 12px;
    padding-left: 42px;
    font-size: 13px;
  }

  .telegram-sign > svg {
    left: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
