/* Sales-first landing (site root /).
   Source: Subexpress-LandingNew app/landing/landing.module.css — the CSS-module classes are flattened
   to the "lnd-" prefix; the markup lives in mainpage/index.php. */

.lnd-page {
  --lnd-ink: #090909;
  --lnd-paper: #f7f4ef;
  --lnd-red: #e1251b;
  --lnd-red-dark: #c91f17;
  --lnd-olive: #657844;
  --lnd-blue: #3f6fa8;
  --lnd-muted: #65615b;
  --lnd-line: #ddd8d0;
  overflow: clip;
  background: var(--lnd-paper);
  color: var(--lnd-ink);
  font-family: var(--font-manrope), Manrope, Arial, sans-serif;
  font-synthesis: none;
}

.lnd-page h1,
.lnd-page h2,
.lnd-page h3,
.lnd-page p {
  margin-top: 0;
}

.lnd-page a,
.lnd-page button,
.lnd-page input,
.lnd-page select {
  font-family: inherit;
}

.lnd-shell {
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
}

.lnd-hero {
  border-bottom: 1px solid var(--lnd-line);
  background: var(--lnd-paper);
}

.lnd-hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  align-items: stretch;
}

.lnd-hero-copy {
  max-width: 710px;
  padding: 82px 54px 74px 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lnd-eyebrow,
.lnd-section-number,
.lnd-contact-label {
  color: var(--lnd-red);
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: .08em;
}

.lnd-eyebrow::before {
  content: "";
  width: 25px;
  height: 3px;
  margin-right: 12px;
  display: inline-block;
  vertical-align: middle;
  background: var(--lnd-red);
}

.lnd-hero-copy h1 {
  max-width: 700px;
  margin: 24px 0 22px;
  font-size: clamp(52px, 4.65vw, 76px);
  font-weight: 750;
  line-height: .98;
  letter-spacing: -.055em;
}

.lnd-hero-copy > p {
  max-width: 610px;
  margin-bottom: 34px;
  color: #3f3b36;
  font-size: 18px;
  line-height: 1.5;
}

.lnd-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lnd-primary-button,
.lnd-secondary-button,
.lnd-form-submit {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.lnd-primary-button,
.lnd-form-submit {
  background: var(--lnd-red);
  color: #fff;
}

.lnd-primary-button:hover,
.lnd-form-submit:hover {
  background: var(--lnd-red-dark);
}

.lnd-secondary-button {
  border-color: #aaa49c;
  background: transparent;
  color: var(--lnd-ink);
}

.lnd-secondary-button:hover {
  border-color: var(--lnd-ink);
  background: #fff;
}

.lnd-primary-button:hover,
.lnd-secondary-button:hover {
  transform: translateY(-2px);
}

.lnd-primary-button:focus-visible,
.lnd-secondary-button:focus-visible,
.lnd-direction-card:focus-visible,
.lnd-form-submit:focus-visible,
.lnd-form input:focus-visible,
.lnd-form select:focus-visible {
  outline: 3px solid #ff9b91;
  outline-offset: 3px;
}

.lnd-hero-visual {
  min-width: 0;
  position: relative;
  overflow: hidden;
  background: #eee8df;
}

.lnd-hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 64% center;
}

.lnd-hero-caption {
  min-height: 38px;
  padding: 0 15px;
  position: absolute;
  right: 20px;
  bottom: 20px;
  border: 1px solid #d2cbc1;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  background: rgba(247, 244, 239, .94);
  color: #4d4943;
  font-size: 11px;
  font-weight: 650;
}

.lnd-center-heading {
  text-align: center;
}

.lnd-center-heading h2,
.lnd-section-heading h2,
.lnd-contact-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(40px, 4vw, 61px);
  font-weight: 730;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.lnd-support-grid article > span {
  color: var(--lnd-red);
  font-size: 10px;
  font-weight: 750;
}

.lnd-support-grid p {
  margin: 0;
  color: var(--lnd-muted);
  font-size: 12px;
  line-height: 1.5;
}

.lnd-directions,
.lnd-support,
.lnd-contact {
  padding: 88px 0;
}

.lnd-section-heading {
  margin-bottom: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.lnd-section-heading > p {
  max-width: 470px;
  margin: 0 0 7px;
  color: var(--lnd-muted);
  font-size: 15px;
  line-height: 1.55;
}

.lnd-direction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lnd-direction-card {
  min-width: 0;
  height: 350px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--lnd-line);
  border-radius: 8px;
  background: #eeeae3;
  transition: transform .2s ease, border-color .2s ease;
}

.lnd-direction-card:hover {
  transform: translateY(-4px);
  border-color: #aaa39a;
}

.lnd-direction-card > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}

