:root {
  --ink: #18342e;
  --ink-soft: #53655f;
  --cream: #f4f0e5;
  --paper: #fffdf7;
  --green: #0b7357;
  --green-dark: #075743;
  --lime: #d9ed6f;
  --blue: #5eb4cc;
  --line: #d9d9cc;
  --orange: #ed805f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.site-header {
  height: 84px;
  padding: 0 clamp(24px, 6vw, 92px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(24, 52, 46, 0.12);
  background: rgba(255, 253, 247, 0.94);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 36px;
  height: 30px;
  display: flex;
  gap: 3px;
  align-items: flex-end;
}

.brand-mark span {
  display: block;
  width: 9px;
  background: var(--green);
  clip-path: polygon(50% 0, 100% 28%, 100% 100%, 0 100%, 0 28%);
}

.brand-mark span:nth-child(1) {
  height: 20px;
}

.brand-mark span:nth-child(2) {
  height: 30px;
}

.brand-mark span:nth-child(3) {
  height: 24px;
}

.header-cta {
  background: var(--ink);
  color: white;
  padding: 10px 19px;
  text-decoration: none;
  border-radius: 3px;
  font-weight: 700;
  transition: transform 0.2s, background 0.2s;
}

.header-cta:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
}

.hero-content {
  padding: clamp(70px, 10vw, 145px) clamp(36px, 8vw, 125px);
  align-self: center;
}

.eyebrow,
.kicker {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.76rem;
  font-weight: 800;
}

.eyebrow {
  display: inline-block;
  padding: 6px 11px;
  border: 1px solid var(--green);
  border-radius: 100px;
  margin-bottom: 25px;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-top: 0;
}

h1 {
  font-size: clamp(3.3rem, 6.4vw, 6.6rem);
  max-width: 760px;
  margin-bottom: 30px;
}

h1 em {
  font-style: normal;
  color: var(--green);
  position: relative;
}

h1 em::after {
  content: "";
  position: absolute;
  height: 8px;
  left: 2px;
  right: 0;
  bottom: 1px;
  background: var(--lime);
  z-index: -1;
  transform: rotate(-1deg);
}

.hero-intro {
  max-width: 610px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.65;
}

.hero-intro strong {
  color: var(--ink);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.button {
  border: 0;
  border-radius: 3px;
  padding: 16px 24px;
  display: inline-flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 22px rgba(24, 52, 46, 0.16);
}

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

.text-link {
  text-underline-offset: 6px;
  font-weight: 700;
}

.hero-visual {
  background: #dfe8eb;
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.hero-impression {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.visual-label {
  position: absolute;
  z-index: 8;
  right: 7%;
  bottom: 5%;
  color: white;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.2;
  text-align: right;
  padding: 15px 18px;
  background: rgba(24, 52, 46, 0.88);
  border-left: 5px solid var(--lime);
}

.statement {
  max-width: 1240px;
  margin: 0 auto;
  padding: 130px 30px;
  display: grid;
  grid-template-columns: 80px 1.5fr 0.8fr;
  gap: 55px;
  align-items: start;
}

.section-number {
  color: var(--green);
  border-top: 2px solid var(--green);
  padding-top: 8px;
  font-weight: 800;
}

.statement h2,
.choices h2,
.petition h2 {
  font-size: clamp(2.6rem, 4.7vw, 4.9rem);
}

.statement-copy > p:last-child {
  color: var(--ink-soft);
  font-size: 1.2rem;
  max-width: 730px;
}

blockquote {
  margin: 74px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.65rem;
  line-height: 1.35;
  font-weight: 800;
  border-left: 5px solid var(--lime);
  padding-left: 25px;
}

.petition-text {
  padding: 125px max(30px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: white;
}

.petition-text-heading {
  max-width: 850px;
  margin-bottom: 65px;
}

.petition-text-heading .kicker {
  color: var(--lime);
}

.petition-text-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 4.7vw, 4.9rem);
}

.petition-articles {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.petition-articles article {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 35px;
  padding: 45px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.article-number {
  color: var(--lime);
  font-weight: 800;
}

.petition-articles h3 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 2.5vw, 2.4rem);
}

.petition-articles p {
  max-width: 900px;
  margin: 0;
  color: #cbd7d3;
  font-size: 1.08rem;
  line-height: 1.8;
}

.choices {
  background: var(--cream);
  padding: 125px max(30px, calc((100vw - 1180px) / 2));
}

.choices-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.choices-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.choice-card {
  min-height: 420px;
  padding: 45px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.choice-green {
  background: var(--green);
  color: white;
}

.choice-blue {
  background: var(--blue);
  color: var(--ink);
}

.choice-index {
  position: absolute;
  right: 33px;
  top: 25px;
  opacity: 0.45;
  font-size: 1.2rem;
  font-weight: 800;
}

.choice-icon {
  width: 106px;
  height: 106px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 55px;
  background: rgba(255, 255, 255, 0.15);
}

.choice-blue .choice-icon {
  background: rgba(255, 253, 247, 0.4);
}

.choice-icon svg {
  width: 63px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linejoin: round;
}

.choice-card h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 18px;
}

.choice-card p {
  max-width: 480px;
  font-size: 1.08rem;
  opacity: 0.86;
}

.decision-options {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.decision-options li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
}

.choice-blue .decision-options li {
  border-color: rgba(24, 52, 46, 0.22);
}

.decision-options span {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.76rem;
}

.petition {
  background: var(--ink);
  color: white;
  padding: 125px max(30px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 9vw, 125px);
  align-items: center;
}

.kicker.light {
  color: var(--lime);
}

.petition-copy > p:not(.kicker) {
  color: #c2d0cc;
  font-size: 1.18rem;
}

.petition-points {
  padding: 0;
  list-style: none;
  margin-top: 38px;
}

.petition-points li {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 14px 0;
}

.petition-points span {
  color: var(--lime);
  font-weight: 800;
}

.form-card {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(28px, 4vw, 52px);
  border-radius: 5px;
  box-shadow: 17px 17px 0 var(--green);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 22px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.form-heading small {
  color: var(--ink-soft);
}

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 18px;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  height: 52px;
  margin-top: 7px;
  padding: 10px 13px;
  border: 1px solid #bfc6c1;
  border-radius: 2px;
  background: white;
  color: var(--ink);
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}

input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11, 115, 87, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.checkbox-label {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.4;
}

.opinion-fieldset {
  margin: 6px 0 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 3px;
}

.opinion-fieldset legend {
  padding: 0 7px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.opinion-fieldset legend small {
  color: var(--ink-soft);
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}

.opinion-fieldset > p {
  margin: 0 0 15px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.radio-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 12px 0;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.35;
}

.radio-label input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: var(--green);
}

.checkbox-label input {
  margin-top: 3px;
  accent-color: var(--green);
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.button-submit {
  width: 100%;
  margin-top: 12px;
  background: var(--lime);
  color: var(--ink);
}

.privacy-note {
  color: #788680;
  text-align: center;
  font-size: 0.77rem;
  margin: 14px 0 0;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.success-message {
  text-align: center;
  padding: 40px 10px;
}

.success-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--lime);
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  font-size: 2.3rem;
  font-weight: 800;
}

.success-message h3 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.social-share {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.social-share-success {
  justify-content: center;
  margin-top: 24px;
}

.social-button {
  min-height: 42px;
  padding: 10px 15px;
  border: 0;
  border-radius: 3px;
  color: white;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s, box-shadow 0.2s;
}

.social-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(24, 52, 46, 0.18);
}

.social-button.facebook {
  background: #1877f2;
}

.social-button.whatsapp {
  background: #128c4b;
}

.social-button.instagram {
  background: linear-gradient(135deg, #833ab4, #e1306c, #f77737);
}

.results {
  padding: 125px max(30px, calc((100vw - 1180px) / 2));
  background: var(--paper);
}

.results-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
}

.results h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4.7vw, 4.9rem);
}

