:root {
  --blue: #009ee2;
  --blue-dark: #003a70;
  --ink: #061a2d;
  --muted: #52677c;
  --line: #d7e6ef;
  --paper: #ffffff;
  --pale: #f1f8fc;
  --yellow: #ffcb05;
  font-family:
    Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

body {
  margin: 0;
  background: #ffffff;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue-dark);
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 10px rgba(6, 26, 45, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 188px;
}

.brand img {
  display: block;
  width: auto;
  height: 76px;
  max-width: 100%;
  object-fit: contain;
}

.main-nav {
  flex: 1 1 auto;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 34px);
  color: #1c252c;
  font-size: 0.98rem;
  font-weight: 400;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 72px;
  color: #1c252c;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: #f47b20;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.donate-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 118px;
  min-height: 44px;
  border-radius: 6px;
  padding: 0 18px;
  color: #ffffff;
  background: #f47b20;
  font-size: 0.95rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(244, 123, 32, 0.22);
}

.donate-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #ffffff;
  place-items: center;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(430px, 41vw, 560px);
  color: #ffffff;
  background: #0078a7;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 58, 112, 0.62), rgba(0, 104, 156, 0.18));
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image img {
  position: absolute;
  inset: -4%;
  display: block;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04) translate3d(8px, 0, 0);
  transform-origin: center;
  animation: heroImageChange 30s infinite;
  pointer-events: none;
  user-select: none;
  will-change: opacity, transform;
}

.hero-image img:nth-child(1) {
  animation-delay: 0s;
  transform-origin: 48% 50%;
}

.hero-image img:nth-child(2) {
  animation-delay: 6s;
  transform-origin: 54% 48%;
}

.hero-image img:nth-child(3) {
  animation-delay: 12s;
  transform-origin: 45% 54%;
}

.hero-image img:nth-child(4) {
  animation-delay: 18s;
  transform-origin: 52% 52%;
}

.hero-image img:nth-child(5) {
  animation-delay: 24s;
  transform-origin: 46% 48%;
}

@keyframes heroImageChange {
  0% {
    opacity: 0;
    transform: scale(1.04) translate3d(8px, 0, 0);
  }

  5% {
    opacity: 1;
    transform: scale(1.025) translate3d(0, 0, 0);
  }

  20% {
    opacity: 1;
    transform: scale(1.02) translate3d(-8px, 0, 0);
  }

  26%,
  100% {
    opacity: 0;
    transform: scale(1.02) translate3d(-10px, 0, 0);
  }
}

.hero-grid {
  display: flex;
  min-height: inherit;
  align-items: center;
  padding: clamp(28px, 5vw, 54px) 0 86px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(52vw, 620px);
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 100%;
  margin-bottom: clamp(28px, 3vw, 38px);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: clamp(4rem, 8.7vw, 7.2rem);
  font-weight: 950;
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-title span {
  display: block;
}

.hero-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 2px solid var(--yellow);
  border-radius: 6px;
  padding: 0 22px;
  color: #061a2d;
  background: var(--yellow);
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.hero-register.is-returning {
  color: #ffffff;
  border-color: #f47b20;
  background: #f47b20;
}

.card-label,
.section-kicker,
.section-heading p,
.did-you-know p,
.blue-panel p {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.content-band,
.section-block,
.foundation-section {
  padding: clamp(52px, 8vw, 92px) 0;
}

.collector-initiative {
  padding: clamp(28px, 5vw, 48px) 0;
  background: #00aeff;
  text-align: center;
}

.collector-initiative .container {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.collector-initiative strong {
  color: #ffffff;
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.collector-initiative em {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.4;
}

.recycle-section {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 64px) 0;
  background: linear-gradient(105deg, #eef9f5 0%, #e8f7ff 62%, #fff8d8 100%);
}

.recycle-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 450px);
  gap: clamp(30px, 7vw, 88px);
  align-items: center;
}

.recycle-intro h1,
.recycle-intro h2,
.certificate-preview-heading h2 {
  max-width: 760px;
  color: var(--blue-dark);
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 0.98;
  margin-bottom: 20px;
}

.recycle-intro p {
  max-width: 700px;
  color: #31485f;
  font-size: 1.08rem;
  line-height: 1.7;
}

.recycle-card {
  position: relative;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 62px rgba(0, 58, 112, 0.12);
}

.register-form,
.bottle-form {
  display: grid;
  gap: 12px;
}

.register-form h1,
.register-form h2,
.register-form h3,
.bottle-form h2,
.bottle-form h3 {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.05;
}

.register-main {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
}

.register-only-section {
  background: #f6fbff;
}

.register-only-shell {
  display: grid;
  min-height: calc(100vh - 180px);
  place-items: center;
  padding: clamp(28px, 6vw, 70px) 0;
}

.register-only-shell .recycle-card {
  width: min(100%, 440px);
}

.bottle-dashboard-section {
  border-bottom: 1px solid var(--line);
  padding: clamp(22px, 3vw, 36px) 0;
}

.bottle-dashboard-section .recycle-shell {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 448px);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.bottle-dashboard-section .section-kicker {
  display: none;
}

.bottle-dashboard-section .recycle-intro h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 4.9vw, 3.95rem);
  line-height: 1.02;
}