.lnd-direction-card:hover > img {
  transform: scale(1.018);
}

.lnd-direction-copy {
  width: min(66%, 370px);
  padding: 28px;
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.lnd-direction-copy > span {
  font-size: 11px;
  font-weight: 750;
}

.lnd-direction-copy h3 {
  margin: 24px 0 9px;
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -.04em;
}

.lnd-direction-copy p {
  max-width: 310px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.lnd-direction-copy strong {
  margin-top: auto;
  font-size: 12px;
  font-weight: 750;
}

.lnd-direction-copy strong b {
  margin-left: 12px;
  font-size: 17px;
}

.lnd-chilled .lnd-direction-copy h3,
.lnd-chilled .lnd-direction-copy strong {
  color: var(--lnd-olive);
}

.lnd-frozen .lnd-direction-copy {
  width: 62%;
}

.lnd-hot {
  border-color: #252525;
  color: #fff;
}

.lnd-hot .lnd-direction-copy h3,
.lnd-hot .lnd-direction-copy strong {
  color: #f04336;
}

.lnd-support {
  border-top: 1px solid var(--lnd-line);
  background: #fff;
}

.lnd-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--lnd-line);
  border-left: 1px solid var(--lnd-line);
}

.lnd-support-grid article {
  min-height: 175px;
  padding: 28px;
  position: relative;
  border-right: 1px solid var(--lnd-line);
  border-bottom: 1px solid var(--lnd-line);
}

.lnd-support-grid svg {
  width: 37px;
  height: 37px;
  color: var(--lnd-red);
  stroke-width: 1.35;
}

.lnd-support-grid article > span {
  position: absolute;
  top: 28px;
  right: 28px;
}

.lnd-support-grid h3 {
  margin: 29px 0 7px;
  font-size: 18px;
  font-weight: 700;
}

/* Assortment: three temperature lines, each with its own accent and a row of category cards */
.lnd-assortment {
  padding: 88px 0;
  background: linear-gradient(180deg, #fff 0%, #fdfbf8 100%);
}

.lnd-assortment .lnd-section-heading {
  margin-bottom: 40px;
}

.lnd-link {
  padding-bottom: 6px;
  border-bottom: 1px solid #cbc4b9;
  align-self: flex-end;
  margin-bottom: 8px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  transition: border-color .18s ease, color .18s ease;
}

.lnd-link span {
  margin-left: 10px;
}

.lnd-link:hover {
  border-color: var(--lnd-red);
  color: var(--lnd-red);
}

.lnd-assortment-groups {
  display: grid;
  grid-template-columns: 2fr 4fr 2fr;
  gap: 34px;
}

.lnd-assortment-group {
  min-width: 0;
}

.lnd-assortment-group h3 {
  margin: 0 0 20px;
  padding-bottom: 9px;
  display: inline-block;
  border-bottom: 2px solid currentColor;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.lnd-group-chilled h3 { color: var(--lnd-olive); }
.lnd-group-frozen h3 { color: var(--lnd-blue); }
.lnd-group-hot h3 { color: var(--lnd-red); }

.lnd-assortment-grid {
  display: grid;
  grid-template-columns: repeat(var(--lnd-group-count, 2), minmax(0, 1fr));
  gap: 12px;
}

.lnd-assortment-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #ece6dc;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 10px 24px rgba(32, 26, 18, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.lnd-assortment-card:hover {
  transform: translateY(-4px);
  border-color: #e0d6c6;
  box-shadow: 0 18px 34px rgba(32, 26, 18, .1);
}

.lnd-assortment-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  background: #f4f0e9;
}