.result-total {
  min-width: 190px;
  text-align: right;
}

.result-total strong {
  display: block;
  color: var(--green);
  font-family: "Manrope", sans-serif;
  font-size: 3.5rem;
  line-height: 1;
}

.result-total span {
  color: var(--ink-soft);
  font-weight: 700;
}

.confirmation-banner {
  margin: -25px 0 45px;
  padding: 17px 20px;
  border-left: 5px solid var(--green);
  background: #e5f4ed;
  color: var(--green-dark);
  font-weight: 700;
}

.confirmation-banner.error {
  border-color: var(--orange);
  background: #fbe9e3;
  color: #833c28;
}

.chart {
  display: grid;
  gap: 32px;
}

.chart-row {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(250px, 2fr) 70px 90px;
  align-items: center;
  gap: 20px;
}

.chart-label {
  font-weight: 800;
  line-height: 1.35;
}

.chart-track {
  height: 25px;
  overflow: hidden;
  border-radius: 100px;
  background: var(--cream);
}

.chart-bar {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  transition: width 0.7s ease;
}

.chart-row:nth-child(2) .chart-bar {
  background: var(--blue);
}

.chart-row:nth-child(3) .chart-bar {
  background: var(--orange);
}

.chart-value {
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
}

.chart-count,
.results-note {
  color: var(--ink-soft);
}

.results-note {
  margin: 40px 0 0;
  font-size: 0.84rem;
}

footer {
  min-height: 150px;
  padding: 45px clamp(24px, 6vw, 92px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

footer p {
  color: var(--ink-soft);
}

.footer-social {
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 620px;
  }

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

  blockquote {
    grid-column: 2;
    margin-top: 0;
  }

  .choices-heading {
    display: block;
  }

  .choice-grid,
  .petition {
    grid-template-columns: 1fr;
  }

  .petition-copy {
    max-width: 700px;
  }

  .chart-row {
    grid-template-columns: 1fr 75px;
  }

  .chart-track {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .chart-count {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  .site-header {
    height: 70px;
    padding: 0 18px;
  }

  .brand {
    font-size: 0.9rem;
  }

  .brand-mark {
    transform: scale(0.85);
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 0.8rem;
  }

  .hero-content {
    padding: 70px 24px 75px;
  }

  h1 {
    font-size: 3.15rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 450px;
  }

  .hero-impression {
    object-position: 42% center;
  }

  .statement {
    padding: 85px 24px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-number {
    width: 45px;
  }

  blockquote {
    grid-column: 1;
  }

  .choices,
  .petition,
  .petition-text {
    padding: 85px 24px;
  }

  .petition-articles article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .choice-grid {
    gap: 16px;
  }

  .choice-card {
    min-height: auto;
    padding: 32px;
  }

  .choice-icon {
    margin-bottom: 38px;
  }

  .form-card {
    box-shadow: 9px 9px 0 var(--green);
  }

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

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .results {
    padding: 85px 24px;
  }

  .results-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .result-total {
    text-align: left;
  }

  .chart-row {
    gap: 9px 15px;
  }
}

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

  * {
    transition: none !important;
  }
}
