/* Mara Lima — layout editorial institucional */

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

html {
  background: var(--cream);
}

body.ml-site {
  overflow-x: hidden;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 48px;
}

.sec-pad {
  padding-block: var(--space-3xl);
}

.skip-link {
  position: fixed;
  top: -56px;
  left: 20px;
  z-index: 2000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ml-site h1,
.ml-site h2,
.ml-site h3,
.ml-site p {
  margin-top: 0;
}

.ml-site h1,
.ml-site h2,
.ml-site h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ml-site a:focus-visible,
.ml-site button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* Header */

.ml-site .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(244, 240, 234, 0.97);
  border-bottom: 1px solid rgba(12, 46, 64, 0.12);
  transition: background 200ms ease;
}

.ml-site .site-header::before {
  display: none;
}

.ml-site .site-header.is-scrolled {
  background: var(--cream);
  border-bottom-color: rgba(12, 46, 64, 0.18);
  box-shadow: none;
  backdrop-filter: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-lg);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.brand img {
  width: auto;
  height: 54px;
  max-width: 230px;
}

.ml-site .nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-left: auto;
}

.ml-site .nav a {
  position: relative;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ml-site .nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.ml-site .nav a:hover {
  color: var(--green);
}

.ml-site .nav a:hover::after {
  width: auto;
  transform: scaleX(1);
}

.ml-site .nav-toggle {
  display: none;
  padding: 10px;
  background: transparent;
  border: 0;
}

.ml-site .nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
}

/* Hero — art direction própria para desktop e celular */

.campaign-hero {
  margin-top: var(--header-height);
  overflow: hidden;
  background: var(--navy);
}

.hero-banner,
.hero-banner img {
  display: block;
  width: 100%;
}

.hero-banner {
  max-width: 1920px;
  margin-inline: auto;
}

.hero-banner img {
  height: auto;
  object-fit: contain;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-md);
  color: var(--green);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--gold);
}

/* Títulos editoriais */

.sec-head {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: 20px;
}

.sec-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--green);
}

.script {
  display: block;
  color: var(--green);
  font-family: var(--font-script);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: none;
}

.script--gold {
  color: var(--gold);
}

.caps {
  display: block;
  color: var(--navy);
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.caps--white {
  color: var(--white);
}

.caps--green {
  color: var(--green);
}

.lead {
  max-width: 560px;
  margin-bottom: var(--space-sm);
  color: #46535b;
  font-size: 16px;
  line-height: 1.55;
}

.lead--white {
  color: rgba(255, 255, 255, 0.82);
}

.h-gap {
  margin-top: var(--space-sm);
}

/* Quem é — grid 5/7 com mosaico assimétrico */

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

.about-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 24px;
  align-items: center;
}

.about-copy {
  grid-column: 1 / span 5;
  padding-right: var(--space-md);
}

.about-copy .lead strong {
  color: var(--navy);
  font-weight: 800;
}

.about-collage {
  grid-column: 6 / span 7;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 1.18fr 0.82fr;
  gap: 10px;
  min-height: 520px;
}

.collage-card {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
}

.collage-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-card--one img {
  object-position: center 28%;
}

.collage-card--three img {
  object-position: center 25%;
}

.about-collage.about-collage--single {
  display: block;
  min-height: 0;
}

.about-collage--single .collage-card {
  width: 100%;
  aspect-ratio: 16 / 15;
  background: transparent;
}

.about-collage--single .collage-card img {
  object-fit: contain;
  object-position: center;
}

.causes-band {
  grid-column: 1 / -1;
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius-lg);
}

.causes-band h3 {
  margin-bottom: var(--space-md);
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.causes-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.causes-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 0 14px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.causes-list li:first-child {
  border-left: 0;
}

.cause-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--gold-light);
  font-size: 24px;
  line-height: 1;
  border: 1px solid rgba(228, 184, 75, 0.55);
  border-radius: 50%;
}

.cause-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Resultados — uma única faixa institucional */

.section-work {
  padding-block: 80px;
  color: var(--white);
  background: var(--navy);
}