.lnd-assortment-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lnd-assortment-body h4 {
  min-height: 2.5em;   /* one- and two-line titles keep the cards aligned across the three groups */
  margin: 0 0 9px;
  font-size: 14px;
  font-weight: 730;
  line-height: 1.25;
  letter-spacing: -.015em;
}

.lnd-assortment-body p {
  min-height: 2.8em;
  margin: 0 0 12px;
  color: var(--lnd-muted);
  font-size: 11px;
  line-height: 1.4;
}

.lnd-assortment-body span {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 650;
}

.lnd-assortment-body strong {
  margin-top: auto;
  color: var(--lnd-red);
  font-size: 12px;
  font-weight: 730;
}

/* the lead card of the hot line is filled with the accent */
.lnd-assortment-card.is-accent {
  border-color: var(--lnd-red);
  background: var(--lnd-red);
  color: #fff;
}

.lnd-assortment-card.is-accent p {
  color: rgba(255, 255, 255, .8);
}

.lnd-assortment-card.is-accent strong {
  color: #fff;
}

/* Terms of supply — one panel: timeline, two fact columns, CTA into the price-list form */
.lnd-terms {
  padding: 88px 0 96px;
  background: linear-gradient(180deg, var(--lnd-paper) 0%, #fbf8f3 100%);
}

.lnd-terms-panel {
  overflow: hidden;
  border: 1px solid #ece6dc;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(32, 26, 18, .05);
}

/* the delivery window, told as three numbers */
.lnd-terms-flow {
  padding: 40px 44px 42px;
  border-bottom: 1px solid #f0eae0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  background: linear-gradient(180deg, #fdfbf7 0%, #fff 100%);
}

.lnd-terms-flow article {
  min-width: 0;
  padding-top: 26px;
  position: relative;
}

/* connecting rail with a stop above every step */
.lnd-terms-flow article::before {
  content: "";
  height: 2px;
  position: absolute;
  top: 5px;
  right: -28px;
  left: 0;
  background: #efe8dd;
}

.lnd-terms-flow article:last-child::before {
  right: 0;
}

.lnd-terms-flow article::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  left: 0;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--lnd-red);
  box-shadow: 0 0 0 1px #f2cbc7;
}

.lnd-terms-flow b {
  display: block;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -.045em;
}

.lnd-terms-flow span {
  margin-top: 10px;
  display: block;
  color: var(--lnd-muted);
  font-size: 13px;
  line-height: 1.5;
}

/* what is included, in two scannable lists */
.lnd-terms-cols {
  padding: 40px 44px 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 60px;
}

.lnd-terms-cols > div {
  min-width: 0;
}

.lnd-terms-cols h3 {
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0eae0;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lnd-terms-cols ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.lnd-terms-cols li {
  position: relative;
  padding-left: 34px;
  font-size: 15px;
  line-height: 1.5;
}

.lnd-terms-cols li svg {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--lnd-red);
}

/* closing call to action */
.lnd-terms-cta {
  padding: 26px 44px;
  border-top: 1px solid #f6dedb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #fdf1ef;
}

.lnd-terms-cta strong {
  display: block;
  font-size: 18px;
  font-weight: 730;
  letter-spacing: -.02em;
}

.lnd-terms-cta span {
  margin-top: 6px;
  display: block;
  color: var(--lnd-muted);
  font-size: 13px;
  line-height: 1.5;
}

.lnd-terms-cta .lnd-primary-button {
  flex: none;
}