.bottle-dashboard-section .recycle-intro p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.register-form label,
.bottle-form label {
  color: #31485f;
  font-size: 0.92rem;
  font-weight: 900;
}

.register-form input,
.bottle-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #bfd6e4;
  border-radius: 7px;
  padding: 0 14px;
  color: var(--ink);
  background: #ffffff;
}

.register-form input:focus,
.bottle-form input:focus {
  outline: 3px solid rgba(0, 158, 226, 0.18);
  border-color: var(--blue);
}

.primary-action,
.download-certificate {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  border: 0;
  border-radius: 7px;
  padding: 0 18px;
  color: #ffffff;
  background: #f47b20;
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 12px 28px rgba(244, 123, 32, 0.22);
}

.download-certificate {
  background: var(--blue-dark);
}

.download-certificate:disabled {
  cursor: not-allowed;
  color: #ffffff;
  background: #8798a8;
  box-shadow: none;
  opacity: 0.9;
}

.welcome-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.welcome-label {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.bottle-total {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border: 8px solid #d7f1dd;
  border-radius: 50%;
  color: #00843d;
  background: #ffffff;
  font-size: 2rem;
}

.progress-wrap {
  display: grid;
  gap: 9px;
  margin-top: 10px;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #31485f;
  font-weight: 900;
}

.progress-track {
  overflow: hidden;
  height: 14px;
  border-radius: 999px;
  background: #dcecf4;
}

.progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00a651 0%, #7ac943 36%, #f1f1f0 68%, #ff7a1a 100%);
  transition: width 520ms ease;
}

.completion-message {
  margin: 6px 0 0;
  color: #09833f;
  font-weight: 900;
  line-height: 1.45;
}

.celebration-layer {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
}

.recycle-section.is-celebrating .celebration-layer {
  opacity: 1;
}

.party-popper {
  position: absolute;
  right: 11%;
  bottom: 18%;
  width: 120px;
  height: 120px;
  opacity: 0;
  transform: translateY(20px) rotate(-16deg) scale(0.8);
}

