:root {
  --red: #d71920;
  --red-dark: #a80710;
  --red-bright: #f20d14;
  --yellow: #ffc400;
  --green: #0c8f45;
  --blue: #082e9d;
  --ink: #221a1a;
  --muted: #6d6060;
  --paper: #fff;
  --surface: #f7f2f2;
  --line: #ecdede;
  --max-width: 1180px;
  --shadow: 0 22px 65px rgb(104 0 7 / 15%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.7rem 1rem;
  color: #fff;
  background: #111;
  transform: translateY(-150%);
}

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

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: #fff;
  background: rgb(181 6 14 / 96%);
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  text-decoration: none;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand strong {
  color: var(--yellow);
  font-size: 1.8rem;
}

.main-nav {
  display: flex;
  gap: 1.6rem;
  font-size: 0.92rem;
  font-weight: 750;
}

.main-nav a {
  text-decoration: none;
  opacity: 0.92;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--yellow);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.78rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

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

.button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.button svg,
.floating-whatsapp svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.button-whatsapp {
  color: #fff;
  background: #159447;
  box-shadow: 0 10px 28px rgb(21 148 71 / 24%);
}

.button-compact {
  min-height: 44px;
  padding: 0.62rem 1rem;
  font-size: 0.9rem;
}

.button-large {
  min-height: 58px;
  padding: 1rem 1.45rem;
}

.hero {
  background: var(--red);
}

.hero-art {
  width: 100%;
  height: auto;
}

.hero-copy-wrap {
  color: #fff;
  background:
    radial-gradient(circle at 85% -30%, rgb(255 196 0 / 38%), transparent 42%),
    linear-gradient(120deg, var(--red-dark), var(--red));
}

.hero-copy {
  min-height: 205px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  padding-block: 2.6rem;
}

.hero-copy h1,
.section h2,
.people-section h2,
.final-cta h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
}

.hero-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 1rem 0 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  opacity: 0.92;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.75rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: var(--yellow);
}

.section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.story {
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.story-copy h2,
.section-heading h2,
.coffee h2,
.networks h2 {
  max-width: 850px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.story-copy > p:not(.section-kicker),
.coffee p,
.network-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.story-image {
  margin: 0;
  position: relative;
}

.story-image::before {
  content: "";
  position: absolute;
  inset: -16px -16px 16px 16px;
  z-index: -1;
  border-radius: 42px;
  background: var(--yellow);
  transform: rotate(2deg);
}

.story-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 659 / 480;
  object-fit: contain;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.pill-row span {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: var(--red-dark);
  background: #ffe6e7;
  font-size: 0.86rem;
  font-weight: 800;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(3rem, 7vw, 6rem);
  border-top: 4px solid var(--red);
}

.timeline article {
  position: relative;
  padding: 1.5rem 1rem 0 0;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 2px var(--red);
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  color: var(--red);
  font-size: 0.95rem;
}

.timeline span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.campaign-banner {
  overflow: hidden;
  background: var(--red);
}

.campaign-banner img {
  width: 100%;
}

.proposals {
  background:
    linear-gradient(135deg, rgb(215 25 32 / 4%), transparent 40%),
    var(--surface);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 3rem;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.1rem;
}

.proposal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.proposal-card {
  min-height: 250px;
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 35px rgb(77 0 4 / 5%);
  transition: transform 180ms ease, border-color 180ms ease;
}

.proposal-card:hover {
  transform: translateY(-4px);
  border-color: #efb8bb;
}

.proposal-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--red);
  background: #ffe7e8;
}

.proposal-icon svg {
  width: 1.9rem;
  height: 1.9rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proposal-card h3 {
  margin: 1rem 0 0.55rem;
  font-size: 1.08rem;
  line-height: 1.25;
}

.proposal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.center-action {
  margin-top: 2.5rem;
  text-align: center;
}

.coffee {
  background: #fff;
}

.coffee-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 8vw, 7rem);
}

.coffee-grid p:first-child {
  margin-top: 0;
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.benefit-row span {
  padding: 1.1rem;
  border-left: 6px solid var(--green);
  border-radius: 6px 16px 16px 6px;
  color: #075e30;
  background: #eaf8f0;
  font-weight: 850;
}

.people-section {
  color: #fff;
  background:
    radial-gradient(circle at 90% 5%, rgb(255 196 0 / 16%), transparent 30%),
    linear-gradient(135deg, #78040a, var(--red-dark));
  overflow: hidden;
}

.people-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.people-art {
  margin: 0;
  align-self: end;
}

.people-art img {
  width: min(100%, 720px);
  height: auto;
  margin: 0 auto;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 0 0 1px rgb(255 255 255 / 14%);
}

.programs-copy {
  padding-block: clamp(4rem, 9vw, 8rem);
}

.people-section h2 {
  font-size: clamp(2.6rem, 5.6vw, 5.1rem);
}

.programs-copy > p:not(.section-kicker) {
  max-width: 620px;
  font-size: 1.08rem;
  opacity: 0.86;
}

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

.program-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.3rem;
  margin: 2rem 0 2.4rem;
  padding: 0;
  list-style: none;
}

.program-list li {
  position: relative;
  padding-left: 1.55rem;
  font-size: 0.95rem;
  font-weight: 750;
}

.program-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 950;
}

