:root {
  --green: #08712d;
  --green-2: #58a833;
  --blue: #075ea6;
  --red: #d83a2e;
  --ink: #1d1b16;
  --paper: #fbf7e7;
  --paper-deep: #efe5c6;
  --yellow: #fff0aa;
  --line: rgba(31, 29, 22, 0.18);
  --shadow: 0 22px 55px rgba(80, 68, 34, 0.16);
  --display: "Trebuchet MS", "Arial Rounded MT Bold", "Avenir Next Rounded", Arial, sans-serif;
  --body: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(88, 168, 51, 0.12), transparent 26rem),
    radial-gradient(circle at 88% 0%, rgba(7, 94, 166, 0.09), transparent 21rem),
    linear-gradient(180deg, #fffaf0 0%, var(--paper) 42%, #fff9ec 100%);
  font-family: var(--body);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.44;
  background-image:
    linear-gradient(rgba(8, 113, 45, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 113, 45, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 5;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 4;
  border-bottom: 1px solid rgba(8, 113, 45, 0.16);
  background: rgba(251, 247, 231, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 50px;
  height: 46px;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.brand-text span {
  color: var(--blue);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.secondary-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 8px;
  color: #264227;
  font-size: 0.98rem;
  font-weight: 900;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.secondary-link:hover {
  background: rgba(88, 168, 51, 0.13);
}

.nav-links a:active,
.secondary-link:active,
.primary-button:active,
.nav-action:active,
.phone-link:active {
  transform: translateY(1px) scale(0.99);
}

.nav-action,
.phone-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  border: 2px solid rgba(8, 113, 45, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--green);
  box-shadow: 0 8px 24px rgba(8, 113, 45, 0.1);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-action:hover,
.phone-link:hover {
  box-shadow: 0 12px 28px rgba(8, 113, 45, 0.16);
}

.nav-action svg,
.phone-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  width: min(1220px, calc(100% - 32px));
  min-height: calc(100svh - 136px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 66px) 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.hero-copy {
  position: relative;
  padding: 4px 0;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 9px 14px;
  border: 2px solid rgba(8, 113, 45, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--green);
  font-weight: 900;
  line-height: 1.1;
  box-shadow: 0 10px 26px rgba(80, 68, 34, 0.09);
}

.eyebrow svg {
  width: 22px;
  height: 22px;
  fill: var(--green-2);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  position: relative;
  max-width: 740px;
  margin-bottom: 22px;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(3.15rem, 6.3vw, 5.55rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
}

h1 span,
h1 strong {
  display: block;
}

h1 strong {
  color: var(--blue);
  font-style: normal;
}

.title-heart {
  display: inline-block;
  width: clamp(38px, 4.5vw, 62px);
  margin-left: 0.12em;
  fill: var(--red);
  vertical-align: -0.1em;
  transform: rotate(-9deg);
  filter: drop-shadow(0 8px 0 rgba(216, 58, 46, 0.1));
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 28px;
  color: #151813;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  font-weight: 900;
  line-height: 1.28;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.primary-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 30px rgba(8, 113, 45, 0.22);
  cursor: pointer;
  font: 900 1.02rem/1 var(--body);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.primary-button:hover {
  background: #0a642a;
  box-shadow: 0 18px 36px rgba(8, 113, 45, 0.27);
}

.primary-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 540px;
  display: grid;
  place-items: end center;
}

.hero-visual::before {
  content: none;
}

.hero-visual img {
  position: relative;
  width: min(100%, 720px);
  aspect-ratio: 3 / 2;
  border: 2px solid rgba(8, 113, 45, 0.08);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 26px 44px rgba(61, 52, 31, 0.2);
}

.steps-section,
.impact-section,
.pickup-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.steps-section {
  padding: 30px 0 56px;
}

.section-kicker {
  margin-bottom: 24px;
}

.section-kicker h2 {
  position: relative;
  width: fit-content;
  margin: 0;
  padding: 11px 28px 14px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  transform: rotate(-1deg);
}

.section-kicker h2::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border-radius: 8px;
  background: var(--green);
  clip-path: polygon(0 13%, 8% 0, 19% 8%, 34% 1%, 49% 11%, 63% 2%, 82% 9%, 100% 0, 96% 88%, 82% 100%, 65% 92%, 48% 100%, 34% 91%, 17% 98%, 2% 86%);
}

.steps-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-item {
  min-height: 116px;
  display: grid;
  grid-template-columns: 58px 74px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 2px dashed rgba(29, 27, 22, 0.32);
}

.step-item:first-child {
  border-top: 2px dashed rgba(29, 27, 22, 0.32);
}

.step-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.step-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(88, 168, 51, 0.16);
  color: var(--green);
}

.step-icon svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-item p {
  margin: 0;
  font-size: clamp(1.32rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
}

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

.benefit-list {
  margin: 2px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: #11140f;
  font-size: clamp(1.18rem, 2vw, 1.6rem);
  font-weight: 900;
  line-height: 1.12;
}

.benefit-list span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-2);
  color: #fff;
}

.benefit-list svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.impact-section {
  padding: 18px 0 58px;
}

.impact-copy {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: clamp(20px, 3vw, 34px);
  border: 2px solid rgba(8, 113, 45, 0.1);
  border-radius: 8px;
  background: rgba(238, 248, 222, 0.76);
  box-shadow: 0 16px 44px rgba(80, 68, 34, 0.1);
}

.recycle-badge {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.95), rgba(238, 248, 222, 0.9) 42%, rgba(88, 168, 51, 0.18));
  color: var(--green);
  box-shadow:
    inset 0 0 0 8px rgba(88, 168, 51, 0.14),
    0 14px 32px rgba(8, 113, 45, 0.12);
}

.recycle-badge svg {
  width: 86px;
  height: 86px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.recycle-badge .badge-ring {
  fill: var(--green);
  stroke: none;
}

.recycle-badge .bag-shape {
  fill: rgba(211, 249, 239, 0.95);
  stroke: #fff;
  stroke-width: 4.5;
}

.recycle-badge .bag-tie,
.recycle-badge .recycle-arrow {
  stroke: #fff;
  stroke-width: 4.5;
}

.recycle-badge .badge-heart {
  fill: var(--red);
  stroke: #fff;
  stroke-width: 3.2;
}

.impact-copy h2 {
  max-width: 890px;
  margin: 0;
  color: #132116;
  font-size: clamp(1.35rem, 2.4vw, 2.22rem);
  font-weight: 900;
  line-height: 1.22;
}

.quote-strip {
  position: relative;
  margin-top: 22px;
  padding: 18px clamp(18px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 66px;
  gap: 18px;
  align-items: center;
  color: var(--green);
  background:
    linear-gradient(90deg, rgba(255, 240, 170, 0), var(--yellow) 12%, var(--yellow) 86%, rgba(255, 240, 170, 0)),
    repeating-linear-gradient(-4deg, transparent 0 9px, rgba(216, 58, 46, 0.06) 10px 11px);
  border-radius: 8px;
}

.quote-strip p {
  margin: 0;
  font-family: "Comic Sans MS", "Trebuchet MS", cursive;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  font-weight: 900;
  line-height: 1.12;
}

.quote-strip span {
  display: block;
  color: #241c15;
}

.quote-strip svg {
  width: 64px;
  fill: var(--red);
  transform: rotate(-8deg);
}

.pickup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.72fr);
  gap: 34px;
  align-items: center;
  padding: 28px 0 64px;
}

.pin-line {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  margin-bottom: 18px;
  color: #171611;
  font-size: clamp(1.28rem, 2.2vw, 1.72rem);
  font-weight: 900;
  line-height: 1.14;
}

.pin-line span {
  width: 40px;
  height: 40px;
  color: var(--red);
}

.pin-line svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.pin-line circle {
  fill: var(--paper);
}

.pickup-copy h2 {
  margin-bottom: 11px;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
}

.pickup-copy > p:not(.pin-line) {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 800;
  line-height: 1.35;
}

.phone-link {
  width: fit-content;
  min-height: 58px;
  padding: 0 18px;
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
}

.pickup-form {
  padding: 24px;
  border: 2px solid rgba(8, 113, 45, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

label {
  color: #132116;
  font-weight: 900;
}

input {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  border: 2px solid rgba(8, 113, 45, 0.2);
  border-radius: 8px;
  background: #fffef8;
  color: var(--ink);
  font: 800 1rem/1 var(--body);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(88, 168, 51, 0.16);
}

input::placeholder {
  color: rgba(29, 27, 22, 0.48);
}

.field-note,
.field-error {
  min-height: 18px;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
}

.field-note {
  color: rgba(29, 27, 22, 0.62);
}

.field-error {
  color: var(--red);
}

.form-button {
  width: 100%;
}

.site-footer {
  position: relative;
  padding: 34px 16px 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--green);
  background: #fff9ec;
  border-top: 2px dashed rgba(29, 27, 22, 0.18);
}

.site-footer::before {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -42px;
  height: 78px;
  content: "";
  background: var(--green-2);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.footer-brand,
.site-footer p {
  position: relative;
}

.site-footer .brand-mark {
  width: 54px;
  height: 50px;
}

.site-footer p {
  margin: 0;
  color: var(--green);
  font-size: clamp(1.15rem, 2.2vw, 1.8rem);
  font-weight: 900;
  line-height: 1.2;
}

.site-footer p::first-line {
  color: var(--blue);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
  }

  .hero-visual {
    min-height: 0;
    place-items: center;
  }

  .hero-visual::before {
    width: 96%;
    height: 72%;
    right: 2%;
  }

  .hero-visual img {
    width: min(100%, 680px);
  }

  .steps-wrap,
  .pickup-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .nav-shell,
  .hero,
  .steps-section,
  .impact-section,
  .pickup-section {
    width: min(100% - 24px, 1120px);
  }

  .nav-shell {
    min-height: 68px;
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 35px;
  }

  .brand-text {
    font-size: 1.75rem;
  }

  .nav-action {
    min-height: 42px;
    padding: 0 11px;
    font-size: 0.9rem;
  }

  .nav-action svg {
    width: 20px;
    height: 20px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.72rem, 12vw, 4.1rem);
  }

  .title-heart {
    width: 38px;
    margin-left: 0.08em;
  }

  .hero-lede {
    margin-bottom: 18px;
    font-size: 1.1rem;
  }

  .primary-button {
    width: 100%;
  }

  .secondary-link {
    width: auto;
    min-height: 34px;
    padding-left: 0;
  }

  .hero-visual img {
    width: min(100%, 342px);
    max-height: none;
  }

  .step-item {
    grid-template-columns: 48px 56px minmax(0, 1fr);
    gap: 12px;
    min-height: 100px;
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 1.65rem;
  }

  .step-icon {
    width: 54px;
    height: 54px;
  }

  .step-icon svg {
    width: 40px;
    height: 40px;
  }

  .step-item p {
    font-size: 1.16rem;
  }

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

  .impact-copy {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .recycle-badge {
    width: 92px;
    height: 92px;
  }

  .recycle-badge svg {
    width: 68px;
    height: 68px;
  }

  .quote-strip {
    grid-template-columns: 1fr;
  }

  .quote-strip svg {
    justify-self: end;
  }

  .pickup-form {
    padding: 18px;
  }

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

@media (max-width: 430px) {
  .nav-action {
    width: 44px;
    padding: 0;
    gap: 0;
    overflow: hidden;
    font-size: 0;
  }

  .nav-action span {
    color: var(--green);
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 0.94rem;
  }

  .hero {
    gap: 8px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hero-actions {
    gap: 10px;
  }

  .step-item {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .step-icon {
    grid-column: 2;
    grid-row: 2;
  }

  .step-item p {
    grid-column: 2;
    grid-row: 1;
  }

  .pin-line {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .pin-line span {
    width: 34px;
    height: 34px;
  }
}