.party-popper::before {
  content: "";
  position: absolute;
  left: 40px;
  bottom: 6px;
  width: 46px;
  height: 84px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: repeating-linear-gradient(45deg, #f47b20 0 12px, #fafaf9 12px 24px, #00a651 24px 36px);
  transform: rotate(160deg);
}

.party-popper::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 28%, #f23c88 0 4px, transparent 5px),
    radial-gradient(circle at 36% 12%, #00a651 0 5px, transparent 6px),
    radial-gradient(circle at 62% 24%, #009ee2 0 4px, transparent 5px),
    radial-gradient(circle at 80% 42%, #ffcb05 0 5px, transparent 6px),
    radial-gradient(circle at 52% 48%, #f47b20 0 4px, transparent 5px);
}

.recycle-section.is-celebrating .party-popper {
  animation: popperIn 1250ms ease forwards;
}

.confetti-field {
  position: absolute;
  inset: -20% 0 0;
  background:
    radial-gradient(circle at 10% 15%, #f23c88 0 4px, transparent 5px),
    radial-gradient(circle at 18% 30%, #ffcb05 0 5px, transparent 6px),
    radial-gradient(circle at 28% 8%, #00a651 0 4px, transparent 5px),
    radial-gradient(circle at 40% 24%, #009ee2 0 5px, transparent 6px),
    radial-gradient(circle at 52% 12%, #f47b20 0 4px, transparent 5px),
    radial-gradient(circle at 66% 32%, #f23c88 0 5px, transparent 6px),
    radial-gradient(circle at 78% 10%, #00a651 0 4px, transparent 5px),
    radial-gradient(circle at 90% 26%, #ffcb05 0 5px, transparent 6px);
  opacity: 0;
}

.recycle-section.is-celebrating .confetti-field {
  animation: confettiRain 1400ms ease-out forwards;
}

.milestone-badge {
  position: absolute;
  left: 9%;
  bottom: 16%;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border: 8px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  background: #00a651;
  text-align: center;
  box-shadow: 0 20px 42px rgba(6, 26, 45, 0.2);
  opacity: 0;
  transform: scale(0.62);
}

.milestone-badge span {
  display: block;
  margin-bottom: -24px;
  font-size: 4rem;
  font-weight: 950;
}

.milestone-badge strong {
  max-width: 94px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.recycle-section.is-complete .milestone-badge,
.recycle-section.is-celebrating .milestone-badge {
  animation: badgeComplete 720ms ease 320ms forwards;
}

.certificate-preview-section {
  padding: 0 0 clamp(42px, 7vw, 74px);
  background: linear-gradient(105deg, #eef9f5 0%, #e8f7ff 62%, #fff8d8 100%);
}

.certificate-preview-heading {
  margin-bottom: clamp(12px, 2vw, 22px);
}

.certificate {
  overflow: hidden;
  width: min(100%, 1080px, calc((100vh - 190px) * 1.414));
  margin: 0 auto;
  border: 1px solid #d9d9d9;
  color: #111111;
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
    radial-gradient(ellipse at center, rgba(0, 158, 226, 0.08), transparent 42%),
    #fbfaf7;
  box-shadow: 0 18px 42px rgba(6, 26, 45, 0.1);
  text-align: center;
}

.certificate-image-card {
  container-type: inline-size;
  position: relative;
  aspect-ratio: 1600 / 1131;
  border: 0;
  background: #ffffff;
  user-select: none;
  -webkit-user-select: none;
}

.certificate-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='220' viewBox='0 0 360 220'%3E%3Ctext x='180' y='114' text-anchor='middle' dominant-baseline='middle' transform='rotate(-28 180 110)' fill='%23003a70' fill-opacity='0.16' font-family='Arial, Helvetica, sans-serif' font-size='38' font-weight='800'%3EPREVIEW ONLY%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 360px 220px;
}

.certificate-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-drag: none;
}

.certificate-top {
  display: flex;
  justify-content: center;
  gap: 32px;
  align-items: center;
  min-height: 150px;
  padding: 22px 24px;
}

.certificate-top img {
  max-width: 112px;
  max-height: 110px;
  object-fit: contain;
}

.certificate-top .certificate-logo {
  max-width: 250px;
  max-height: 108px;
}

.certificate-band {
  padding: clamp(18px, 4vw, 32px) 18px;
  color: #ffffff;
  background: #408af2;
  font-size: clamp(2rem, 6vw, 4.2rem);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.certificate-body {
  position: relative;
  display: grid;
  justify-items: center;
  padding: clamp(28px, 5vw, 54px) clamp(20px, 8vw, 110px) 34px;
}

.presented-text {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  letter-spacing: 0.06em;
}

.certificate-name {
  position: absolute;
  z-index: 1;
  left: 18%;
  right: 18%;
  top: 48.5%;
  transform: translateY(-50%);
  min-height: auto;
  color: #003a70;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.9rem, 3.8vw, 3.1rem);
  font-size: clamp(0.9rem, 3.8cqw, 3.1rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.name-line {
  width: min(620px, 86%);
  height: 1px;
  margin: 0 auto 22px;
  background: #2f2f2f;
}

.certificate-copy {
  max-width: 950px;
  margin-bottom: 34px;
  color: #202020;
  font-size: clamp(1rem, 2.1vw, 1.28rem);
  line-height: 1.55;
  letter-spacing: 0.05em;
}

.signature-block {
  display: grid;
  justify-items: center;
  color: #24314d;
}

.signature-text {
  min-width: 260px;
  border-bottom: 1px solid #444444;
  padding-bottom: 5px;
  color: #111111;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 2rem;
}

.signature-block strong {
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.06em;
}

.signature-block span:last-child {
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.08em;
}

.certificate-footer {
  padding: 16px;
  color: #ffffff;
  background: #408af2;
  font-size: clamp(1.5rem, 4vw, 2.9rem);
  font-weight: 950;
}

@keyframes popperIn {
  0% {
    opacity: 0;
    transform: translateY(20px) rotate(-16deg) scale(0.8);
  }

  30%,
  100% {
    opacity: 1;
    transform: translateY(0) rotate(-16deg) scale(1);
  }
}

@keyframes confettiRain {
  0% {
    opacity: 0;
    transform: translateY(-18%);
  }

  12% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(34%);
  }
}

@keyframes badgeComplete {
  0% {
    opacity: 0;
    transform: scale(0.62);
  }

  70% {
    opacity: 1;
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.foundation-grid,
.work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.foundation-intro h2 {
  max-width: 860px;
  color: var(--blue-dark);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.foundation-intro p {
  color: #31485f;
  font-size: 1.08rem;
  line-height: 1.75;
}

.impact-panel {
  display: grid;
  gap: 7px;
  border-left: 8px solid #024055;
  padding: 30px;
  background: #00b7ff;
  color: #ffffff;
}

.impact-panel strong {
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.9;
}

.impact-panel span {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  text-transform: uppercase;
}

#whoWeAre {
  padding: clamp(32px, 5vw, 54px) 0;
}

#whoWeAre .foundation-grid {
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

#whoWeAre .foundation-intro h2 {
  margin-bottom: clamp(34px, 4vw, 48px);
  color: var(--blue-dark);
  font-size: clamp(3.2rem, 5.4vw, 4.1rem);
  font-weight: 950;
  line-height: 0.92;
}

#whoWeAre .foundation-intro p {
  max-width: 820px;
  margin-bottom: 22px;
  color: #0b315f;
  font-size: 1.05rem;
  line-height: 1.72;
}

#whoWeAre .impact-panel {
  width: min(100%, 326px);
  min-height: 310px;
  margin-top: 0;
  gap: 8px;
  border-left-width: 8px;
  padding: 32px;
  background: #12b5ec;
}

#whoWeAre .impact-panel strong {
  font-size: clamp(4.4rem, 6.4vw, 5.1rem);
  font-weight: 950;
  line-height: 0.88;
}

#whoWeAre .impact-panel span {
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 0.95rem;
}

@media (min-width: 861px) {
  #whoWeAre .foundation-grid {
    grid-template-columns: minmax(0, 1fr) 326px;
    gap: clamp(48px, 7vw, 82px);
  }

  #whoWeAre .impact-panel {
    width: 326px;
    margin-top: clamp(38px, 6vw, 62px);
  }
}

.pale-section {
  background: var(--pale);
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
}

.location-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--blue-dark);
  background: #ffffff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 58, 112, 0.06);
}

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

.program-grid article {
  min-height: 220px;
  border-top: 6px solid var(--blue);
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(0, 58, 112, 0.08);
}

.program-grid h3 {
  color: var(--blue-dark);
  font-size: 1.18rem;
  line-height: 1.18;
}

.program-grid p {
  margin-bottom: 0;
  color: #31485f;
  line-height: 1.55;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(34px, 6vw, 86px);
}

.lead-article h2,
.section-heading h2,
.split-panel h2,
.callout h2,
.did-you-know h2 {
  color: var(--blue-dark);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead-article p,
.split-panel p,
.event-card p,
.resource-card p {
  color: #31485f;
  font-size: 1.08rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  border-bottom: 3px solid var(--yellow);
  color: var(--blue-dark);
  font-weight: 900;
}

.photo-band {
  padding: clamp(52px, 8vw, 90px) 0;
  background: #ffffff;
}

.photo-band .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.photo-band .section-heading p {
  grid-column: 1 / -1;
}

.photo-band .section-heading h2 {
  max-width: 760px;
}

.photo-band .section-heading a {
  grid-column: 2;
  grid-row: 2;
}

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

.photo-card {
  overflow: hidden;
  display: grid;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(0, 58, 112, 0.08);
}

.photo-card img {
  display: block;
  width: 100%;
  height: clamp(150px, 15vw, 190px);
  object-fit: cover;
}

.photo-card div {
  padding: 18px;
}

.photo-card span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-card h3 {
  margin: 8px 0 0;
  color: var(--blue-dark);
  font-size: 1.15rem;
  line-height: 1.22;
}

.bottle-bin-panel {
  align-self: center;
  margin: 0;
}

.bottle-bin-panel img {
  display: block;
  width: min(100%, 420px);
  margin-left: auto;
  object-fit: contain;
}

.feature-strip {
  padding: 46px 0;
  background: var(--blue-dark);
  color: #ffffff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.feature-grid article {
  padding: 30px;
  background: var(--blue-dark);
}

.feature-grid span {
  color: var(--yellow);
  font-weight: 950;
}

.feature-grid h3 {
  margin: 12px 0 8px;
  font-size: 1.6rem;
}

.feature-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

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

.section-heading a {
  color: var(--blue-dark);
  font-weight: 900;
}

.event-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 28px;
  border: 1px solid var(--line);
  padding: 30px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(0, 58, 112, 0.08);
}

.event-date {
  display: grid;
  place-items: center;
  min-height: 150px;
  color: #ffffff;
  background: var(--blue);
  text-align: center;
}

.event-date strong {
  display: block;
  font-size: 4rem;
  line-height: 0.9;
}

.pale {
  background: var(--pale);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 70px);
}

.section-heading.compact {
  display: grid;
  gap: 8px;
  align-items: start;
}

.section-heading.compact h2 {
  margin-bottom: 4px;
}

.stacked-links {
  border-top: 6px solid var(--blue);
  background: var(--pale);
}

.stacked-links a {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 22px;
  color: var(--blue-dark);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.35;
}

.resource-card {
  min-height: 280px;
  border-top: 6px solid var(--blue);
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(0, 58, 112, 0.08);
}

.resource-card span {
  color: var(--blue);
  font-weight: 900;
}

.resource-card h3,
.event-card h3 {
  color: var(--blue-dark);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.story-list {
  border-left: 6px solid var(--yellow);
  background: var(--pale);
}

.story-list a {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 22px;
  color: var(--blue-dark);
  font-weight: 900;
}

.blue-panel {
  background: var(--blue-dark);
  color: #ffffff;
}

.blue-panel p,
.blue-panel h2 {
  color: #ffffff;
}

.callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: center;
}

.action-links {
  display: grid;
  gap: 12px;
}

.action-links a,
.did-you-know a {
  display: inline-flex;
  justify-content: center;
  border: 2px solid var(--yellow);
  padding: 14px 18px;
  color: #ffffff;
  font-weight: 900;
}

.did-you-know {
  padding: 44px 0;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(0, 58, 112, 0.94), rgba(0, 158, 226, 0.88));
}

.did-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.did-you-know p,
.did-you-know h2 {
  color: #ffffff;
}

.did-you-know h2 {
  max-width: 820px;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.site-footer {
  color: #d6e2df;
  background: #0c1714;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 1.15fr 1.35fr;
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(48px, 8vw, 74px) 0 64px;
}

.footer-about p,
.footer-contact p,
.footer-column a,
.program-list li,
.newsletter-form label,
.footer-bottom p,
.footer-bottom a {
  color: #c9d8d5;
  font-size: 0.98rem;
  line-height: 1.55;
}

.footer-logo {
  display: block;
  width: 96px;
  max-width: 58%;
  max-height: 74px;
  margin-bottom: 18px;
  object-fit: contain;
}

.footer-about p {
  max-width: 280px;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #aab9b6;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  position: relative;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.2;
}

.footer-column h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 38px;
  height: 2px;
  background: #f47b20;
}

.footer-column a:hover,
.footer-bottom a:hover,
.social-links a:hover {
  color: #ffffff;
}

.program-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.program-marker {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  font-size: 1.05rem;
  line-height: 1;
  flex: 0 0 auto;
}

.footer-contact address {
  display: grid;
  gap: 12px;
  margin: 0;
  font-style: normal;
}

.footer-contact p {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 0;
}

.contact-symbol {
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  margin-top: 2px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--blue);
  font-size: 0.56rem;
  font-weight: 950;
}

.newsletter-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.newsletter-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.newsletter-form input {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 7px;
  padding: 0 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input::placeholder {
  color: #94a29f;
}

.newsletter-form button {
  min-width: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 13px;
  color: #ffffff;
  background: #f47b20;
  font-weight: 900;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  min-height: 56px;
}

.footer-bottom p {
  margin: 0;
  color: #90a19d;
}

.footer-bottom span {
  margin: 0 8px;
}

.footer-bottom nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 58, 112, 0.94);
}

.search-panel[hidden] {
  display: none;
}

.close-search {
  position: fixed;
  right: 24px;
  top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 10px 14px;
  color: #ffffff;
  background: transparent;
}

.search-panel label {
  display: grid;
  width: min(720px, 100%);
  gap: 12px;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
}

.search-panel input {
  width: 100%;
  border: 0;
  padding: 18px 20px;
  color: var(--ink);
}

@media (max-width: 1080px) {
  .header-inner {
    gap: 18px;
  }

  .nav-inner {
    gap: 16px;
    font-size: 0.9rem;
  }

  .donate-button {
    min-width: 132px;
    padding: 0 16px;
  }

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

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

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

@media (max-width: 860px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 12px;
    min-height: 74px;
    padding: 8px 0;
  }

  .brand {
    width: 148px;
  }

  .brand img {
    height: 62px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .main-nav {
    display: none;
    order: 4;
    flex-basis: 100%;
    border-top: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: block;
  }

  .donate-button {
    order: 2;
    min-width: auto;
    min-height: 40px;
    margin-left: auto;
    padding: 0 13px;
    font-size: 0.82rem;
  }

  .nav-inner {
    display: grid;
    gap: 0;
    justify-content: stretch;
    padding: 8px 0 4px;
  }

  .nav-link {
    min-height: auto;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }

  .nav-link::after {
    display: none;
  }

  .hero-grid,
  .content-grid,
  .recycle-shell,
  .foundation-grid,
  .work-grid,
  .feature-grid,
  .cards-grid,
  .media-grid,
  .photo-grid,
  .program-grid,
  .split-panel,
  .callout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 4.1rem);
    line-height: 0.94;
  }

  .hero-grid {
    min-height: auto;
    padding-bottom: 86px;
  }

  .hero-copy {
    width: min(92vw, 430px);
  }

  #whoWeAre .foundation-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #whoWeAre .foundation-intro h2 {
    margin-bottom: 24px;
    font-size: clamp(2.7rem, 13vw, 3.6rem);
    line-height: 0.95;
  }

  #whoWeAre .impact-panel {
    width: 100%;
    min-height: 292px;
    margin-top: 0;
  }

  #whoWeAre .impact-panel span {
    font-size: clamp(0.78rem, 3.4vw, 0.95rem);
  }

  .event-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .section-heading,
  .did-grid {
    display: grid;
    align-items: start;
  }

  .photo-band .section-heading {
    grid-template-columns: 1fr;
  }

  .photo-band .section-heading a {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-main {
    gap: 34px;
    padding: 44px 0 46px;
  }

  .footer-bottom-inner {
    display: grid;
    align-items: start;
    padding: 18px 58px 18px 0;
  }

  .newsletter-form div {
    grid-template-columns: 1fr;
  }

  .newsletter-form button {
    min-height: 40px;
  }

  .photo-card img {
    height: 190px;
  }

  .recycle-card {
    padding: 20px;
  }

  .bottle-dashboard-section {
    padding: 28px 0 34px;
  }

  .bottle-dashboard-section .recycle-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bottle-dashboard-section .recycle-intro h2 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
    line-height: 1.04;
  }

  .welcome-row {
    align-items: start;
  }

  .bottle-total {
    width: 68px;
    height: 68px;
    border-width: 6px;
    font-size: 1.55rem;
  }

  .certificate-preview-heading h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1;
  }

  .party-popper {
    right: 4%;
    bottom: 8%;
    transform: scale(0.72);
  }

  .milestone-badge {
    left: 5%;
    bottom: 7%;
    width: 118px;
    height: 118px;
  }

  .milestone-badge span {
    font-size: 3rem;
    margin-bottom: -18px;
  }

  .certificate-top {
    gap: 16px;
    min-height: 112px;
  }

  .certificate-top img {
    max-width: 72px;
    max-height: 76px;
  }

  .certificate-top .certificate-logo {
    max-width: 178px;
  }

  .certificate-copy {
    letter-spacing: 0.02em;
  }

  .certificate {
    width: 100%;
  }

  .certificate-name {
    left: 16%;
    right: 16%;
    top: 47.2%;
    font-size: clamp(0.8rem, 5.6vw, 1.55rem);
    font-size: clamp(0.8rem, 5.6cqw, 1.55rem);
  }

  .signature-text {
    min-width: 210px;
  }

}

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

  .hero-image img:first-child {
    opacity: 1;
  }
}
