:root {
  --cream: #faf8ef;
  --mist: #e8ebe2;
  --blue: #d6f6fb;
  --green: #2f6048;
  --green-dark: #1f4934;
  --coral: #e95648;
  --ink: #2c6649;
  --ink-deep: #1f5138;
  --line: rgba(47, 96, 72, 0.24);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 18px clamp(22px, 5vw, 72px);
  background: rgba(250, 248, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img,
.site-footer img {
  width: 128px;
  height: 96px;
  object-fit: contain;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.92rem;
  font-weight: 900;
}

.site-nav a {
  text-decoration: none;
}

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

.nav-button {
  padding: 12px 22px;
  border: 1px solid var(--green);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--green);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100vh - 132px);
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(31, 81, 56, 0.18) 0%, rgba(31, 81, 56, 0.05) 48%, rgba(31, 81, 56, 0.16) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(31, 81, 56, 0.02) 0%, rgba(31, 81, 56, 0.12) 100%);
  pointer-events: none;
}

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

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  filter: saturate(1.2) contrast(1.08) brightness(0.92);
  animation: heroFade 24s infinite;
}

.hero-bg img:nth-child(2) {
  animation-delay: 6s;
}

.hero-bg img:nth-child(3) {
  animation-delay: 12s;
}

.hero-bg img:nth-child(4) {
  animation-delay: 18s;
}

@keyframes heroFade {
  0%,
  22% {
    opacity: 1;
  }
  28%,
  100% {
    opacity: 0;
  }
}

.hero-media {
  display: none;
  min-height: 580px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(820px, calc(100% - clamp(36px, 8vw, 112px)));
  margin-left: clamp(28px, 6vw, 96px);
  padding: clamp(36px, 5vw, 72px);
  background: rgba(250, 248, 239, 0.78);
  border: 1px solid rgba(250, 248, 239, 0.55);
  border-radius: 0 86px 86px 0;
  backdrop-filter: blur(7px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
  color: var(--ink-deep);
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.2rem, 9vw, 8.8rem);
  line-height: 1;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6vw, 6.4rem);
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 900;
}

.tagline {
  color: var(--coral);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 900;
}

.mobile-drop {
  display: none;
}

.hero-copy > p:not(.eyebrow):not(.tagline) {
  max-width: 520px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 50px;
  padding: 14px 30px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 69, 51, 0.16);
}

.button.coral {
  background: var(--coral);
  color: var(--white);
}

.button.green {
  background: var(--green);
  color: var(--white);
}

.button.outline {
  border: 1px solid var(--ink-deep);
  background: rgba(250, 248, 239, 0.64);
  color: var(--ink-deep);
}

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

.section-light,
.section-mist,
.section-blue {
  padding: clamp(70px, 10vw, 128px) clamp(22px, 6vw, 78px);
}

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

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

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

.section-title,
.seasonal-intro {
  max-width: 980px;
  margin-bottom: 44px;
}

.problem > p {
  max-width: 980px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 3.4rem);
  line-height: 1.22;
  color: var(--ink-deep);
}

.what {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 86px);
}

.what p {
  font-size: 1.1rem;
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.steps-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps article {
  min-height: 255px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--cream);
}

.steps span,
.box-list span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--coral);
  font-weight: 900;
}

.steps p,
.box-list p,
.seasonal-intro p,
.founder-copy p,
.pickup-card p,
.contact p {
  font-weight: 700;
}

.marquee {
  overflow: hidden;
  background: var(--green);
  color: var(--cream);
  border-block: 1px solid var(--green-dark);
}

.marquee div {
  display: flex;
  width: max-content;
  gap: 40px;
  padding: 18px 0;
  animation: slide 24s linear infinite;
}

