:root {
    --blue: #2f6f8c;
  }
  
  .eyebrow { color: var(--blue); }
  
  .hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background: var(--ink);
    overflow: hidden;
  }
  .hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16,32,24,0.40) 0%, rgba(16,32,24,0.12) 38%, rgba(16,32,24,0.84) 100%);
  }
  .hero__content {
    position: relative;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 48px;
  }
  .hero__eyebrow  { color: #bfe6cf; margin-bottom: 16px; display: block; }
  .hero__headline {
    color: #fff;
    font-size: 36px;
    margin: 0 0 16px;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 30px rgba(0,0,0,0.32);
  }
  .hero__body {
    font-size: 17px;
    color: rgb(255,255,255);
    margin: 0 0 28px;
    line-height: 1.55;
    text-wrap: balance;
  }

  .hero__donate {
    font-size: 16px;
    color: rgb(255,255,255);
    line-height: 1.65;
    max-width: 52ch;
    margin: 0 0 32px;
    text-wrap: balance;
  }
  .hero__donate strong {
    font-weight: 700;
  }

  .hero__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    
  }
  
  .hero__buttons .btn {
    min-width: 235px;
    justify-content: center;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 700;
    font-size: 15px;
    border-radius: 999px;
    padding: 13px 24px;
    cursor: pointer;
    transition: background 0.16s, border-color 0.16s;
    border: 1.5px solid transparent;
  }
  .btn--primary { background: var(--green); color: #fff; }
  .btn--primary:hover { background: var(--green-d); }
  .btn--ghost { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.6); }
  .btn--ghost:hover { background: rgba(255,255,255,0.2); border-color: #fff; }
  
  @media (min-width: 600px) {
    .hero__headline { font-size: 48px; }
    .hero__body     { max-width: 50ch; }
  }
  
  @media (min-width: 900px) {
    .hero           { min-height: 600px; }
    .hero__content  { padding-top: 92px; padding-bottom: 62px; }
    .hero__headline { font-size: 62px; margin-bottom: 22px; }
    .hero__body     { font-size: 19px; margin-bottom: 32px; }
    .btn            { font-size: 15.5px; padding: 15px 28px; }
  }
  
  .issue { padding: 28px 0 48px; }
  .issue__header  { padding: 20px 0 16px; }
  .issue__eyebrow { display: block; margin-bottom: 10px; }
  .issue__heading { font-size: 30px; margin: 0 0 12px; letter-spacing: -0.03em; }
  .issue__intro   { font-size: 16px; color: var(--muted); line-height: 1.55; }
  .issue__grid    { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 14px; }
  
  @media (min-width: 560px) {
    .issue__grid { grid-template-columns: 1fr 1fr; }
  }
  
  @media (min-width: 900px) {
    .issue          { padding: 40px 0 84px; }
    .issue__header  { padding: 34px 0 30px; }
    .issue__heading { font-size: 46px; margin-bottom: 18px; }
    .issue__intro   { font-size: 18px; max-width: 62ch; }
    .issue__grid    { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  }
  
  .topic {
    display: block;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  }
  .topic:hover {
    border-color: #cdd6cf;
    box-shadow: 0 18px 40px -26px rgba(22,40,30,0.4);
    transform: translateY(-2px);
  }
  .topic__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
  }
  .topic__icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    flex-shrink: 0;
  }
  .topic__title { font-size: 18px; margin: 0; white-space: nowrap; }
  .topic__body  { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }
  .topic__more  {
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    transition: gap 0.18s;
  }
  .topic:hover .topic__more { gap: 10px; }
  
  @media (min-width: 900px) {
    .topic        { border-radius: 18px; padding: 26px 26px 30px; }
    .topic__head  { gap: 12px; margin-bottom: 18px; }
    .topic__icon  { width: 38px; height: 38px; }
    .topic__title { font-size: 19px; }
    .topic__body  { font-size: 15px; }
    .topic__more  { font-size: 14px; margin-top: 18px; }
  }
  
  .position { background: var(--soft); }
  .position__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }
  .position__eyebrow  { display: block; margin-bottom: 10px; }
  .position__heading  { font-size: 22px; line-height: 1.25; letter-spacing: -0.02em; }
  .position__principles { display: flex; flex-direction: column; gap: 14px; }
  .position__principle  { display: flex; gap: 12px; align-items: flex-start; }
  .position__check {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .position__principle-title  { font-size: 15px; font-weight: 700; display: block; }
  .position__principle-detail { font-size: 14px; color: var(--muted); }
  
  @media (min-width: 900px) {
    .position__inner    { padding: 70px 56px; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
    .position__heading  { font-size: 33px; }
    .position__principles { gap: 18px; }
    .position__principle  { gap: 14px; }
    .position__principle-title  { font-size: 16px; }
    .position__principle-detail { font-size: 14.5px; }
  }
  
  .video { padding: 40px 0; }
  .video__card { border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; }
  .video__facade { position: relative; padding-bottom: 56.25%; height: 0; }
  .video__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
  .video__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16,32,24,0.1), rgba(16,32,24,0.72));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    pointer-events: none;
  }
  .video__eyebrow { color: #bfe6cf; margin-bottom: 8px; }
  .video__heading { color: #fff; font-size: 22px; }
  .video__body    { color: #dfeae2; font-size: 14px; margin: 8px 0 0; }
  .video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 36px rgba(0,0,0,0.3);
    transition: transform 0.18s;
  }
  .video__card:hover .video__play { transform: translate(-50%, -50%) scale(1.07); }
  .video__player { display: none; position: relative; padding-bottom: 56.25%; height: 0; }
  .video__player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
  .video__card--playing .video__facade { display: none; }
  .video__card--playing .video__player { display: block; }
  
  @media (min-width: 900px) {
    .video          { padding: 84px 0; }
    .video__card    { border-radius: 24px; }
    .video__overlay { padding: 46px; }
    .video__heading { font-size: 34px; }
    .video__body    { font-size: 16px; margin-top: 12px; max-width: 46ch; }
    .video__play    { width: 84px; height: 84px; }
  }
  
  .updates { padding: 0 0 48px; }
  .updates__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }
  .updates__eyebrow { display: block; margin-bottom: 8px; }
  .updates__heading { font-size: 28px; letter-spacing: -0.03em; }
  .updates__all     { font-weight: 700; color: var(--green); font-size: 15px; white-space: nowrap; padding-top: 4px; }
  .updates__grid    { display: grid; grid-template-columns: 1fr; gap: 14px; }
  
  @media (min-width: 560px) {
    .updates__grid { grid-template-columns: 1fr 1fr; }
  }
  
  @media (min-width: 900px) {
    .updates          { padding-bottom: 84px; }
    .updates__header  { align-items: flex-end; margin-bottom: 30px; }
    .updates__heading { font-size: 40px; }
    .updates__grid    { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  }
  
  .update {
    display: block;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px;
    transition: border-color 0.18s, box-shadow 0.18s;
  }
  .update:hover {
    border-color: #cdd6cf;
    box-shadow: 0 18px 40px -26px rgba(22,40,30,0.4);
  }
  .update__meta  { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
  .update__tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--pale);
    padding: 4px 10px;
    border-radius: 999px;
  }
  .update__tag--campaign    { background: #faf6ea; color: #b08a2e; }
  .update__tag--evidence    { background: #faf3f0; color: #b0563a; }
  .update__tag--local-plan  { background: #e6f0f5; color: #2f6f8c; }
  .update__tag--community   { background: #eef1f0; color: #5a6b62; }
  .update__tag--environment { background: #eef5ed; color: #4f7a3f; }
  .update__date  { font-size: 12px; color: var(--muted); font-weight: 600; }
  .update__title { font-size: 17px; margin: 0 0 8px; }
  .update__body  { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }
  
  @media (min-width: 900px) {
    .update        { border-radius: 18px; padding: 28px; }
    .update__meta  { margin-bottom: 16px; }
    .update__tag   { font-size: 11.5px; }
    .update__title { font-size: 19px; margin-bottom: 10px; }
    .update__body  { font-size: 14.5px; }
  }
  
  .involve { padding: 0 0 48px; }
  .involve__box {
    background: var(--ink);
    border-radius: 18px;
    padding: 32px 20px;
    color: #fff;
  }
  .involve__eyebrow { color: #9fd4b5; display: block; margin-bottom: 10px; }
  .involve__heading { font-size: 30px; color: #fff; letter-spacing: -0.03em; margin: 0 0 10px; }
  .involve__intro   { font-size: 16px; color: #c4d0c8; margin: 0 0 24px; line-height: 1.55; }
  .involve__roles   { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 24px; }
  
  @media (min-width: 560px) {
    .involve__roles { grid-template-columns: 1fr 1fr; }
  }
  
  @media (min-width: 900px) {
    .involve          { padding-bottom: 84px; }
    .involve__box     { border-radius: 28px; padding: 64px; }
    .involve__heading { font-size: 42px; margin-bottom: 14px; }
    .involve__intro   { font-size: 18px; margin-bottom: 38px; }
    .involve__roles   { grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 38px; }
  }
  
  .role {
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    padding: 18px;
  }
  .role__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }
  .role__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9fd4b5;
    flex-shrink: 0;
  }
  .role__title { font-size: 15px; color: #fff; margin: 0; white-space: nowrap; }
  .role__body  { font-size: 13px; color: #b6c2ba; margin: 0; line-height: 1.5; }
  
  @media (min-width: 900px) {
    .role        { border-radius: 16px; padding: 24px; }
    .role__head  { gap: 14px; margin-bottom: 16px; }
    .role__title { font-size: 17px; }
    .role__body  { font-size: 13.5px; }
  }
  
  .donate {
    background: rgba(241,196,90,0.1);
    border: 1px solid rgba(241,196,90,0.3);
    border-radius: 14px;
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .donate__title { font-size: 18px; color: #fff; margin: 0 0 4px; }
  .donate__body  { font-size: 13px; color: #d8cdb0; margin: 0; }
  .donate__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f1c45a;
    color: #2a2107;
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    transition: background 0.15s;
    white-space: nowrap;
  }
  .donate__cta:hover { background: #e4b243; }
  
  .signup {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .signup__title { font-size: 18px; color: #fff; margin: 0 0 4px; }
  .signup__body  { font-size: 13px; color: #b6c2ba; margin: 0; }
  .signup__form  { display: flex; flex-direction: column; gap: 10px; }
  .signup__input {
    border: none;
    border-radius: 999px;
    padding: 13px 16px;
    font-size: 15px;
    font-family: inherit;
    width: 100%;
    outline: none;
  }
  .signup__submit {
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
    width: 100%;
  }
  .signup__submit:hover { background: var(--green-d); }
  .signup__submit:disabled { opacity: 0.6; cursor: default; }
  .signup__msg { font-size: 13px; margin: 0; color: #a8c8a8; }
  .signup__msg:not(:empty) { margin-top: 6px; }
  .signup__msg--error { color: #f5a0a0; }
  
  @media (min-width: 700px) {
    .signup { grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 26px 28px; border-radius: 18px; }
    .signup__title { font-size: 21px; margin-bottom: 5px; }
    .signup__form  { flex-direction: row; }
    .signup__input { width: 270px; padding: 14px 20px; }
    .signup__submit { width: auto; padding: 0 26px; }
    .donate { grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 26px 28px; border-radius: 18px; margin-bottom: 18px; }
    .donate__title { font-size: 21px; margin-bottom: 5px; }
    .donate__cta   { padding: 14px 28px; }
  }