/*
 * Final mobile application layer.
 * Loaded after the desktop stylesheet so the existing desktop composition stays intact.
 */
@media (max-width: 780px) {
  :root {
    --app-page: min(640px, calc(100% - 32px));
    --app-space: 48px;
    --app-radius: 22px;
    --app-ease: cubic-bezier(0.16, 1, 0.3, 1);
  }
  body {
    min-width: 0;
  }
  .site-header__inner::before,
  .site-header--scrolled .site-header__inner::before {
    content: "";
    position: absolute;
    inset: -7px -5px -7px;
    z-index: 2;
    display: block;
    background: url("./assets/header-vine-border-transparent.png") center / 100% 100%
      no-repeat;
    opacity: 0.76;
    filter: drop-shadow(0 2px 3px rgba(23, 63, 10, 0.08));
    pointer-events: none;
  }
  .site-header__inner,
  .site-header--scrolled .site-header__inner {
    background: #f3f8ea;
    backdrop-filter: none;
  }

  .site-botanical-continuum {
    position: relative;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    background-color: #fbfcf8;
    background-image:
      linear-gradient(
        90deg,
        rgba(251, 252, 248, 0.96),
        rgba(251, 252, 248, 0.72) 16%,
        rgba(251, 252, 248, 0.72) 84%,
        rgba(251, 252, 248, 0.96)
      ),
      url("./assets/growth-process-continuum-bg-light-768.webp");
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 100% 1075px;
  }
  .site-botanical-continuum
    > :is(
      .growth-process-flow,
      .grow-anywhere,
      .features-designed,
      .growable,
      .grow-series-showcase,
      .about,
      .testimonials,
      .contact
    ) {
    position: relative;
    z-index: 1;
    min-height: 0;
    margin: 0;
    background-color: transparent;
    background-image: none;
  }
  .site-botanical-continuum > .growable::before,
  .site-botanical-continuum > .grow-series-showcase::before,
  .site-botanical-continuum > .contact::after {
    content: none;
  }

  :is(
    .how-it-works h2,
    .process-video h2,
    .grow-anywhere h2,
    .features-designed h2,
    .growable__intro h2,
    .grow-series-showcase h2,
    .about__copy h2,
    .section-title h2
  ) {
    color: var(--heading-ink);
    font-family: var(--heading-font);
    font-weight: 400;
  }
  :is(
    .how-it-works h2,
    .process-video h2,
    .grow-anywhere h2,
    .features-designed h2,
    .growable__intro h2,
    .grow-series-showcase h2,
    .about__copy h2,
    .section-title h2
  )
    .section-heading__accent {
    color: var(--lime-deep);
    font-style: normal;
    font-weight: 800;
  }
  @supports ((-webkit-background-clip: text) or (background-clip: text)) {
    :is(
      .how-it-works h2,
      .process-video h2,
      .grow-anywhere h2,
      .features-designed h2,
      .growable__intro h2,
      .grow-series-showcase h2,
      .about__copy h2,
      .section-title h2
    )
      .section-heading__accent {
      background: var(--heading-accent-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
  }

  .growth-process-flow,
  .growth-process-flow > .how-it-works,
  .growth-process-flow > .process-video,
  .growth-process-flow > .how-it-works + .process-video {
    margin: 0;
    overflow: visible;
    background: transparent;
  }

  /* How it works: compact vertical app timeline. */
  .how-it-works {
    --how-grid: var(--app-page);
    min-height: 0;
    padding: var(--app-space) 0 40px;
    overflow: hidden;
  }
  .how-it-works__botanical,
  .how-it-works__connector {
    display: none;
  }
  .how-it-works__intro {
    width: var(--app-page);
  }
  .how-it-works__mark {
    width: 36px;
    height: 36px;
  }
  .how-it-works__eyebrow {
    margin-top: 10px;
    font-size: 0.8125rem;
    line-height: 1.35;
    letter-spacing: 0.14em;
  }
  .how-it-works h2 {
    margin-top: 10px;
    font-size: clamp(2.35rem, 10vw, 3rem);
    line-height: 1.02;
  }
  .how-it-works__summary {
    max-width: 34ch;
    margin: 14px auto 0;
    font-size: 1rem;
    line-height: 1.5;
  }
  .how-it-works__journey {
    width: var(--app-page);
    min-height: 0;
    margin: 30px auto 0;
  }
  .how-it-works__steps {
    margin: 0;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .how-step,
  .how-step--1,
  .how-step--2,
  .how-step--3,
  .how-step--4,
  .how-it-works__journey.is-visible .how-step {
    min-height: 0;
    height: auto;
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }
  .how-step__card {
    min-height: 150px;
    height: auto;
    padding: 14px;
    display: grid;
    grid-template-columns: minmax(104px, 36%) minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(16, 58, 34, 0.075);
  }
  .how-step__number,
  .how-it-works__journey.is-visible .how-step__number {
    top: 12px;
    left: 12px;
    width: 44px;
    height: 44px;
    border: 0;
    box-shadow: 0 5px 14px rgba(9, 63, 34, 0.12);
    opacity: 1;
    transform: none;
  }
  .how-step__number > span {
    width: 36px;
    height: 36px;
    border-width: 1px;
    font-size: 1rem;
  }
  .how-step__media {
    grid-column: 1;
    width: 100%;
    height: 122px;
  }
  .how-step__media > img {
    width: calc(100% + 24px);
    height: 100%;
    transform: none;
  }
  .how-step__leaf-art {
    right: -18px;
    bottom: -18px;
    width: 84px;
    height: 84px;
    opacity: 0.12;
  }
  .how-step__label {
    grid-column: 2;
    margin: 0;
    align-items: flex-start;
    text-align: left;
  }
  .how-step__icon {
    width: 46px;
    height: 46px;
    padding: 12px;
  }
  .how-step__label h3 {
    margin-top: 10px;
    font-size: 1.0625rem;
    line-height: 1.25;
  }

  /* Video remains visually joined to the process timeline. */
  .process-video {
    min-height: 0;
    padding: 40px 0 var(--app-space);
  }
  .process-video__intro {
    width: var(--app-page);
  }
  .process-video__eyebrow {
    min-height: 26px;
    font-size: 0.9375rem;
  }
  .process-video__seedling {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }
  .process-video__dots {
    margin-top: 5px;
  }
  .process-video h2 {
    margin-top: 14px;
    font-size: clamp(2.25rem, 9.5vw, 2.85rem);
    line-height: 1.04;
    white-space: normal;
  }
  .process-video__summary {
    max-width: 36ch;
    margin: 12px auto 0;
    font-size: 1rem;
    line-height: 1.55;
  }
  .process-video__media {
    width: var(--app-page);
    aspect-ratio: 16 / 9;
    margin-top: 26px;
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(13, 48, 20, 0.13);
  }
  .process-video__play {
    width: 64px;
    height: 64px;
  }
  .process-video__play > img,
  .process-video__play > svg {
    width: 24px;
    height: 24px;
  }

  /* Grow Anywhere: every card is full-width and vertically stacked. */
  .grow-anywhere {
    min-height: 0;
    padding: var(--app-space) 0;
    overflow: hidden;
  }
  .grow-anywhere__intro {
    width: var(--app-page);
  }
  .grow-anywhere__mark {
    width: 150px;
    height: 32px;
    grid-template-columns: 1fr 32px 1fr;
    gap: 10px;
  }
  .grow-anywhere h2 {
    margin-top: 8px;
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 1.02;
  }
  .grow-anywhere__intro > p {
    max-width: 37ch;
    margin: 14px auto 0;
    font-size: 1rem;
    line-height: 1.55;
  }
  .grow-anywhere__grid {
    width: var(--app-page);
    margin: 28px auto 0;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .grow-anywhere-card {
    height: auto;
    min-height: 0;
    border-radius: var(--app-radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 30px rgba(24, 67, 12, 0.08);
  }
  .grow-anywhere-card::after {
    width: 58px;
    height: 58px;
    border-width: 0 3px 3px 0;
    border-radius: 0 0 var(--app-radius) 0;
  }
  .grow-anywhere-card__media {
    height: auto;
    aspect-ratio: 16 / 10;
    margin: 10px 10px 0;
    border-radius: 17px;
  }
  .grow-anywhere-card__leaf {
    top: -7px;
    right: 18px;
    width: 92px;
    opacity: 0.7;
  }
  .grow-anywhere-card__body {
    padding: 18px 18px 20px;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }
  .grow-anywhere-card__icon {
    width: 52px;
    height: 52px;
  }
  .grow-anywhere-card__icon > img {
    width: 28px;
    height: 28px;
  }
  .grow-anywhere-card h3 {
    margin-top: 2px;
    font-size: 1.25rem;
    line-height: 1.2;
  }
  .grow-anywhere-card__copy > p {
    min-height: 0;
    margin-top: 7px;
    font-size: 0.9375rem;
    line-height: 1.5;
  }
  .grow-anywhere-card__cta {
    width: 100%;
    height: 48px;
    min-height: 48px;
    margin-top: 14px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 0.9375rem;
  }
  .grow-anywhere-card__cta > img {
    width: 20px;
    height: 20px;
  }

  /* Product features: product first, then six readable feature rows. */
  .features-designed {
    min-height: 0;
    padding: var(--app-space) 0;
    overflow: hidden;
  }
  .features-designed__intro {
    position: relative;
    inset: auto;
    width: var(--app-page);
    margin: 0 auto;
  }
  .features-designed__seedling {
    width: 31px;
    height: 26px;
  }
  .features-designed__eyebrow {
    margin-top: 8px;
    font-size: 0.8125rem;
    line-height: 1.3;
    letter-spacing: 0.12em;
  }
  .features-designed h2 {
    margin-top: 10px;
    font-size: clamp(2.2rem, 9.6vw, 2.9rem);
    line-height: 1.03;
  }
  .features-designed h2 > span,
  .features-designed h2 > span:nth-child(2) {
    display: block;
    font-size: inherit;
    line-height: inherit;
  }
  .features-designed h2 em {
    font-style: normal;
  }
  .features-designed__summary {
    max-width: 38ch;
    margin: 14px auto 0;
    font-size: 1rem;
    line-height: 1.55;
  }
  .features-designed__summary > span {
    display: inline;
  }
  .features-designed__stage {
    position: relative;
    inset: auto;
    width: var(--app-page);
    height: auto;
    margin: 26px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .features-designed__product {
    order: -1;
    width: 100%;
    min-height: 0;
    margin: 0 0 6px;
    padding: 16px 12px 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(118, 170, 37, 0.16);
    border-radius: var(--app-radius);
    background: linear-gradient(
      180deg,
      rgba(247, 251, 242, 0.96),
      rgba(235, 245, 224, 0.82)
    );
  }
  .features-designed__product > img {
    position: relative;
    inset: auto;
    width: min(330px, 84vw);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transform: none;
  }
  .features-designed__column,
  .features-designed__column--left,
  .features-designed__column--right {
    position: relative;
    z-index: 3;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    grid-column: auto;
    gap: 12px;
  }
  .features-designed-card {
    min-height: 112px;
    height: auto;
    padding: 14px;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 22px rgba(25, 57, 21, 0.065);
  }
  .features-designed-card__icon {
    width: 58px;
    height: 58px;
  }
  .features-designed-card__icon > img {
    width: 34px;
    height: 34px;
  }
  .features-designed-card h3 {
    font-size: 1.0625rem;
    line-height: 1.25;
  }
  .features-designed-card p {
    margin-top: 6px;
    font-size: 0.9375rem;
    line-height: 1.5;
  }
  .features-designed__benefits {
    position: relative;
    inset: auto;
    width: var(--app-page);
    min-height: 0;
    margin: 18px auto 0;
    padding: 8px 16px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(118, 170, 37, 0.16);
    border-radius: 18px;
    background: rgba(245, 250, 239, 0.94);
  }
  .features-designed__benefits > li,
  .features-designed__benefits > li:nth-child(2),
  .features-designed__benefits > li:nth-child(3) {
    width: 100%;
    min-height: 60px;
    padding: 8px 0;
    gap: 12px;
    border: 0;
    border-top: 1px solid rgba(118, 170, 37, 0.12);
  }
  .features-designed__benefits > li:first-child {
    border-top: 0;
  }
  .features-designed__benefit-icon {
    width: 44px;
    height: 44px;
  }
  .features-designed__benefit-icon > img {
    width: 24px;
    height: 24px;
  }
  .features-designed__benefit-copy {
    font-size: 0.9375rem;
    line-height: 1.4;
    white-space: normal;
  }
  .features-designed__benefit-copy > span {
    display: inline;
  }

  /* Growable categories: lifestyle image plus four vertical rows. */
  .growable {
    min-height: 0;
    padding: var(--app-space) 0;
    overflow: hidden;
  }
  .growable::before {
    content: none;
  }
  .growable__intro {
    position: relative;
    inset: auto;
    width: var(--app-page);
    margin: 0 auto;
  }
  .growable__intro h2 {
    font-size: clamp(2.2rem, 9.6vw, 2.9rem);
    line-height: 1.04;
  }
  .growable__ornament {
    width: 130px;
    height: 20px;
    margin-top: 10px;
    grid-template-columns: 1fr 20px 1fr;
    gap: 9px;
  }
  .growable__intro > p {
    max-width: 38ch;
    margin: 14px auto 0;
    font-size: 1rem;
    line-height: 1.55;
  }
  .growable__intro > p > span {
    display: inline;
  }
  .growable__stage {
    position: relative;
    inset: auto;
    width: var(--app-page);
    height: auto;
    margin: 28px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .growable__lifestyle {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    margin: 0;
  }
  .growable__photo-tab {
    top: 22px;
    bottom: 22px;
    left: -8px;
    width: 34px;
    border-radius: 18px 0 0 18px;
  }
  .growable__photo {
    border-radius: var(--app-radius);
  }
  .growable-badge {
    top: 14px;
    left: 14px;
    width: 92px;
    height: 92px;
  }
  .growable-badge > img {
    width: 34px;
    height: 34px;
    margin: 3px 0;
  }
  .growable-badge__top,
  .growable-badge__bottom {
    font-size: 0.5625rem;
    letter-spacing: 0.14em;
  }
  .growable__grid {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .growable-card {
    width: 100%;
    height: 176px;
    min-height: 176px;
    border-radius: 20px;
    background: rgba(246, 250, 241, 0.96);
  }
  .growable-card__copy {
    position: relative;
    inset: auto;
    z-index: 4;
    max-width: 58%;
    padding: 20px 0 0 20px;
  }
  .growable-card h3 {
    font-size: 1.125rem;
  }
  .growable-card__mini-mark {
    width: 40px;
    height: 12px;
    margin-top: 6px;
    grid-template-columns: 23px 12px;
    gap: 5px;
  }
  .growable-card p {
    margin-top: 12px;
    font-size: 0.875rem;
    line-height: 1.45;
  }
  .growable-card p > span {
    display: inline;
  }
  .growable-card__arrow {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }
  .growable-card__arrow > img {
    width: 18px;
    height: 18px;
  }
  .growable-card__line-art {
    right: 22px;
    bottom: 6px;
    width: 116px;
    height: 116px;
    opacity: 0.08;
  }
  .growable-card__produce,
  .growable-card__produce--basil,
  .growable-card__produce--tomatoes,
  .growable-card__produce--vegetables,
  .growable-card__produce--flowers {
    top: auto;
    right: -6px;
    bottom: -7px;
    left: auto;
    width: min(49%, 210px);
    height: 148px;
    object-fit: contain;
    transform: none;
  }
  .growable__ground-line {
    display: none;
  }

  /* Grow Series: all products are visible as full-width cards, no swipe rail. */
  .grow-series-showcase {
    min-height: 0;
    padding: var(--app-space) 0;
    overflow: hidden;
  }
  .grow-series-showcase::before {
    content: none;
  }
  .grow-series-showcase__intro {
    position: relative;
    inset: auto;
    width: var(--app-page);
    height: auto;
    margin: 0 auto;
  }
  .grow-series-showcase__title-wrap {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
  }
  .grow-series-showcase__vertical-label {
    position: relative;
    inset: auto;
    min-height: 28px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #568126;
    background: rgba(149, 200, 63, 0.12);
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    writing-mode: horizontal-tb;
    transform: none;
  }
  .grow-series-showcase__title-leaf {
    position: relative;
    inset: auto;
    width: 32px;
    height: 25px;
    margin: 8px auto 0;
  }
  .grow-series-showcase h2 {
    position: relative;
    inset: auto;
    margin-top: 6px;
    font-size: clamp(2.2rem, 9.6vw, 2.9rem);
    line-height: 1.04;
    white-space: normal;
  }
  .grow-series-showcase__intro > p {
    position: relative;
    inset: auto;
    max-width: 38ch;
    margin: 14px auto 0;
    font-size: 1rem;
    line-height: 1.55;
  }
  .grow-series-showcase__intro > p > span {
    display: inline;
  }
  .grow-series-showcase__panel {
    position: relative;
    inset: auto;
    width: var(--app-page);
    height: auto;
    margin: 28px auto 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .grow-series-card {
    width: 100%;
    height: auto;
  }
  .grow-series-card > article {
    min-height: 0;
    height: auto;
    padding: 12px 16px 18px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(118, 170, 37, 0.16);
    border-radius: var(--app-radius);
    background: rgba(250, 252, 247, 0.97);
    box-shadow: 0 10px 28px rgba(34, 67, 17, 0.07);
  }
  .grow-series-card__media {
    width: 100%;
    height: 230px;
    flex: 0 0 230px;
  }
  .grow-series-card__image,
  .grow-series-card.is-active .grow-series-card__image {
    left: 50%;
    max-width: none;
    transform: translateX(-50%);
  }
  .grow-series-card__image--mini {
    bottom: 6px;
    left: 50%;
    width: min(260px, 78vw);
  }
  .grow-series-card__image--me {
    bottom: 28px;
    width: min(270px, 80vw);
  }
  .grow-series-card__image--big {
    bottom: -8px;
    left: 50%;
    width: auto;
    height: 238px;
  }
  .grow-series-card__body,
  .grow-series-card:nth-child(3) .grow-series-card__body {
    min-height: 0;
    padding: 0;
    text-align: left;
  }
  .grow-series-card h3 {
    font-size: 1.375rem;
  }
  .grow-series-card__summary,
  .grow-series-card__detail {
    font-size: 1rem;
    line-height: 1.5;
  }
  .grow-series-card__summary {
    margin-top: 8px;
  }
  .grow-series-card__summary > span {
    display: inline;
  }
  .grow-series-card__detail {
    margin-top: 8px;
  }
  .grow-series-card__footer {
    margin-top: 18px;
    padding-top: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .grow-series-card__price,
  .grow-series-card:nth-child(3) .grow-series-card__price {
    min-width: 0;
    margin: 0;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }
  .grow-series-card__price > span {
    position: static;
    font-size: 0.875rem;
  }
  .grow-series-card__price > strong {
    margin: 0;
    font-size: 1.75rem;
  }
  .grow-series-card__actions,
  .grow-series-card:nth-child(2) .grow-series-card__actions,
  .grow-series-card:nth-child(3) .grow-series-card__actions {
    position: relative;
    left: auto;
    width: 100%;
    margin: 0;
    align-self: stretch;
    gap: 10px;
  }
  .grow-series-card__cart {
    width: auto;
    min-width: 0;
    height: 48px;
    flex: 1;
    padding: 0 18px;
    font-size: 0.9375rem;
  }
  .grow-series-card__favourite {
    width: 48px;
    height: 48px;
  }
  .grow-series-showcase__pagination {
    display: none;
  }

  /* About, reviews, contact, and footer. */
  .about {
    min-height: 0;
    padding: var(--app-space) 0;
    display: flex;
    flex-direction: column;
  }
  .about__image-wrap {
    position: relative;
    inset: auto;
    order: 1;
    width: var(--app-page);
    height: min(300px, 78vw);
    margin: 0 auto 22px;
    transform: none;
  }
  .about__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(54deg) scale(1.02);
  }
  .about__halo {
    top: 50%;
    left: 50%;
    width: min(270px, 72vw);
    height: min(270px, 72vw);
    transform: translate(-50%, -50%);
  }
  .about__copy {
    order: 2;
    width: var(--app-page);
    margin: 0 auto;
    padding: 0;
  }
  .vertical-label,
  .section-title__label {
    position: relative;
    inset: auto;
    min-height: 28px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #568126;
    background: rgba(149, 200, 63, 0.12);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    writing-mode: horizontal-tb;
    transform: none;
  }
  .about__copy h2 {
    margin: 12px 0 18px;
    font-size: clamp(2.25rem, 10vw, 2.85rem);
  }
  .about__copy p {
    margin: 0 0 14px;
    font-size: 1rem;
    line-height: 1.65;
  }
  .about__leaf-accent {
    display: none;
  }
  .section-title,
  .section-title--left,
  .section-title--center {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .section-title h2 {
    margin-top: 10px;
    font-size: clamp(2.25rem, 10vw, 2.85rem);
  }

  .testimonials {
    min-height: 0;
    padding: var(--app-space) 0;
  }
  .testimonials > div:first-child,
  .testimonial-grid,
  .section-pagination--testimonials {
    width: var(--app-page);
    margin-right: auto;
    margin-left: auto;
  }
  .testimonials__tree {
    top: 2px;
    right: -72px;
    width: 180px;
    height: 180px;
    opacity: 0.12;
  }
  .testimonial-grid {
    margin-top: 26px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonial-card,
  .testimonial-card:nth-child(2) {
    min-height: 0;
    padding: 16px;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(118, 170, 37, 0.14);
    border-radius: 20px;
  }
  .testimonial-card__portrait {
    width: 92px;
    height: 128px;
    margin: 0;
    border-width: 0 4px 4px;
    border-radius: 28px 28px 20px 20px;
  }
  .testimonial-card__copy {
    min-width: 0;
    text-align: left;
  }
  .testimonial-card h3 {
    margin: 0 26px 8px 0;
    font-size: 1rem;
    line-height: 1.3;
  }
  .testimonial-card p {
    margin: 0 0 12px;
    font-size: 0.9375rem;
    line-height: 1.55;
  }
  .quote-mark {
    top: -12px;
    right: 0;
    font-size: 2.5rem;
  }
  .stars {
    justify-content: flex-start;
  }
  .section-pagination--testimonials {
    display: none;
  }

  .contact {
    min-height: 0;
    padding: var(--app-space) 0 32px;
    display: flex;
    flex-direction: column;
  }
  .contact::before {
    content: none;
  }
  .contact > div:first-child {
    order: 1;
  }
  .contact-card {
    order: 2;
    width: var(--app-page);
    margin: 26px auto 0;
    padding: 20px;
    border: 1px solid rgba(118, 170, 37, 0.16);
    border-radius: var(--app-radius);
  }
  .contact-card form {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-card__required-note {
    margin: 0 0 -2px;
    color: #53634c;
    font-size: 0.8125rem;
    text-align: left;
  }
  .contact-card label,
  .contact-card__message {
    grid-column: 1;
    display: grid;
    gap: 7px;
  }
  .contact-card label > span {
    position: relative;
    width: auto;
    height: auto;
    padding: 0 2px;
    overflow: visible;
    clip: auto;
    color: #33452c;
    font-size: 0.875rem;
    font-weight: 700;
    white-space: normal;
  }
  .contact-card input,
  .contact-card textarea {
    border-color: rgba(92, 139, 32, 0.42);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
  }
  .contact-card input {
    height: 52px;
    padding: 0 16px;
  }
  .contact-card textarea {
    min-height: 132px;
    padding: 14px 16px;
  }
  .contact-card .button {
    width: 100%;
    min-height: 52px;
    margin-top: 2px;
    grid-column: 1;
    justify-self: stretch;
    font-size: 1rem;
  }
  .form-status {
    grid-column: 1;
    min-height: 24px;
    font-size: 0.8125rem;
  }
  .contact__plant {
    position: relative;
    inset: auto;
    order: 3;
    z-index: 1;
    width: 180px;
    height: 180px;
    margin: 10px auto -22px;
    transform: rotate(-6deg);
  }

  .footer {
    min-height: 0;
    padding:
      36px max(16px, env(safe-area-inset-right, 0px))
      max(22px, env(safe-area-inset-bottom, 0px))
      max(16px, env(safe-area-inset-left, 0px));
    border-radius: 34px 34px 0 0;
  }
  .footer__inner {
    width: min(608px, 100%);
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer__brand {
    grid-column: auto;
    text-align: center;
  }
  .footer__logo {
    width: 180px;
    height: 62px;
    padding: 8px 12px;
    margin: 0 auto;
    border-radius: 14px;
  }
  .footer__community-title {
    max-width: 23ch;
    margin: 18px auto 0;
    font-size: 1.5rem;
  }
  .socials {
    margin-top: 16px;
    justify-content: center;
  }
  .socials a {
    width: 48px;
    height: 48px;
  }
  .footer__contact {
    max-width: 38ch;
    margin: 18px auto 0;
    gap: 4px;
    justify-items: center;
  }
  .footer__contact-item,
  .footer__address {
    min-height: 44px;
    padding: 6px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    text-align: center;
  }
  .footer__links {
    width: 100%;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }
  .footer__disclosure {
    min-height: 52px;
    padding: 0 4px;
    align-items: center;
    color: #f4faef;
    cursor: pointer;
    pointer-events: auto;
  }
  .footer__links-heading {
    width: 100%;
    margin: 0;
    font-size: 0.8125rem;
  }
  .footer__disclosure > svg {
    width: 22px;
    height: 22px;
    display: block;
    transition: transform 220ms var(--app-ease);
  }
  .footer__links.is-open .footer__disclosure > svg {
    transform: rotate(180deg);
  }
  .footer__links-content {
    width: 100%;
    padding: 2px 0 10px;
    gap: 0;
  }
  .footer__links-content[hidden] {
    display: none;
  }
  .footer__links a {
    width: 100%;
    min-height: 48px;
    padding: 8px 4px;
  }
  .footer__copyright {
    width: min(608px, 100%);
    margin: 20px auto 0;
    padding-top: 16px;
    font-size: 0.8125rem;
  }
  .footer__copyright a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .toast {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    left: 16px;
    width: auto;
    min-width: 0;
    max-width: 420px;
    min-height: 48px;
    margin: 0 auto;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.875rem;
    transform: translateY(18px);
  }
  .toast--visible {
    transform: translateY(0);
  }

  .reveal {
    transition-property: opacity, transform !important;
    transition-duration: 260ms !important;
    transition-delay: 0ms !important;
    transition-timing-function: var(--app-ease) !important;
  }

}

@media (max-width: 360px) {
  :root {
    --app-page: calc(100% - 28px);
  }
  .testimonial-card,
  .testimonial-card:nth-child(2) {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 13px;
    padding: 14px;
  }
  .testimonial-card__portrait {
    width: 78px;
    height: 112px;
  }
  .testimonial-card p {
    font-size: 0.875rem;
  }
  .growable-card__copy {
    max-width: 62%;
    padding-left: 16px;
  }
  .growable-card__produce,
  .growable-card__produce--basil,
  .growable-card__produce--tomatoes,
  .growable-card__produce--vegetables,
  .growable-card__produce--flowers {
    right: -18px;
    width: 48%;
  }
}

@media (max-width: 780px) and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
  *,
  *::before,
  *::after {
    animation-delay: 0ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
}