.marquee span {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.seasonal {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: start;
}

.seasonal .button {
  grid-column: 1;
}

.box-list {
  border-top: 1px solid var(--line);
}

.box-list article {
  display: grid;
  grid-template-columns: 70px minmax(180px, 0.6fr) 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.founder {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(36px, 7vw, 78px);
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.producer {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.75fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.producer img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  border-radius: 999px 999px 0 999px;
}

.producer-copy p {
  max-width: 760px;
  font-weight: 700;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(250, 248, 239, 0.48);
  font-weight: 900;
}

.founder-image {
  min-height: 640px;
  align-self: stretch;
  overflow: hidden;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  margin-left: calc(clamp(22px, 6vw, 78px) * -1);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-copy {
  padding-block: clamp(58px, 9vw, 106px);
}

.pickup-card {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  background: var(--white);
}

.pickup-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.date {
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding-block: clamp(42px, 7vw, 78px);
  border-top: 1px solid var(--line);
}

.contact p:not(.eyebrow) {
  max-width: 720px;
  font-weight: 700;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: var(--white);
}

.faq-list summary {
  padding: 20px 24px;
  color: var(--ink-deep);
  font-size: 1.12rem;
  font-weight: 900;
  cursor: pointer;
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 22px;
  font-weight: 700;
}

dl {
  display: grid;
  gap: 24px;
  margin: 36px 0 0;
}

dt {
  font-weight: 900;
}

dd {
  margin: 0;
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.contact-form label {
  font-weight: 900;
}

.member-form {
  padding: 0;
  border: 0;
  border-radius: 0;
}

.contact-form input[type="hidden"] {
  display: none;
}

.contact-form label,
.contact-form input,
.contact-form select,
.contact-form button,
.form-fieldset,
.form-note {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(233, 86, 72, 0.24);
  outline-offset: 2px;
}

input[type="checkbox"] {
  width: auto;
}

.form-fieldset {
  display: grid;
  gap: 10px;
  margin: 4px 0;
  padding: 16px;
  border: 1px solid var(--line);
}

.form-fieldset legend {
  padding: 0 8px;
  color: var(--ink-deep);
  font-weight: 900;
}

.form-fieldset p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
}

.form-fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.ranking-grid {
  grid-template-columns: minmax(160px, 1fr) minmax(160px, 1fr);
  align-items: center;
}

.ranking-grid legend {
  grid-column: 1 / -1;
}

.ranking-grid label {
  display: block;
}

.form-target {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.google-form-frame {
  width: 100%;
  height: min(68vh, 760px);
  border: 0;
  background: var(--cream);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(22px, 5vw, 72px);
  background: var(--green);
  color: var(--cream);
}

.site-footer div {
  display: flex;
  gap: 18px;
  font-weight: 900;
}

.producer-signup {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.producer-signup p:not(.eyebrow) {
  max-width: 720px;
  font-weight: 700;
}

.producer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 28px);
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 73, 52, 0.5);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: min(880px, 100%);
  max-height: min(88vh, 940px);
  overflow: auto;
  padding: clamp(26px, 5vw, 58px);
  background: rgba(250, 248, 239, 0.94);
  border: 1px solid rgba(250, 248, 239, 0.7);
  border-radius: 0 70px 70px 0;
  box-shadow: 0 28px 80px rgba(31, 73, 52, 0.24);
}

.modal-card h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 42px;
  height: 42px;
  margin: -8px -8px 8px 16px;
  border: 1px solid var(--line);
  background: rgba(250, 248, 239, 0.88);
  color: var(--green);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.page-hero {
  padding: clamp(74px, 11vw, 146px) clamp(22px, 6vw, 78px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1,
.drop-hero h1 {
  max-width: 980px;
  font-size: clamp(4rem, 8vw, 8rem);
}

.page-hero p:not(.eyebrow),
.drop-hero p:not(.eyebrow):not(.tagline) {
  max-width: 720px;
  font-size: 1.15rem;
  font-weight: 700;
}

.page-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
}

.page-hero-split img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 999px 999px 0 999px;
}

.product-grid,
.farm-grid {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.product-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
}

.product-card h2,
.farm-grid h2,
.drop-details h2,
.drop-gallery h2 {
  font-size: clamp(2.2rem, 4vw, 4.6rem);
}

.product-card ul,
.drop-items ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 26px;
  padding-left: 20px;
  font-weight: 800;
}

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

.farm-grid article {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
}

.farm-grid article > img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
}

.farm-grid article > :not(img) {
  margin-inline: 28px;
}

.farm-grid article > .eyebrow {
  margin-top: 28px;
}

.farm-grid article > p:not(.eyebrow) {
  font-weight: 700;
}

.farm-grid dl {
  gap: 14px;
  margin: auto 28px 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.drop-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  padding: clamp(70px, 10vw, 130px) clamp(22px, 6vw, 78px);
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.drop-hero img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
}

.drop-details {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 86px);
}

.drop-items,
.drop-boxes {
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
}

.drop-boxes {
  display: grid;
  gap: 18px;
}