.section-work > .container {
  padding-block: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.work-top {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 24px;
  align-items: stretch;
  margin-bottom: var(--space-xl);
}

.work-top > :first-child {
  grid-column: 1 / span 5;
  padding-right: var(--space-md);
}

.section-kicker--dark {
  color: rgba(255, 255, 255, 0.72);
}

.work-stat {
  display: flex;
  grid-column: span 3;
  align-items: center;
  gap: var(--space-sm);
  min-height: 120px;
  padding: var(--space-md);
  text-align: left;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.work-stat:last-child {
  grid-column: span 4;
}

.work-stat svg {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  color: var(--gold);
}

.work-stat strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.work-stat-value {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-light);
  font-size: 18px;
  letter-spacing: -0.01em;
}

.investment-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--space-md);
  padding: 13px 18px;
  color: var(--navy);
  background: var(--gold);
  border: 0;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.investment-trigger svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.investment-trigger:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.pillar {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.pillar:first-child {
  padding-left: 0;
  border-left: 0;
}

.pillar:last-child {
  padding-right: 0;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  margin-bottom: var(--space-sm);
}

.icon-green {
  color: #6b9b78;
}

.icon-gold {
  color: var(--gold);
}

.pillar h3 {
  margin-bottom: var(--space-xs);
  color: var(--white);
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pillar p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

/* Detalhamento dos investimentos */

.investment-dialog {
  width: min(760px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  color: var(--text);
  background: var(--cream);
  border: 0;
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(3, 20, 31, 0.38);
}

.investment-dialog::backdrop {
  background: rgba(4, 25, 38, 0.78);
  backdrop-filter: blur(5px);
}

.investment-modal {
  position: relative;
  max-height: calc(100dvh - 32px);
  padding: 40px;
  overflow-y: auto;
}

.investment-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--navy);
  background: var(--cream-alt);
  border: 1px solid rgba(12, 46, 64, 0.14);
  border-radius: 50%;
  cursor: pointer;
}

.investment-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.investment-heading {
  padding-right: 56px;
}

.investment-heading .section-kicker {
  margin-bottom: 14px;
}

.investment-heading h2 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  text-transform: uppercase;
}

.investment-heading p {
  max-width: 580px;
  margin-bottom: var(--space-lg);
  color: #59636a;
  font-size: 14px;
}

.investment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(12, 46, 64, 0.13);
  border: 1px solid rgba(12, 46, 64, 0.13);
  border-radius: 14px;
}

.investment-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  padding: 15px 18px;
  background: var(--white);
}

.investment-item span {
  color: #59636a;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.investment-item strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.investment-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: 12px;
  padding: 20px 22px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 14px;
}

.investment-total span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.investment-total strong {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* Leis — grid 4/8, módulos separados somente por linhas */

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

.laws-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 24px;
  align-items: center;
}

.laws-layout > :first-child {
  grid-column: 1 / span 4;
  padding-right: var(--space-md);
}

.law-list {
  grid-column: 5 / span 8;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.law-card {
  position: relative;
  min-width: 0;
  padding: 12px 18px;
  text-align: left;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(12, 46, 64, 0.2);
  border-radius: 0;
  box-shadow: none;
}

.law-num {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.law-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
}

.law-card:nth-child(even) .law-icon {
  color: var(--gold);
}

.law-card h3 {
  min-height: 50px;
  margin-bottom: var(--space-xs);
  color: var(--navy);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.law-card p {
  margin-bottom: 0;
  color: #59636a;
  font-size: 11px;
  line-height: 1.4;
}

/* Timeline */

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

.timeline-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 24px;
  align-items: end;
  margin-bottom: var(--space-xl);
}

.timeline-heading .section-kicker {
  grid-column: 1 / span 4;
  margin-bottom: 6px;
}

.timeline-heading h2 {
  grid-column: 5 / span 8;
  margin-bottom: 0;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 7%;
  left: 7%;
  height: 2px;
  background: var(--green);
}

.tl-item {
  position: relative;
  z-index: 1;
  padding-inline: 10px;
  text-align: left;
}

.tl-node {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: var(--space-sm);
  color: var(--white);
  background: var(--green);
  border: 3px solid var(--cream);
  border-radius: 50%;
}

.tl-node--alt {
  color: var(--gold);
  background: var(--cream);
  box-shadow: inset 0 0 0 2px var(--green);
}

.tl-node svg {
  width: 20px;
  height: 20px;
}

.tl-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.tl-item--now strong {
  color: var(--green);
}

.tl-item p {
  max-width: 150px;
  margin-bottom: 0;
  color: #59636a;
  font-size: 12px;
  line-height: 1.4;
}

/* Rodapé */

.section-follow {
  padding-block: 80px var(--space-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 163, 44, 0.12), transparent 34%),
    var(--navy);
}