.button-light {
  color: var(--red-dark);
  background: #fff;
  box-shadow: 0 16px 34px rgb(44 0 3 / 25%);
}

.network-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
}

.network-art {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--red);
  font-weight: 900;
  text-underline-offset: 0.25em;
}

.final-cta {
  color: #fff;
  background: var(--blue);
}

.final-grid {
  min-height: 410px;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(2rem, 8vw, 7rem);
  padding-block: 3.5rem;
}

.final-grid > img {
  width: 100%;
}

.final-cta h2 {
  max-width: 720px;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.final-cta p:not(.section-kicker) {
  max-width: 650px;
  font-size: 1.07rem;
  opacity: 0.86;
}

.section-kicker-yellow {
  color: var(--yellow);
}

.button-yellow {
  margin-top: 0.8rem;
  color: #201800;
  background: var(--yellow);
  box-shadow: 0 14px 34px rgb(0 0 0 / 20%);
}

.site-footer {
  padding: 2.2rem 0 7rem;
  color: #fff;
  background: #061f6b;
  border-top: 1px solid rgb(255 255 255 / 14%);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-inner > div:first-child {
  display: grid;
}

.footer-inner strong {
  color: var(--yellow);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
}

.footer-inner span {
  font-size: 0.8rem;
  opacity: 0.78;
}

.footer-legal {
  display: grid;
  gap: 0.25rem;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 1.25rem;
  bottom: 1.25rem;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.15rem;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: #159447;
  box-shadow: 0 16px 40px rgb(0 0 0 / 28%);
  text-decoration: none;
  font-weight: 900;
  transition: transform 160ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero-copy,
  .story-grid,
  .coffee-grid,
  .people-grid,
  .network-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    gap: 1.7rem;
  }

  .hero-copy .button {
    justify-self: start;
  }

  .story-image {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 0;
  }

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

  .people-grid {
    gap: 0;
  }

  .people-art {
    order: 2;
  }

  .programs-copy {
    padding-bottom: 3rem;
  }

  .network-art {
    order: -1;
  }

  .final-grid {
    gap: 1rem;
  }

  .final-grid > img {
    width: min(100%, 560px);
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .header-inner {
    min-height: 62px;
  }

  .brand {
    font-size: 1.2rem;
  }

  .brand strong {
    font-size: 1.45rem;
  }

  .button-compact {
    padding: 0.55rem 0.75rem;
    font-size: 0.8rem;
  }

  .button-compact svg {
    display: none;
  }

  .hero-art {
    min-height: 245px;
    object-fit: cover;
    object-position: 52% center;
  }

  .hero-copy {
    padding-block: 2rem 2.3rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 14vw, 3.7rem);
  }

  .hero-copy .button,
  .center-action .button,
  .programs-copy .button,
  .final-cta .button {
    width: 100%;
  }

  .section {
    padding-block: 4rem;
  }

  .story-copy h2,
  .section-heading h2,
  .coffee h2,
  .networks h2,
  .people-section h2,
  .final-cta h2 {
    font-size: clamp(2.4rem, 13vw, 3.65rem);
  }

  .story-image::before {
    inset: -8px -8px 8px 8px;
    border-radius: 25px;
  }

  .story-image img {
    border-radius: 20px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
    margin-left: 0.5rem;
    border-top: 0;
    border-left: 4px solid var(--red);
  }

  .timeline article {
    padding: 0 0 1.7rem 1.5rem;
  }

  .timeline article::before {
    top: 0.2rem;
    left: -11px;
  }

  .campaign-banner img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .proposal-grid,
  .benefit-row,
  .program-list {
    grid-template-columns: 1fr;
  }

  .proposal-card {
    min-height: auto;
  }

  .people-art img {
    border-radius: 18px 18px 0 0;
  }

  .network-art {
    border-radius: 18px;
  }

  .final-grid {
    padding-block: 3rem 3.5rem;
  }

  .footer-inner {
    display: grid;
  }

  .footer-legal {
    text-align: left;
  }

  .floating-whatsapp {
    right: 0.6rem;
    bottom: 0.6rem;
    left: 0.6rem;
    justify-content: center;
    min-height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