.drop-boxes article {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.drop-boxes article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.drop-boxes h3,
.drop-boxes p {
  margin: 0;
}

.drop-boxes p {
  grid-column: 1;
  font-weight: 700;
}

.drop-gallery > div:last-child {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.drop-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.farm-teaser {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.72fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: clamp(50px, 7vw, 82px);
  padding-bottom: clamp(22px, 3vw, 36px);
}

.hero + .founder {
  padding-top: clamp(30px, 4vw, 54px);
}

.farm-teaser + .how {
  padding-top: clamp(24px, 3vw, 42px);
  padding-bottom: clamp(24px, 3vw, 42px);
}

.how .section-title {
  margin-bottom: clamp(26px, 4vw, 38px);
}

.how + .pickup {
  padding-top: clamp(24px, 3vw, 42px);
}

.farm-teaser p:not(.eyebrow) {
  max-width: 720px;
  font-weight: 700;
}

.farm-teaser img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 999px 999px 999px 0;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: min(620px, calc(100% - 72px));
    margin-left: 36px;
    padding: clamp(34px, 5vw, 54px);
    border-radius: 0 70px 70px 0;
  }

  h1 {
    font-size: clamp(3.9rem, 7.4vw, 5.4rem);
  }

  .tagline {
    font-size: clamp(1.45rem, 3.6vw, 2rem);
  }

  .hero-copy > p:not(.eyebrow):not(.tagline) {
    max-width: 430px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    display: none;
    min-width: 250px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--cream);
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(37, 69, 51, 0.14);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-button {
    text-align: center;
  }

  .hero,
  .what,
  .seasonal,
  .farm-teaser,
  .producer,
  .founder,
  .pickup-card,
  .contact,
  .producer-signup,
  .page-hero-split,
  .product-card,
  .drop-hero,
  .drop-details {
    grid-template-columns: 1fr;
  }

  .farm-grid,
  .drop-gallery > div:last-child {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100svh - 119px);
    align-items: start;
    padding: clamp(42px, 8svh, 78px) 0 42px;
  }

  .hero-copy {
    order: -1;
    justify-content: flex-start;
    border-bottom: 0;
    width: min(680px, calc(100% - 36px));
    margin: 0 18px;
    padding: clamp(28px, 6vw, 46px);
    border-radius: 0 54px 54px 0;
  }

  .hero-media {
    display: none;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(31, 81, 56, 0.28) 0%, rgba(31, 81, 56, 0.08) 52%, rgba(31, 81, 56, 0.32) 100%);
  }

  .hero-bg img {
    object-position: center top;
  }

  h1 {
    font-size: clamp(3.2rem, 11vw, 4.5rem);
  }

  .tagline {
    font-size: clamp(1.3rem, 5vw, 1.85rem);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps-four {
    grid-template-columns: 1fr 1fr;
  }

  .steps article {
    min-height: auto;
  }

  .seasonal .button {
    grid-column: auto;
  }

  .box-list article {
    grid-template-columns: 54px 1fr;
  }

  .box-list p {
    grid-column: 2;
  }

  .founder-image {
    min-height: 420px;
    margin: 0;
    border-radius: 0 0 999px 999px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-card img {
    min-height: 320px;
  }

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

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .brand img,
  .site-footer img {
    width: 104px;
    height: 82px;
  }

  h1 {
    font-size: clamp(2.95rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2.5rem, 14vw, 3.8rem);
  }

  .section-light,
  .section-mist,
  .section-blue {
    padding-inline: 18px;
  }

  .hero-copy {
    width: min(430px, calc(100% - 32px));
    margin: 0 16px;
    padding: 24px 20px 26px;
    border-radius: 0 38px 38px 0;
    background: rgba(250, 248, 239, 0.8);
  }

  .tagline {
    font-size: clamp(1.22rem, 7vw, 1.55rem);
    line-height: 1.18;
  }

  .mobile-drop {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 14px;
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .hero-copy > p:not(.eyebrow):not(.tagline):not(.mobile-drop) {
    font-size: 0.95rem;
    line-height: 1.43;
  }

  .button {
    width: 100%;
  }

  .hero-copy .button {
    width: fit-content;
    min-width: 170px;
    min-height: 46px;
    padding: 12px 22px;
  }

  .hero-actions {
    width: 100%;
  }

  .steps-four {
    grid-template-columns: 1fr;
  }

  .problem > p {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .producer img {
    aspect-ratio: 1;
    border-radius: 999px 999px 0 999px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .contact-form label,
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .contact-form button,
  .form-fieldset,
  .form-note {
    grid-column: 1;
  }

  .ranking-grid {
    grid-template-columns: 1fr;
  }

  .modal-card {
    max-height: 92vh;
    border-radius: 0 38px 38px 0;
  }

  .page-hero h1,
  .drop-hero h1 {
    font-size: clamp(3.2rem, 16vw, 4.4rem);
  }

  .drop-boxes article {
    grid-template-columns: 1fr;
  }
}