/* FAQ — native <details> cards, no JS */
.lnd-faq {
  padding: 88px 0 96px;
  background: linear-gradient(180deg, var(--lnd-paper) 0%, #fbf9f5 100%);
}

.lnd-faq-list {
  max-width: 1000px;
  margin: 46px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lnd-faq-list details {
  padding: 4px 30px;
  border: 1px solid #ece6dc;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(32, 26, 18, .05);
  transition: box-shadow .22s ease, border-color .22s ease;
}

.lnd-faq-list details[open],
.lnd-faq-list details:hover {
  border-color: #e0d6c6;
  box-shadow: 0 16px 32px rgba(32, 26, 18, .09);
}

.lnd-faq-list summary {
  padding: 22px 44px 22px 0;
  position: relative;
  display: block;          /* hides the native marker in Chrome/Firefox */
  cursor: pointer;
  font-size: 18px;
  font-weight: 720;
  line-height: 1.35;
  letter-spacing: -.02em;
  list-style: none;
}

.lnd-faq-list summary::-webkit-details-marker,
.lnd-faq-list summary::marker {
  display: none;
  content: "";
}

.lnd-faq-list summary svg {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -11px;
  color: var(--lnd-red);
  transition: transform .25s ease;
}

.lnd-faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.lnd-faq-list p {
  max-width: 860px;
  margin: 0;
  padding-bottom: 26px;
  color: #5f5a53;
  font-size: 15px;
  line-height: 1.65;
}

.lnd-contact {
  background: var(--lnd-paper);
}

.lnd-contact-panel {
  padding: 56px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: 72px;
  align-items: center;
  background: var(--lnd-red);
  color: #fff;
}

.lnd-contact-label {
  color: #fff;
}

.lnd-contact-copy h2 {
  max-width: 620px;
  font-size: clamp(42px, 3.7vw, 58px);
}

.lnd-contact-copy p {
  max-width: 520px;
  margin: 22px 0 0;
  color: #ffe2de;
  font-size: 15px;
  line-height: 1.55;
}

.lnd-form {
  min-width: 0;
  padding: 30px;
  border-radius: 8px;
  background: var(--lnd-paper);
  color: var(--lnd-ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lnd-form label {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.lnd-form label > span {
  font-size: 11px;
  font-weight: 700;
}

.lnd-form input,
.lnd-form select {
  width: 100%;
  height: 50px;
  padding: 0 13px;
  border: 1px solid #cfc8bf;
  border-radius: 4px;
  background: #fff;
  color: var(--lnd-ink);
  font-size: 14px;
}

.lnd-form input::placeholder {
  color: #9c968e;
}

.lnd-form-submit {
  width: 100%;
  grid-column: 1 / -1;
  border: 0;
}

.lnd-form small {
  grid-column: 1 / -1;
  color: #77716a;
  font-size: 10px;
  line-height: 1.45;
}

@media (max-width: 1220px) {
  .lnd-shell {
    width: min(1500px, calc(100% - 56px));
  }

  .lnd-hero-grid {
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  }

  .lnd-hero-copy h1 {
    font-size: clamp(50px, 5vw, 64px);
  }

  .lnd-direction-card {
    height: 330px;
  }

  .lnd-direction-copy {
    width: 72%;
    padding: 23px;
  }

  .lnd-direction-copy h3 {
    font-size: 27px;
  }

  .lnd-assortment-groups {
    gap: 22px;
  }

  .lnd-assortment-body {
    padding: 13px 13px 15px;
  }

  .lnd-contact-panel {
    grid-template-columns: minmax(0, 1fr) minmax(480px, 1fr);
    gap: 38px;
    padding: 44px;
  }
}

@media (max-width: 980px) {
  .lnd-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .lnd-hero-copy {
    max-width: 820px;
    padding: 64px 0 52px;
  }

  .lnd-hero-copy h1 {
    max-width: 800px;
  }

  .lnd-hero-visual {
    height: 430px;
    margin-inline: -28px;
  }

  .lnd-hero-visual img {
    object-position: 66% center;
  }

  .lnd-assortment-groups {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lnd-assortment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lnd-direction-grid {
    grid-template-columns: 1fr;
  }

  .lnd-direction-card {
    height: 320px;
  }

  .lnd-direction-copy,
  .lnd-frozen .lnd-direction-copy {
    width: 52%;
  }

  .lnd-support-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lnd-contact-panel {
    grid-template-columns: 1fr;
  }

  .lnd-terms-flow,
  .lnd-terms-cols {
    padding-inline: 32px;
  }

  .lnd-terms-cta {
    padding-inline: 32px;
  }

  .lnd-terms-cols {
    gap: 34px 40px;
  }

  .lnd-contact-copy h2 {
    max-width: 800px;
  }
}

@media (max-width: 700px) {
  .lnd-shell {
    width: calc(100% - 28px);
  }

  .lnd-hero-copy {
    padding: 42px 0 36px;
  }

  .lnd-eyebrow,
  .lnd-section-number,
  .lnd-contact-label {
    font-size: 10px;
  }

  .lnd-hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(40px, 12vw, 52px);
    line-height: 1;
  }

  .lnd-hero-copy > p {
    margin-bottom: 26px;
    font-size: 15px;
  }

  .lnd-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lnd-primary-button,
  .lnd-secondary-button {
    width: 100%;
    min-height: 50px;
  }

  .lnd-hero-visual {
    height: 290px;
    margin-inline: -14px;
  }

  .lnd-hero-caption {
    display: none;
  }

  .lnd-assortment,
  .lnd-directions,
  .lnd-support,
  .lnd-terms,
  .lnd-faq,
  .lnd-contact {
    padding: 58px 0;
  }

  .lnd-terms-flow,
  .lnd-terms-cols {
    padding: 28px 20px 30px;
  }

  .lnd-terms-cols li {
    padding-left: 30px;
    font-size: 14px;
  }

  .lnd-terms-cta {
    padding: 22px 20px 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .lnd-terms-cta .lnd-primary-button {
    width: 100%;
  }

  .lnd-faq-list {
    margin-top: 28px;
    gap: 10px;
  }

  .lnd-faq-list details {
    padding: 2px 18px;
    border-radius: 12px;
  }

  .lnd-faq-list summary {
    padding: 18px 34px 18px 0;
    font-size: 16px;
  }

  .lnd-faq-list p {
    padding-bottom: 20px;
    font-size: 14px;
  }

  /* 16px — порог, ниже которого iOS Safari зумит страницу при фокусе на поле */
  .lnd-form input,
  .lnd-form select {
    font-size: 16px;
  }


  .lnd-terms-flow {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .lnd-terms-flow article::before {
    right: 0;
  }

  .lnd-terms-cols {
    grid-template-columns: 1fr;
  }

  .lnd-center-heading {
    text-align: left;
  }

  .lnd-center-heading h2,
  .lnd-section-heading h2,
  .lnd-contact-copy h2 {
    font-size: 36px;
  }

  /* «Прайс-лист и доступ на сайт» — в одну строку на телефоне (правило идёт после общего 36px) */
  .lnd-contact-copy h2 {
    font-size: clamp(19px, 6.2vw, 36px);
  }

  .lnd-center-heading h2 br,
  .lnd-section-heading h2 br,
  .lnd-contact-copy h2 br {
    display: none;
  }

  .lnd-section-heading {
    margin-bottom: 26px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .lnd-section-heading > p {
    margin-bottom: 0;
    font-size: 14px;
  }

  .lnd-link {
    align-self: flex-start;
    margin-bottom: 0;
  }

  .lnd-direction-card {
    height: 270px;
  }

  .lnd-direction-copy,
  .lnd-frozen .lnd-direction-copy {
    width: 64%;
    padding: 20px;
  }

  .lnd-direction-copy h3 {
    margin-top: 18px;
    font-size: 25px;
  }

  .lnd-direction-copy p {
    font-size: 12px;
  }

  .lnd-support-grid {
    grid-template-columns: 1fr;
  }

  .lnd-support-grid article {
    min-height: 145px;
    padding: 24px;
  }

  .lnd-support-grid article > span {
    top: 24px;
    right: 24px;
  }

  .lnd-support-grid h3 {
    margin-top: 22px;
  }

  .lnd-contact-panel {
    padding: 28px 18px 18px;
    gap: 28px;
  }

  .lnd-contact-copy p {
    font-size: 14px;
  }

  .lnd-form {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .lnd-form-submit,
  .lnd-form small {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lnd-primary-button,
  .lnd-secondary-button,
  .lnd-form-submit,
  .lnd-assortment-card,
  .lnd-faq-list details,
  .lnd-faq-list summary svg,
  .lnd-direction-card,
  .lnd-direction-card > img {
    transition: none;
  }
}