.follow-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 24px;
  align-items: stretch;
}

.follow-grid > :first-child {
  grid-column: 1 / span 5;
}

.follow-logo {
  display: none;
}

.follow-copy h2 {
  margin-bottom: var(--space-md);
}

.follow-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.follow-title {
  display: block;
  max-width: 480px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.follow-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-row {
  grid-column: 6 / span 7;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-self: center;
  align-items: center;
  gap: 12px;
}

.social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  min-height: 94px;
  padding: 14px 8px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social:nth-child(1) {
  --social-accent: #e1306c;
}

.social:nth-child(2) {
  --social-accent: #4c9aff;
}

.social:nth-child(3) {
  --social-accent: #ff3158;
}

.social:nth-child(4) {
  --social-accent: #25f4ee;
}

.social:nth-child(5) {
  --social-accent: #32d276;
}

.social svg {
  width: 28px;
  height: 28px;
  color: var(--social-accent);
}

.social:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: color-mix(in srgb, var(--social-accent) 65%, transparent);
  transform: translateY(-2px);
}

.ml-site .follow-motto {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 64px 0 0;
  padding: 38px 20px 10px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ml-site .follow-motto::before,
.ml-site .follow-motto::after {
  display: none;
}

.follow-legal {
  margin: var(--space-sm) 0 0;
  text-align: center;
}

.cnpj-pill {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.site-footer {
  display: none;
}

/* 1440+ */

@media (min-width: 1440px) {
  .about-collage {
    min-height: 540px;
  }
}

/* 1024–1280 */

@media (max-width: 1280px) {
  .container {
    padding-inline: 32px;
  }

  .about-collage {
    min-height: 470px;
  }
}

/* Tablet landscape */

@media (max-width: 1024px) {
  .sec-pad {
    padding-block: 80px;
  }

  .about-copy {
    grid-column: 1 / span 5;
  }

  .about-collage {
    grid-column: 6 / span 7;
    min-height: 410px;
  }

  .work-top > :first-child {
    grid-column: 1 / span 5;
  }

  .work-stat {
    grid-column: span 3;
    padding-inline: 16px;
  }

  .work-stat:last-child {
    grid-column: span 4;
  }

  .pillar {
    padding-inline: 14px;
  }

  .pillar p {
    font-size: 12px;
  }

  .laws-layout > :first-child {
    grid-column: 1 / span 4;
  }

  .law-list {
    grid-column: 5 / span 8;
  }

  .law-card {
    padding-inline: 12px;
  }
}

/* Navegação compacta */

@media (max-width: 960px) {
  .ml-site .nav:not(.nav--bar) {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 32px 24px;
    background: var(--cream);
    border-bottom: 1px solid rgba(12, 46, 64, 0.16);
  }

  .ml-site .nav:not(.nav--bar).is-open {
    display: flex;
  }

  .ml-site .nav:not(.nav--bar) a {
    min-height: 48px;
    padding-block: 15px;
    color: var(--navy);
    border-bottom: 1px solid rgba(12, 46, 64, 0.1);
  }

  .ml-site .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
}

/* Mobile/tablet portrait */

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .container {
    padding-inline: 20px;
  }

  .sec-pad {
    padding-block: var(--space-2xl);
  }

  .brand img {
    height: 44px;
  }

  .about-grid,
  .laws-layout,
  .timeline-heading,
  .follow-grid {
    display: block;
  }

  .about-copy {
    padding-right: 0;
  }

  .about-collage {
    min-height: min(112vw, 560px);
    margin-top: var(--space-xl);
  }

  .causes-band {
    margin-top: var(--space-lg);
    padding: var(--space-md);
  }

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

  .causes-list li {
    flex-direction: row;
    justify-content: flex-start;
    padding: 14px 8px;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .cause-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    font-size: 20px;
  }

  .section-work {
    padding-block: var(--space-2xl);
  }

  .work-top {
    display: block;
    margin-bottom: var(--space-lg);
  }

  .work-top > :first-child {
    padding-right: 0;
    margin-bottom: var(--space-lg);
  }

  .work-stat,
  .work-stat:last-child {
    min-height: 96px;
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .pillar,
  .pillar:first-child,
  .pillar:last-child {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 4px var(--space-sm);
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
    text-align: left;
  }

  .pillar-icon {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .pillar h3,
  .pillar p {
    margin: 0;
  }

  .laws-layout > :first-child {
    padding-right: 0;
    margin-bottom: var(--space-xl);
  }

  .law-list {
    display: block;
  }

  .law-card {
    display: grid;
    grid-template-columns: 34px 40px 1fr;
    grid-template-rows: auto auto;
    gap: 2px var(--space-sm);
    min-height: 0;
    padding: 18px 0;
    border-top: 1px solid rgba(12, 46, 64, 0.2);
    border-left: 0;
  }

  .law-num {
    grid-row: 1 / span 2;
    align-self: center;
    margin: 0;
    font-size: 24px;
  }

  .law-icon {
    grid-row: 1 / span 2;
    align-self: center;
    margin: 0;
  }

  .law-card h3 {
    min-height: 0;
    margin: 0;
  }

  .law-card p {
    margin: 0;
  }

  .timeline-heading .section-kicker {
    margin-bottom: var(--space-sm);
  }

  .timeline {
    display: block;
    margin-top: var(--space-xl);
  }

  .timeline::before {
    top: 8px;
    bottom: 8px;
    left: 21px;
    width: 2px;
    height: auto;
  }

  .tl-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 2px var(--space-sm);
    min-height: 88px;
    padding: 0 0 var(--space-lg);
  }

  .tl-node {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .tl-item strong {
    font-size: 20px;
  }

  .tl-item p {
    max-width: none;
  }

  .follow-grid > :first-child {
    margin-bottom: var(--space-lg);
  }

  .social-row {
    grid-template-columns: repeat(5, minmax(58px, 1fr));
    gap: 6px;
    overflow: visible;
    padding-bottom: 0;
  }

  .social {
    min-height: 80px;
    padding-inline: 4px;
    font-size: 8px;
  }

  .social svg {
    width: 25px;
    height: 25px;
  }

  .social:last-child {
    grid-column: auto;
  }

  .ml-site .follow-motto {
    margin-top: 48px;
    padding: 32px 12px 8px;
    font-size: clamp(22px, 7vw, 30px);
  }
}

@media (max-width: 520px) {
  .campaign-hero {
    height: min(112vw, 560px);
  }

  .hero-banner,
  .hero-banner img {
    width: 100%;
    max-width: none;
    height: 100%;
  }

  .hero-banner img {
    object-fit: cover;
    object-position: center top;
  }
}

@media (max-width: 480px) {
  .sec-pad {
    padding-block: 56px;
  }

  .ml-site .nav:not(.nav--bar) {
    padding-inline: 20px;
  }

  .script {
    font-size: 40px;
  }

  .caps {
    font-size: 34px;
  }

  .about-collage {
    min-height: 390px;
    margin-top: var(--space-lg);
  }

  .follow-eyebrow {
    font-size: 22px;
  }

  .follow-title {
    font-size: 34px;
  }

  .ml-site .follow-motto::before,
  .ml-site .follow-motto::after {
    width: 28px;
  }

  .investment-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 18px;
  }

  .investment-modal {
    max-height: calc(100dvh - 20px);
    padding: 28px 18px 18px;
  }

  .investment-close {
    top: 14px;
    right: 14px;
  }

  .investment-heading {
    padding-right: 44px;
  }

  .investment-heading h2 {
    font-size: 28px;
  }

  .investment-list {
    grid-template-columns: 1fr;
  }

  .investment-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 14px;
  }

  .investment-item span {
    max-width: 44%;
  }

  .investment-item strong {
    font-size: 13px;
    text-align: right;
  }

  .investment-total {
    display: block;
    padding: 18px;
  }

  .investment-total strong {
    display: block;
    margin-top: 4px;
    font-size: 23px;
  }
}

@media (max-width: 340px) {
  .causes-list {
    grid-template-columns: 1fr;
  }

  .causes-list li:first-child {
    border-top: 0;
  }
}

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