:root {
  --color-paper: #fbf8f2;
  --color-cream: #f5eee3;
  --color-soft: #efe4d5;
  --color-ink: #3f392f;
  --color-muted: #777164;
  --color-green: #6f7b4f;
  --color-green-dark: #59633f;
  --color-sage: #9ba381;
  --color-line: #e6dccd;
  --color-white: #fffdf8;
  --shadow-soft: 0 18px 50px rgba(63, 57, 47, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --container: 1180px;
}

@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 700;
  src: url("../fonts/co3bmX5slCNuHLi8bLeY9MK7whWMhyjYrXtKgS4.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 700;
  src: url("../fonts/co3bmX5slCNuHLi8bLeY9MK7whWMhyjYqXtK.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  src: url("../fonts/xn7gYHE41ni1AdIRggOxSuXd.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  src: url("../fonts/xn7gYHE41ni1AdIRggexSg.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body.snail-theme {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.snail-theme img {
  display: block;
  max-width: 100%;
  height: auto;
}

body.snail-theme a {
  color: inherit;
  text-decoration: none;
}

body.snail-theme button,
body.snail-theme input,
body.snail-theme textarea,
body.snail-theme select {
  font: inherit;
}

body.snail-theme svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.landing-container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 72px;
  background: var(--color-paper);
}

.section-band {
  background: var(--color-cream);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-title,
.hero h1,
.cta-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--color-ink);
}

.section-title {
  font-size: 42px;
}

.section-title p,
.hero h1 p,
.cta-panel h2 p {
  margin: 0;
  line-height: inherit;
}

.section-title--center {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-text {
  color: var(--color-muted);
}

.section-text p,
.section-text br + br {
  margin: 0 0 12px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--color-green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary,
.button--compact {
  color: var(--color-white);
  background: var(--color-green);
  border-color: var(--color-green);
}

.button--primary {
  min-width: 178px;
  padding: 0 26px;
}

.button--compact {
  min-height: 40px;
  padding: 0 22px;
  font-size: 13px;
}

.button--ghost {
  min-width: 172px;
  padding: 0 24px;
  color: var(--color-green-dark);
  background: rgba(255, 253, 248, 0.64);
  border-color: var(--color-sage);
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 242, 0.88);
  border-bottom: 1px solid rgba(230, 220, 205, 0.66);
  backdrop-filter: blur(16px);
}

.landing-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 148px;
}

.brand__image {
  width: 48px;
  max-height: 48px;
  object-fit: contain;
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.landing-nav__link {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.landing-nav__link:hover {
  color: var(--color-green-dark);
}

.landing-header__actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.icon-button {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--color-green-dark);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 999px;
}

.icon-button svg {
  width: 22px;
  height: 22px;
}

.icon-button__close {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}

.hero__media,
.hero__media::after,
.hero__image {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: 0;
  overflow: hidden;
}

.hero__media::after {
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(251, 248, 242, 0.95) 0%, rgba(251, 248, 242, 0.74) 36%, rgba(251, 248, 242, 0.05) 68%);
}

.hero__image {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 720px;
  padding-block: 100px 46px;
}

.hero__content {
  max-width: 570px;
}

.hero h1 {
  font-size: 64px;
}

.hero__text {
  max-width: 470px;
  margin-top: 24px;
  font-size: 17px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.benefit-card,
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 8px;
}

.benefit-card {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 150px;
  padding: 26px 16px 20px;
  text-align: center;
}

.benefit-card__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  object-fit: contain;
}

.benefit-card h3,
.product-card h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.benefit-card p,
.product-card p {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.55;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.product-card__media {
  display: block;
  aspect-ratio: 1 / 0.78;
  background: var(--color-cream);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  display: grid;
  flex: 1;
  align-content: start;
  padding: 20px 20px 18px;
}

.product-card h3 {
  min-height: 42px;
}

.product-card__meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 13px;
}

.product-card__meta strong {
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 800;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  align-items: center;
  gap: 34px;
  min-height: 280px;
  overflow: hidden;
  padding: 44px 48px;
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.cta-panel h2 {
  max-width: 560px;
  font-size: 46px;
}

.cta-panel .section-text {
  max-width: 540px;
  margin: 18px 0 26px;
}

.cta-image {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
}

.cta-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-feature__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Landing first screen, benefits and products */
:root {
  --brand-olive: #737b51;
  --brand-dark: #41432e;
  --brand-text: #585143;
  --brand-soft: #f5f1ec;
  --chip-start: #f2ebe5;
  --chip-end: #e7dbcf;
  --container: 1690px;
}

.landing-header {
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
  z-index: 30;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.landing-header__inner {
  display: grid;
  width: min(100% - 630px, 1290px);
  min-height: 100px;
  align-items: center;
  grid-template-columns: 100px 867px 145px;
  gap: 89px;
}

.brand {
  width: 100px;
  min-width: 100px;
  height: 100px;
  justify-content: center;
  gap: 0;
  color: var(--brand-dark);
  background: url("../img/logo-lumina.svg") center / contain no-repeat;
  text-align: center;
}

.brand__image {
  width: 100px;
  max-height: 100px;
}

.landing-nav {
  width: 867px;
  flex: 0 0 867px;
  justify-content: flex-start;
  gap: 30px;
  min-width: 0;
}

.landing-nav__link {
  color: var(--brand-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
}

.landing-header__actions {
  flex: 0 0 auto;
}

.landing-header__actions .button--compact {
  width: 145px;
  min-height: 50px;
  padding: 0 28px;
  color: #fff;
  background: var(--brand-olive);
  border-color: var(--brand-olive);
  border-radius: 40px;
  font-size: 18px;
  font-weight: 500;
}

.hero {
  height: 1080px;
  min-height: 1080px;
  margin-bottom: 0;
  background: #fff;
}

.hero__media::after {
  display: none;
}

.hero__image {
  object-fit: cover;
  object-position: center top;
}

.hero__inner {
  width: min(100% - 630px, 1290px);
  height: 1080px;
  min-height: 1080px;
  justify-content: flex-start;
  padding-block: 224px 0;
}

.hero__content {
  width: 769px;
  max-width: 100%;
}

.hero .eyebrow {
  display: inline-flex;
  width: min(100%, 500px);
  min-height: 46px;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 10px 20px;
  color: var(--brand-text);
  background: linear-gradient(90deg, var(--chip-start), var(--chip-end));
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero .eyebrow::before {
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  content: "";
  background: currentColor;
  mask: url("../img/eyebrow-leaf.svg") center / contain no-repeat;
}

.hero h1 {
  max-width: 769px;
  color: var(--brand-dark);
  font-size: 74px;
  font-weight: 700;
  line-height: 76px;
}

.hero__text {
  max-width: 646px;
  margin-top: 30px;
  color: var(--brand-text);
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}

.hero__buttons {
  gap: 20px;
  margin-top: 50px;
}

.hero__buttons .button {
  gap: 22px;
  min-height: 72px;
  padding: 0 41px 0 42px;
  border-radius: 40px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero__buttons .button--primary {
  width: 360px;
  color: #fff;
  background: var(--brand-olive);
  border-color: var(--brand-olive);
}

.hero__buttons .button--ghost {
  width: 330px;
  color: var(--brand-olive);
  background: transparent;
  border-color: var(--brand-olive);
}

.hero__buttons .button--primary svg {
  width: 29px;
  height: 25px;
  order: 2;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero__buttons .button--ghost svg {
  width: 20px;
  height: 23px;
  fill: currentColor;
  stroke: none;
}

.hero__buttons .button--ghost svg path {
  fill: currentColor;
  stroke: none;
}

.section--benefits {
  margin-top: 0;
  padding-block: 64px 80px;
  background: #fff;
}

.section--benefits .landing-container,
.section--products .landing-container {
  width: 1690px;
  max-width: calc(100% - 220px);
  margin-right: auto;
  margin-left: 110px;
}

.section--benefits .section-title {
  max-width: 930px;
  color: var(--brand-dark);
  font-size: 62px;
  font-weight: 700;
  line-height: 75px;
}

.section-ornament {
  display: flex;
  width: 189px;
  height: 27px;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  background: url("../img/divider-line-current.svg") center / 189px 2px no-repeat;
}

.section-ornament::before {
  width: 25px;
  height: 27px;
  content: "";
  background: url("../img/divider-leaf-current.svg") center / contain no-repeat;
}

.section-ornament::after {
  display: none;
  content: none;
}

.section-ornament svg {
  display: none;
}

.benefit-grid {
  grid-template-columns: repeat(6, 260px);
  justify-content: space-between;
  gap: 26px;
  margin-top: 40px;
}

.benefit-card {
  position: relative;
  width: 260px;
  height: 260px;
  min-height: 0;
  align-content: center;
  padding: 58px 26px;
  background: #fff;
  border: 2.62px solid rgba(231, 219, 207, 0.35);
  border-radius: 52px;
}

.benefit-card__icon {
  width: 78px;
  height: 78px;
  margin-bottom: 26px;
  object-fit: contain;
}

body.snail-theme .benefit-card__icon {
  width: 78px;
  height: 78px;
}

.benefit-card:nth-child(1) .benefit-card__icon {
  content: url("../img/benefit-drop-current.svg");
  width: 55px;
  height: 66px;
}

.benefit-card:nth-child(2) .benefit-card__icon {
  content: url("../img/benefit-rotate-current.svg");
  width: 59px;
  height: 66px;
}

.benefit-card:nth-child(3) .benefit-card__icon {
  content: url("../img/benefit-mirror-current.svg");
  width: 64px;
  height: 79px;
  object-fit: contain;
}

.benefit-card:nth-child(3)::after {
  display: none;
}

.benefit-card:nth-child(4) .benefit-card__icon {
  content: url("../img/benefit-protect-current.svg");
  width: 96px;
  height: 79px;
}

.benefit-card:nth-child(5) .benefit-card__icon {
  content: url("../img/benefit-daynight-current.svg");
}

.benefit-card:nth-child(6) .benefit-card__icon {
  content: url("../img/benefit-types-current.svg");
  width: 68px;
  height: 79px;
}

.benefit-card h3 {
  color: var(--brand-text);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
}

.benefit-card p {
  display: none;
}

.section--products {
  padding-block: 0 124px;
  background: #fff;
  border-top: 0;
}

.section--products .section-head {
  margin-bottom: 44px;
}

.section--products .section-title {
  color: var(--brand-dark);
  font-size: 62px;
  font-weight: 700;
  line-height: 75px;
}

.section--products 

.section--products 

.product-grid {
  width: 1699px;
  grid-template-columns: repeat(4, 400px);
  justify-content: start;
  gap: 36px;
  margin-left: -9px;
}

.product-card {
  width: 400px;
  height: 679px;
  min-height: 0;
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--brand-soft);
  border-radius: 40px;
  box-shadow: none;
}

.product-card__media {
  width: 400px;
  height: 400px;
  aspect-ratio: auto;
  background: var(--brand-soft);
  margin: -2px -2px 0;
}

.product-card__image {
  width: 400px;
  height: 400px;
  border-radius: 38px 38px 0 0;
  object-fit: cover;
}

.product-card__body {
  display: flex;
  height: 275px;
  min-height: 0;
  flex-direction: column;
  padding: 28px 33px 34px;
}

.product-card h3 {
  min-height: auto;
  color: var(--brand-text);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
}

.product-card p {
  margin-top: 20px;
  color: #afaaa6;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.product-card__meta {
  width: 185px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-right: 0;
  color: #afaaa6;
  font-size: 18px;
  font-weight: 500;
}

.product-card__meta strong {
  color: var(--brand-text);
  font-size: 26px;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 1800px) {
  .landing-header__inner,
  .hero__inner {
    width: min(100% - 96px, 1290px);
  }

  .section--benefits .landing-container,
  .section--products .landing-container {
    width: min(100% - 96px, 1690px);
    max-width: none;
    margin-inline: auto;
  }

  .benefit-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .benefit-card {
    width: auto;
  }
}

@media (max-width: 1380px) {
  .landing-header__inner,
  .hero__inner {
    width: min(100% - 64px, 1180px);
  }

  .landing-nav {
    gap: 18px;
  }

  .landing-nav__link {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 68px;
    line-height: 70px;
  }

  .hero__text {
    font-size: 20px;
    line-height: 31px;
  }

  .hero__buttons .button {
    min-height: 60px;
    font-size: 20px;
  }

  .hero__buttons .button--primary {
    width: 300px;
  }

  .hero__buttons .button--ghost {
    width: 280px;
  }

  .section--benefits .section-title,
  .section--products .section-title {
    font-size: 52px;
  }

  .benefit-card h3 {
    font-size: 17px;
  }

  .product-grid {
    gap: 24px;
  }

  .product-card h3,
  .product-card__meta strong {
    font-size: 22px;
  }
}

@media (max-width: 1100px) {
  .landing-header {
    position: sticky;
    top: 0;
    background: rgba(255, 253, 248, 0.94);
    border-bottom: 1px solid var(--color-line);
    backdrop-filter: blur(14px);
  }

  .landing-header__inner {
    display: grid;
    width: min(100% - 32px, var(--container));
    min-height: 76px;
  }

  .brand {
    width: auto;
    min-width: 126px;
    justify-content: start;
    text-align: left;
  }

  

.hero,
  .hero__inner {
    min-height: 760px;
  }

  .hero__inner {
    width: min(100% - 48px, var(--container));
    padding-block: 120px 48px;
  }

  .hero__media::after {
    display: block;
    background: rgba(255, 253, 248, 0.62);
  }

  .benefit-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card,
  .product-card {
    width: auto;
  }

  .product-grid {
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-left: 0;
  }

  .product-card__media,
  .product-card__image {
    width: 100%;
  }

}

@media (max-width: 860px) {
  .hero h1 {
    font-size: 46px;
    line-height: 1.06;
  }

  .hero .eyebrow {
    width: auto;
    white-space: normal;
  }

  .hero__text {
    font-size: 17px;
    line-height: 1.6;
  }

  .hero__buttons .button,
  .hero__buttons .button--primary,
  .hero__buttons .button--ghost {
    width: 100%;
  }

  .section--benefits .landing-container,
  .section--products .landing-container {
    width: min(100% - 32px, var(--container));
    max-width: none;
    margin-inline: auto;
  }

  .section--benefits .section-title,
  .section--products .section-title {
    font-size: 40px;
  }

  .benefit-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 210px;
  }

  .product-card {
    min-height: auto;
  }

  .product-card__media {
    height: auto;
    aspect-ratio: 1;
  }
}

/* Landing rebuild: mucin, routine and results */
.landing-eyebrow,
.landing-copy,
.mucin-section__tags,
.mucin-section-point,
.routine-section-step,
.results-section-stat,
.results-section__note {
  font-family: var(--font-body);
}

.landing-title {
  margin: 0;
  color: var(--brand-dark);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

.landing-eyebrow {
  margin: 0 0 10px;
  color: var(--brand-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}

.landing-copy {
  color: var(--brand-text);
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}

.landing-copy p {
  margin: 0;
}

.landing-copy p + p {
  margin-top: 26px;
}

.mucin-section {
  padding-block: 86px 82px;
  background: #fff;
}

.mucin-section__inner,
.routine-section__inner,
.results-section__inner {
  width: min(100% - 220px, 1690px);
  max-width: none;
  margin-inline: auto;
}

.mucin-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 617px) 394px minmax(0, 565px);
  align-items: center;
  gap: 58px;
}

.mucin-section__title {
  max-width: 617px;
  font-size: 62px;
  line-height: 64px;
}

.mucin-section__text {
  max-width: 617px;
  margin-top: 30px;
}

.mucin-section__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: 42px;
}

.mucin-section__tags span {
  display: inline-flex;
  width: 218px;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  color: var(--brand-text);
  background: #f9f5f1;
  border: 1px solid #f1e2d6;
  border-radius: 40px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.mucin-section__tags span:nth-child(n + 4) {
  width: 335px;
}

.mucin-section__media {
  width: 394px;
  height: 391px;
}

body.snail-theme .mucin-section__image {
  width: 394px;
  height: 391px;
  object-fit: contain;
}

.mucin-section__points {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 118px;
}

.mucin-section__points::before {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 17px;
  width: 3px;
  content: "";
  background: radial-gradient(circle, rgba(176, 176, 176, 0.9) 1.5px, transparent 2px) center top / 3px 9px repeat-y;
}

.mucin-section-point {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 274px);
  align-items: center;
  gap: 20px;
  min-height: 80px;
  color: var(--brand-text);
}

.mucin-section-point::before {
  position: absolute;
  top: 50%;
  left: -108px;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--brand-olive);
  border-radius: 50%;
  transform: translateY(-50%);
}

.mucin-section-point::after {
  position: absolute;
  top: 50%;
  left: -94px;
  width: 96px;
  height: 3px;
  content: "";
  background: radial-gradient(circle, rgba(176, 176, 176, 0.9) 1.5px, transparent 2px) left center / 9px 3px repeat-x;
}

.mucin-section-point__icon {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  overflow: hidden;
  background: #faf5ef;
  border: 1px solid rgba(231, 219, 207, 0.9);
  border-radius: 50%;
}

.mucin-section-point h3 {
  margin: 0;
  color: var(--brand-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.mucin-section-point p {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.45;
}

.routine-section {
  position: relative;
  overflow: hidden;
  padding-block: 74px 92px;
  background: #f5f1ec;
}

.routine-section::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 782px;
  height: 573px;
  content: "";
  background: url("../img/routine-leaf-current.svg") center / 100% 100% no-repeat;
  opacity: 1;
  pointer-events: none;
}

.routine-section__title {
  max-width: 760px;
  font-size: 62px;
  line-height: 1;
}

.routine-section__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: space-between;
  gap: 44px;
  margin-top: 70px;
}

.routine-section-step {
  position: relative;
  min-width: 0;
  color: var(--brand-text);
}

.routine-section-step:not(:last-child)::after {
  position: absolute;
  top: 168px;
  right: -34px;
  width: 30px;
  height: 18px;
  content: "";
  background: currentColor;
  opacity: 0.65;
  mask: url("../img/routine-arrow-current.svg") center / contain no-repeat;
}

.routine-section-step__top {
  display: grid;
  grid-template-columns: 62px minmax(74px, 160px);
  align-items: start;
  gap: 15px;
  min-height: 266px;
}

.routine-section-step__number {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--brand-olive);
  border: 2px solid var(--brand-olive);
  border-radius: 50%;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.routine-section-step__media {
  display: flex;
  height: 266px;
  align-items: flex-start;
  justify-content: center;
}

body.snail-theme .routine-section-step__image {
  width: auto;
  max-width: 160px;
  height: 253px;
  object-fit: contain;
}

.routine-section-step:nth-child(1) .routine-section-step__image {
  width: 74px;
}

.routine-section-step:nth-child(2) .routine-section-step__image {
  width: 134px;
}

.routine-section-step:nth-child(3) .routine-section-step__image,
.routine-section-step:nth-child(4) .routine-section-step__image {
  width: 64px;
  height: 266px;
}

.routine-section-step__body {
  max-width: 333px;
  margin-top: 20px;
  text-align: center;
}

.routine-section-step h3 {
  margin: 0;
  color: var(--brand-text);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.22;
}

.routine-section-step p {
  max-width: 290px;
  margin: 10px auto 0;
  color: var(--brand-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.results-section {
  padding-block: 82px 100px;
  background: #fff;
}

.results-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 882px) 572px;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
}

.results-section__copy {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.results-section__title {
  max-width: 882px;
  font-size: 62px;
  line-height: 50px;
}

.results-section__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 274px));
  gap: 20px;
}

.results-section-stat strong {
  display: block;
  color: var(--brand-olive);
  font-size: 62px;
  font-weight: 500;
  line-height: 1.05;
}

.results-section-stat p {
  max-width: 274px;
  margin: 20px 0 0;
  color: var(--brand-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.results-section__note {
  margin: 0;
  color: #bcbcbc;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.results-section__photos {
  display: grid;
  grid-template-columns: repeat(2, 266px);
  gap: 40px;
}

.results-section-photo {
  position: relative;
  width: 266px;
  height: 399px;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}

body.snail-theme .results-section-photo__image {
  width: 266px;
  height: 399px;
  object-fit: cover;
}

.results-section-photo figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  min-width: 160px;
  height: 53px;
  align-items: center;
  justify-content: center;
  padding: 14px 27px 15px 30px;
  color: #fff;
  background: var(--brand-olive);
  border-radius: 0 20px 0 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.results-section-photo:nth-child(2) figcaption {
  min-width: 241px;
}

@media (max-width: 1800px) {
  .mucin-section__inner,
  .routine-section__inner,
  .results-section__inner {
    width: min(100% - 96px, 1690px);
  }

  .mucin-section__inner {
    grid-template-columns: minmax(0, 560px) 360px minmax(0, 460px);
    gap: 48px;
  }

  .mucin-section__title,
  .routine-section__title,
  .results-section__title {
    font-size: 56px;
  }

  .landing-copy {
    font-size: 21px;
    line-height: 32px;
  }

  .mucin-section__tags span {
    min-height: 52px;
    font-size: 19px;
  }

  .mucin-section__media,
  body.snail-theme .mucin-section__image {
    width: 360px;
    height: 358px;
  }
}

@media (max-width: 1380px) {
  .mucin-section__inner {
    grid-template-columns: minmax(0, 1fr) 330px;
  }

  .mucin-section__points {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding-left: 0;
  }

  .mucin-section__points::before,
  .mucin-section-point::before,
  .mucin-section-point::after {
    display: none;
  }

  .mucin-section-point {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 18px;
    background: #fffdf8;
    border: 1px solid #eee6db;
    border-radius: 24px;
  }

  .mucin-section-point__icon {
    width: 64px;
    height: 64px;
  }

  .routine-section__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 80px;
  }

  .routine-section-step:not(:last-child)::after {
    display: none;
  }

  .results-section__inner {
    grid-template-columns: 1fr;
  }

  .results-section__photos {
    justify-content: start;
  }
}

@media (max-width: 860px) {
  .mucin-section,
  .routine-section,
  .results-section {
    padding-block: 56px;
  }

  .mucin-section__inner,
  .routine-section__inner,
  .results-section__inner {
    width: min(100% - 40px, 720px);
  }

  .mucin-section__inner,
  .results-section__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .mucin-section__title,
  .routine-section__title,
  .results-section__title {
    font-size: 40px;
    line-height: 1.05;
  }

  .landing-eyebrow {
    font-size: 13px;
  }

  .landing-copy {
    font-size: 16px;
    line-height: 1.65;
  }

  .mucin-section__tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
  }

  .mucin-section__tags span {
    min-height: 44px;
    padding-inline: 16px;
    font-size: 14px;
    white-space: normal;
  }

  .mucin-section__media,
  body.snail-theme .mucin-section__image {
    width: min(100%, 320px);
    height: auto;
    margin-inline: auto;
  }

  .mucin-section__points,
  .routine-section__steps,
  .results-section__stats,
  .results-section__photos {
    grid-template-columns: 1fr;
  }

  .routine-section__steps {
    margin-top: 34px;
    gap: 34px;
  }

  .routine-section-step__top {
    grid-template-columns: 54px minmax(90px, 1fr);
    gap: 24px;
    min-height: 190px;
  }

  .routine-section-step__number {
    width: 54px;
    height: 54px;
    font-size: 26px;
  }

  .routine-section-step__media {
    height: 190px;
    justify-content: flex-start;
  }

  body.snail-theme .routine-section-step__image {
    height: 190px;
  }

  .routine-section-step__body {
    max-width: none;
    text-align: left;
  }

  .routine-section-step p {
    margin-inline: 0;
  }

  .routine-section::after {
    top: 96px;
    right: -260px;
    width: 560px;
    height: 411px;
    opacity: 0.75;
  }

  .results-section__copy {
    gap: 34px;
  }

  .results-section__photos {
    gap: 18px;
  }

  .results-section-photo,
  body.snail-theme .results-section-photo__image {
    width: 100%;
    height: 360px;
  }
}

/* Final layout pass: complete page */
body.snail-theme {
  background: #fff;
}

.landing-main {
  background: #fff;
}

.landing-header {
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
  z-index: 40;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.landing-header__inner {
  display: flex;
  width: min(100% - 630px, 1290px);
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  width: 100px;
  min-width: 100px;
  height: 100px;
  background: none;
}

body.snail-theme .brand__image {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.landing-nav {
  width: auto;
  flex: 0 1 auto;
  gap: 30px;
}

.landing-nav__link {
  color: var(--brand-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.landing-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.landing-header__phone {
  display: inline-flex;
  align-items: center;
  color: var(--brand-dark);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.landing-header__phone span {
  display: block;
}

.landing-header__actions .button--compact {
  width: 145px;
  min-height: 50px;
  padding: 0 32px;
  color: #fff;
  background: var(--brand-olive);
  border-color: var(--brand-olive);
  border-radius: 40px;
  font-size: 18px;
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 1080px;
  overflow: hidden;
  background: #fff;
}

.hero__media,
.hero__media::after {
  position: absolute;
  inset: 0;
}

.hero__media::after {
  display: none;
}

body.snail-theme .hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero__inner {
  position: relative;
  width: min(100% - 630px, 1290px);
  min-height: 1080px;
  padding-block: 224px 0;
}

.hero__content {
  width: 769px;
}

.hero .eyebrow {
  width: 500px;
  min-height: 46px;
  margin: 0 0 20px;
  padding: 10px 20px;
  border-radius: 20px;
  color: var(--brand-text);
  background: linear-gradient(90deg, var(--chip-start), var(--chip-end));
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow::before {
  width: 27px;
  height: 27px;
  background: currentColor;
  mask: url("../img/hero-leaf-current.svg") center / contain no-repeat;
}

.hero h1 {
  max-width: 769px;
  color: var(--brand-dark);
  font-size: 84px;
  font-weight: 700;
  line-height: 86px;
}

.hero__text {
  max-width: 646px;
  margin-top: 30px;
  color: var(--brand-text);
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}

.hero__buttons {
  gap: 20px;
  margin-top: 50px;
}

.hero__buttons .button {
  min-height: 72px;
  gap: 20px;
  border-radius: 40px;
  font-size: 24px;
  font-weight: 500;
}

.hero__buttons .button--primary {
  width: 360px;
}

.hero__buttons .button--ghost {
  width: 330px;
  background: transparent;
}

.hero__buttons .button--primary::after {
  width: 21px;
  height: 18px;
  mask-image: url("../img/hero-arrow-current.svg");
}

.hero__buttons .button--ghost::before {
  width: 20px;
  height: 23px;
  mask-image: url("../img/hero-play-current.svg");
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 4;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  transform: translate(-50%, 0);
  animation: hero-scroll-float 1.8s ease-in-out infinite;
}

.hero-scroll__icon {
  display: block;
  width: 39px;
  height: 39px;
  background: url("../img/hero-scroll-arrow-current.svg") center / contain no-repeat;
}

@keyframes hero-scroll-float {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll {
    animation: none;
  }
}

.section--benefits {
  margin-top: 100px;
  padding-block: 0;
  background: #fff;
}

.section--benefits .landing-container,
.section--products .landing-container {
  width: min(100% - 220px, 1690px);
  max-width: 1690px;
  margin-inline: auto;
}

.section--benefits .section-title {
  max-width: 746px;
  color: var(--brand-dark);
  font-size: 62px;
  font-weight: 700;
  line-height: 75px;
}

.section-ornament {
  background-image: url("../img/divider-line-current.svg");
}

.section-ornament::before {
  background-image: url("../img/divider-leaf-current.svg");
}

.benefit-grid {
  grid-template-columns: repeat(6, 260px);
  justify-content: space-between;
  gap: 26px;
}

.benefit-card:nth-child(1) .benefit-card__icon {
  content: url("../img/benefit-drop-current.svg");
}

.benefit-card:nth-child(2) .benefit-card__icon {
  content: url("../img/benefit-rotate-current.svg");
}

.benefit-card:nth-child(3) .benefit-card__icon {
  content: url("../img/benefit-mirror-current.svg");
}

.benefit-card:nth-child(4) .benefit-card__icon {
  content: url("../img/benefit-protect-current.svg");
}

.benefit-card:nth-child(5) .benefit-card__icon {
  content: url("../img/benefit-daynight-current.svg");
}

.benefit-card:nth-child(6) .benefit-card__icon {
  content: url("../img/benefit-types-current.svg");
}

.section--products {
  margin-top: 100px;
  padding-block: 0;
  background: #fff;
}

.section--products .section-head {
  justify-content: center;
  margin-bottom: 50px;
}

.section--products .section-title {
  color: var(--brand-dark);
  font-size: 62px;
  font-weight: 700;
  line-height: 75px;
  text-align: center;
}

.section--products 

.product-grid {
  width: 100%;
  grid-template-columns: repeat(4, 400px);
  justify-content: space-between;
  gap: 36px;
  margin-left: 0;
}

.mucin-section {
  margin-top: 100px;
  padding-block: 0;
}

.mucin-section__inner,
.routine-section__inner,
.results-section__inner,
.reviews-section__inner,
.faq-section__inner,
.footer-section__inner {
  width: min(100% - 220px, 1690px);
  max-width: 1690px;
  margin-inline: auto;
}

.mucin-section__inner {
  grid-template-columns: minmax(0, 617px) 394px minmax(0, 565px);
  gap: 58px;
}

.mucin-section__points {
  padding-left: 118px;
}

.mucin-section__points::before {
  top: 47px;
  bottom: 47px;
  left: 17.5px;
  width: 3px;
  background: radial-gradient(circle, #b0b0b0 1.5px, transparent 2px) center top / 3px 9px repeat-y;
}

.mucin-section__points::after {
  position: absolute;
  top: 225px;
  left: -86px;
  width: 103.5px;
  height: 3px;
  content: "";
  background: radial-gradient(circle, #b0b0b0 1.5px, transparent 2px) left center / 9px 3px repeat-x;
}

.mucin-section-point::before {
  left: -108.5px;
  width: 15px;
  height: 15px;
  background: var(--brand-olive);
}

.mucin-section-point::after {
  top: calc(50% - 1.5px);
  left: -93.5px;
  width: 96.5px;
  height: 3px;
  background: radial-gradient(circle, #b0b0b0 1.5px, transparent 2px) left center / 9px 3px repeat-x;
}

.mucin-section-point__icon {
  width: 80px;
  height: 80px;
  background: #faf5ef;
  border: 1px solid rgba(231, 219, 207, 0.9);
}

.mucin-section-point__icon img,
body.snail-theme .mucin-section-point__icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.68;
}

.routine-section::after {
  background-image: url("../img/routine-leaf-current.svg");
}

.routine-section {
  min-height: 600px;
  margin-top: 100px;
  padding-block: 50px 53px;
}

.routine-section__steps {
  margin-top: 50px;
}

.results-section {
  margin-top: 100px;
  padding-block: 0;
}

.routine-section-step:not(:last-child)::after {
  width: 45px;
  height: 24px;
  color: var(--brand-olive);
  background: none;
  content: "→";
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  mask: none;
  opacity: 0.72;
}

.reviews-section {
  margin-top: 100px;
  padding-block: 0;
  background: #fff;
}

.reviews-section__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.reviews-section__title {
  width: 100%;
  font-size: 62px;
  line-height: 1.2;
}

.reviews-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 530px);
  justify-content: space-between;
  gap: 40px;
}

.reviews-section-card {
  display: flex;
  width: 530px;
  min-height: 340px;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 31px 50px;
  color: var(--brand-text);
  background: #fff;
  border: 2px solid var(--brand-soft);
  border-radius: 40px;
}

.reviews-section-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviews-section-card__quote {
  width: 31px;
  height: 25px;
  background: url("../img/review-quote-current.svg") center / contain no-repeat;
}

.reviews-section-card__stars {
  display: inline-flex;
  gap: 4px;
  color: #ad8331;
  font-size: 20px;
  line-height: 1;
}

.reviews-section-card__text {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.reviews-section-card__text p {
  margin: 0;
}

.reviews-section-card__author {
  display: flex;
  gap: 6px;
  color: var(--brand-olive);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.faq-section {
  position: relative;
  min-height: 668px;
  margin-top: 100px;
  overflow: hidden;
  background: #fff;
}

.faq-section__background {
  position: absolute;
  inset: 0;
}

body.snail-theme .faq-section__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.faq-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 384px 1039px;
  align-items: center;
  justify-content: space-between;
  min-height: 668px;
  padding-block: 50px 80px;
}

body.snail-theme .faq-section__image {
  width: 384px;
  height: 381px;
  object-fit: contain;
}

.faq-section__content {
  width: 1039px;
}

.faq-section__title {
  font-size: 62px;
  line-height: 50px;
  white-space: nowrap;
}

.faq-section__list {
  display: flex;
  width: 965px;
  flex-direction: column;
  gap: 10px;
  margin-top: 50px;
  margin-left: 74px;
}

.faq-section-item {
  overflow: hidden;
  color: var(--brand-text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--brand-olive);
  border-radius: 20px;
}

.faq-section-item summary {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 23px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  line-height: 50px;
  list-style: none;
}

.faq-section-item summary::-webkit-details-marker {
  display: none;
}

.faq-section-item__plus {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  background: url("../img/faq-plus-current.svg") center / contain no-repeat;
}

.faq-section-item[open] .faq-section-item__plus {
  transform: rotate(45deg);
}

.faq-section-item__answer {
  padding: 0 23px 22px;
  font-size: 16px;
  line-height: 1.55;
}

.footer-section {
  margin-top: 100px;
  padding-block: 0 30px;
  background: #fff;
}

.footer-section__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-section__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 236px;
}

.footer-section__brand {
  display: flex;
  width: 126px;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

body.snail-theme .footer-section__logo {
  width: 126px;
  height: 126px;
  object-fit: contain;
}

.footer-section__brand strong {
  color: var(--brand-dark);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.footer-section__brand span {
  color: var(--brand-text);
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-section__nav {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  justify-content: flex-end;
}

.footer-section-column {
  display: flex;
  width: 236px;
  flex-direction: column;
  gap: 10px;
  color: var(--brand-text);
  font-size: 14px;
  line-height: 1.25;
}

.footer-section-column h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-section-column__link span,
.footer-section-contact span {
  display: block;
}

.footer-section-contact {
  color: var(--brand-dark);
  font-size: 16px;
  line-height: 1.3;
}

.footer-section-contact:first-child {
  font-weight: 600;
}

.footer-section__bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 10px;
  border-top: 1px solid #e7dbcf;
  color: var(--brand-text);
  font-size: 14px;
  line-height: 20px;
}

.footer-section__bottom p {
  margin: 0;
}

.footer-section__links {
  display: flex;
  gap: 40px;
}

@media (min-width: 1921px) {
  .hero {
    height: 1080px;
    min-height: 1080px;
  }

  .hero__inner {
    width: min(1290px, calc(100% - 220px));
    height: 1080px;
    min-height: 1080px;
    padding-top: 224px;
  }

  body.snail-theme .hero__image {
    object-position: center center;
  }

  .landing-header {
    top: 20px;
  }

  .landing-header__inner {
    width: min(1290px, calc(100% - 220px));
  }
}

@media (max-width: 1800px) {
  .landing-header__inner,
  .hero__inner {
    width: min(100% - 96px, 1290px);
  }

  .section--benefits .landing-container,
  .section--products .landing-container,
  .mucin-section__inner,
  .routine-section__inner,
  .results-section__inner,
  .reviews-section__inner,
  .faq-section__inner,
  .footer-section__inner {
    width: min(100% - 96px, 1690px);
  }

  .landing-header__phone {
    font-size: 20px;
  }

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

  .reviews-section-card {
    width: auto;
  }

  .faq-section__inner {
    grid-template-columns: 360px minmax(0, 980px);
    gap: 64px;
  }

  .faq-section__content,
  .faq-section__list {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 1380px) {
  .landing-header__inner {
    gap: 24px;
  }

  .landing-nav {
    gap: 18px;
  }

  .landing-nav__link {
    font-size: 14px;
  }

  .landing-header__phone {
    display: none;
  }

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

  .product-card,
  .product-card__media,
  .product-card__image {
    width: 100%;
  }

  .mucin-section__points::after {
    display: none;
  }

  .faq-section__inner {
    grid-template-columns: 320px minmax(0, 1fr);
  }

  body.snail-theme .faq-section__image {
    width: 320px;
    height: auto;
  }

  .footer-section__main,
  .footer-section__nav {
    gap: 48px;
  }
}

@media (max-width: 980px) {
  .landing-header {
    top: 12px;
  }

  .landing-header__inner {
    width: min(100% - 40px, 720px);
    min-height: 72px;
  }

  .brand,
  body.snail-theme .brand__image {
    width: 72px;
    min-width: 72px;
    height: 72px;
  }

  .landing-nav,
  .landing-header__actions .button--compact {
    display: none;
  }

  .hero,
  .hero__inner {
    height: auto;
    min-height: 720px;
  }

  .hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.78) 55%, rgba(255, 255, 255, 0.16) 100%);
    pointer-events: none;
  }

  body.snail-theme .hero__image {
    object-position: 62% bottom;
  }

  .hero__inner {
    z-index: 2;
    width: min(100% - 40px, 720px);
    padding-top: 140px;
  }

  .hero__content {
    width: min(100%, 560px);
  }

  .hero .eyebrow {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1.04;
  }

  .hero__text {
    font-size: 18px;
    line-height: 1.55;
  }

  .hero__buttons {
    flex-wrap: wrap;
  }

  .hero__buttons .button,
  .hero__buttons .button--primary,
  .hero__buttons .button--ghost {
    width: min(100%, 330px);
    min-height: 58px;
    font-size: 18px;
  }

  .hero-scroll {
    bottom: 22px;
    width: 39px;
    height: 39px;
  }

  .hero-scroll__icon {
    width: 39px;
    height: 39px;
  }

  .section--benefits,
  .section--products,
  .mucin-section,
  .routine-section,
  .results-section,
  .reviews-section,
  .faq-section,
  .footer-section {
    margin-top: 64px;
  }

  .routine-section {
    min-height: 0;
    padding-block: 56px;
  }

  .section--benefits .landing-container,
  .section--products .landing-container,
  .mucin-section__inner,
  .routine-section__inner,
  .results-section__inner,
  .reviews-section__inner,
  .faq-section__inner,
  .footer-section__inner {
    width: min(100% - 40px, 720px);
  }

  .section--benefits .section-title,
  .section--products .section-title,
  .mucin-section__title,
  .routine-section__title,
  .results-section__title,
  .reviews-section__title,
  .faq-section__title {
    font-size: 42px;
    line-height: 1.08;
  }

  .benefit-grid,
  .product-grid,
  .reviews-section__grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    width: 100%;
  }

  .product-card {
    height: auto;
  }

  .product-card__media,
  .product-card__image {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .faq-section__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 56px;
  }

  .faq-section__visual {
    max-width: 280px;
  }

  body.snail-theme .faq-section__image {
    width: 280px;
  }

  .faq-section__title {
    white-space: normal;
  }

  .faq-section__list {
    margin-top: 28px;
  }

  .faq-section-item summary {
    min-height: 62px;
    font-size: 15px;
    line-height: 1.35;
  }

  .footer-section__main,
  .footer-section__nav,
  .footer-section__bottom,
  .footer-section__links {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-section__main,
  .footer-section__nav {
    gap: 28px;
  }
}

/* Final responsive and interaction polish */
.mucin-section-point__icon img,
body.snail-theme .mucin-section-point__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.js-ready [data-reveal]:not([data-reveal="ready"]) {
  opacity: 0;
  transform: translate3d(0, 44px, 0);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js-ready [data-reveal="ready"],
.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .js-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero__buttons .button,
.landing-header__actions .button--compact,
.reviews-section__dot,
.hero-scroll {
  transition-duration: 0.28s;
  transition-timing-function: ease;
}

.hero__buttons .button--primary:hover,
.hero__buttons .button--primary:focus-visible {
  color: var(--brand-olive);
  background: #fff;
  border-color: #fff;
}

.hero__buttons .button--primary:hover::after,
.hero__buttons .button--primary:focus-visible::after {
  background: var(--brand-olive);
}

.hero__buttons .button--ghost:hover,
.hero__buttons .button--ghost:focus-visible {
  color: #fff;
  background: var(--brand-olive);
  border-color: var(--brand-olive);
}

.hero__buttons .button--ghost:hover::before,
.hero__buttons .button--ghost:focus-visible::before {
  background: #fff;
}

.landing-header__actions .button--compact:hover,
.landing-header__actions .button--compact:focus-visible {
  color: var(--brand-olive);
  background: #fff;
  border-color: #fff;
}

.reviews-section-card {
  justify-content: flex-start;
}

.reviews-section__slider {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.reviews-section__grid {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  transition: transform 0.35s ease;
  user-select: none;
  will-change: transform;
}

.reviews-section__slider.is-dragging {
  cursor: grabbing;
}

.reviews-section__slider.is-dragging .reviews-section__grid {
  transition: none;
}

.reviews-section-card {
  flex: 0 0 530px;
}

.reviews-section-card__author {
  margin-top: 30px;
}

.reviews-section__pagination {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 50px;
}

.reviews-section__pagination:empty {
  display: none;
}

.reviews-section__dot {
  width: 14px;
  height: 14px;
  padding: 0;
  cursor: pointer;
  background: #efe7dc;
  border: 0;
  border-radius: 999px;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.reviews-section__dot.is-active {
  width: 30px;
  background: var(--brand-olive);
}

.faq-section__background {
  inset: 0 0 auto;
  height: 668px;
}

body.snail-theme .faq-section__background-image {
  object-position: center top;
}

.faq-section-item__plus {
  transition: transform 0.25s ease;
}

.faq-section-item__answer {
  height: 0;
  overflow: hidden;
  padding: 0;
  transition: height 0.3s ease;
}

.faq-section-item__answer-inner {
  padding: 0 23px 22px;
  font-size: 16px;
  line-height: 1.55;
}

.faq-section-item[open] .faq-section-item__plus,
.faq-section-item.is-open .faq-section-item__plus {
  transform: rotate(45deg);
}

.footer-section__main {
  align-items: flex-start;
}

.footer-section__brand {
  gap: 0;
}

.footer-section__brand strong,
.footer-section__brand span {
  display: none;
}

.footer-section__nav {
  flex: 1 1 auto;
  justify-content: space-between;
}

.footer-section-column {
  width: auto;
  min-width: 190px;
}

.footer-section-contacts {
  min-width: 260px;
}

.icon-button {
  width: 52px;
  height: 52px;
}

.icon-button svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}

@media (max-width: 1380px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .benefit-card {
    width: 100%;
    height: auto;
    min-height: 210px;
    border-radius: 36px;
  }

  .benefit-card:nth-last-child(1):nth-child(odd) {
    grid-column: 1 / -1;
  }

  .footer-section__main {
    gap: 72px;
  }

  .footer-section__nav {
    gap: 44px;
  }

  .reviews-section-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .reviews-section__grid {
    gap: 24px;
  }
}

@media (min-width: 1381px) and (max-width: 1680px) {
  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 260px));
    justify-content: center;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 400px));
    justify-content: center;
  }

  .product-card {
    width: 100%;
    height: auto;
  }

  .product-card__media {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .product-card__image {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 980px) {
  .landing-header__inner {
    min-height: 92px;
    grid-template-columns: 92px 1fr;
  }

  .brand,
  body.snail-theme .brand__image {
    width: 92px;
    min-width: 92px;
    height: 92px;
  }

  .landing-header__actions {
    justify-content: flex-end;
  }

  .landing-header__menu {
    display: grid;
    place-items: center;
  }

  .landing-header.is-menu-open .landing-nav {
    top: calc(100% + 12px);
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .benefit-card {
    min-height: 164px;
    padding: 24px 12px;
    border-radius: 26px;
  }

  .benefit-card__icon,
  body.snail-theme .benefit-card__icon {
    max-width: 52px;
    max-height: 56px;
    margin-bottom: 14px;
  }

  .benefit-card h3 {
    font-size: 15px;
    line-height: 1.2;
  }

  .mucin-section__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mucin-section__copy,
  .mucin-section__media,
  .mucin-section__points {
    grid-column: auto;
  }

  .mucin-section__title {
    max-width: 100%;
  }

  .mucin-section__text {
    margin-top: 22px;
  }

  .mucin-section__tags {
    gap: 12px;
    margin-top: 28px;
  }

  .mucin-section__tags span,
  .mucin-section__tags span:nth-child(n + 4) {
    width: calc(50% - 6px);
    min-height: 46px;
    padding: 10px 14px;
    font-size: 15px;
    white-space: normal;
  }

  .mucin-section__media,
  body.snail-theme .mucin-section__image {
    width: min(100%, 340px);
    height: auto;
    margin-inline: auto;
  }

  .mucin-section__points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 0;
  }

  .mucin-section__points::before,
  .mucin-section__points::after,
  .mucin-section-point::before,
  .mucin-section-point::after {
    display: none;
  }

  .mucin-section-point {
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 64px;
    padding: 14px;
    gap: 14px;
    background: #fffdf8;
    border: 1px solid #eee6db;
    border-radius: 22px;
  }

  .mucin-section-point__icon {
    width: 64px;
    height: 64px;
  }

  .mucin-section-point h3 {
    font-size: 16px;
    line-height: 1.28;
  }

  .routine-section {
    padding-block: 46px;
  }

  .routine-section__title {
    max-width: 100%;
    text-align: left;
  }

  .routine-section__steps {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 34px;
  }

  .routine-section-step {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
  }

  .routine-section-step__top {
    display: block;
    min-height: 0;
  }

  .routine-section-step__number {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .routine-section-step__media {
    height: 130px;
    margin-top: 10px;
    justify-content: flex-start;
  }

  body.snail-theme .routine-section-step__image,
  .routine-section-step:nth-child(1) .routine-section-step__image,
  .routine-section-step:nth-child(2) .routine-section-step__image,
  .routine-section-step:nth-child(3) .routine-section-step__image,
  .routine-section-step:nth-child(4) .routine-section-step__image {
    width: auto;
    max-width: 92px;
    height: 130px;
  }

  .routine-section-step__body {
    margin-top: 0;
    text-align: left;
  }

  .routine-section-step h3 {
    font-size: 20px;
  }

  .routine-section-step p {
    max-width: none;
    margin-inline: 0;
    font-size: 15px;
  }

  .reviews-section-card {
    flex-basis: 100%;
    min-height: 0;
    padding: 28px 24px 32px;
    border-radius: 28px;
  }

  .reviews-section-card__author {
    margin-top: 24px;
    font-size: 20px;
  }

  .reviews-section__grid {
    gap: 24px;
  }

  .reviews-section__pagination {
    margin-top: 30px;
  }

  .faq-section__inner {
    align-items: start;
  }

  .faq-section__content,
  .faq-section__list {
    width: 100%;
  }

  .faq-section-item__answer-inner {
    padding: 0 23px 18px;
  }

  .footer-section__main,
  .footer-section__nav {
    width: 100%;
  }

  .footer-section__main {
    gap: 34px;
  }

  .footer-section__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 22px;
  }

  .footer-section-column,
  .footer-section-contacts {
    width: auto;
    min-width: 0;
  }

  .footer-section-contacts {
    grid-column: 1 / -1;
  }

  body.snail-theme .footer-section__logo {
    width: 112px;
    height: 112px;
  }
}

@media (max-width: 560px) {
  .landing-header__inner {
    width: min(100% - 28px, 420px);
  }

  .brand,
  body.snail-theme .brand__image {
    width: 86px;
    min-width: 86px;
    height: 86px;
  }

  .benefit-grid {
    gap: 10px;
  }

  .benefit-card {
    min-height: 150px;
    padding: 20px 10px;
    border-radius: 22px;
  }

  .benefit-card h3 {
    font-size: 14px;
  }

  .mucin-section__tags span,
  .mucin-section__tags span:nth-child(n + 4) {
    width: 100%;
  }

  .footer-section__nav {
    grid-template-columns: 1fr;
  }

  .footer-section-contacts {
    grid-column: auto;
  }
}

/* Final layout QA locks */
.hero__buttons .button,
.hero__buttons .button--primary,
.hero__buttons .button--ghost {
  transition: color 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.hero__buttons .button--primary:hover,
.hero__buttons .button--primary:focus-visible {
  color: var(--brand-olive);
  background: #fff;
  border-color: #fff;
}

.hero__buttons .button--primary:hover::after,
.hero__buttons .button--primary:focus-visible::after {
  background: var(--brand-olive);
}

.hero__buttons .button--ghost:hover,
.hero__buttons .button--ghost:focus-visible {
  color: #fff;
  background: var(--brand-olive);
  border-color: var(--brand-olive);
}

.hero__buttons .button--ghost:hover::before,
.hero__buttons .button--ghost:focus-visible::before {
  background: #fff;
}

.footer-section.landing-footer {
  margin-top: 0;
  padding-block: 0 28px;
  background: #fff;
  border-top: 0;
}

.footer-section__inner {
  gap: 28px;
  padding-top: 36px;
}

.footer-section__bottom {
  padding-top: 18px;
}

.benefit-card__icon,
body.snail-theme .benefit-card__icon {
  width: 70px;
  height: 70px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 980px) {
  .hero__inner {
    width: min(100% - 40px, 390px);
    padding-top: 126px;
  }

  .hero__content {
    width: 100%;
    max-width: 367px;
    margin-inline: auto;
  }

  .hero .eyebrow {
    width: 100%;
  }

  .hero__buttons {
    align-items: center;
  }

  .benefit-card__icon,
  body.snail-theme .benefit-card__icon {
    width: 64px;
    height: 64px;
  }

  .footer-section.landing-footer {
    margin-top: 0;
    padding-bottom: 24px;
  }

  .footer-section__inner {
    padding-top: 30px;
  }
}

@media (max-width: 560px) {
  .hero__inner {
    width: min(100% - 32px, 374px);
  }

  .hero__content {
    max-width: 352px;
  }

  .hero__buttons .button,
  .hero__buttons .button--primary,
  .hero__buttons .button--ghost {
    width: min(100%, 324px);
  }

  .benefit-card__icon,
  body.snail-theme .benefit-card__icon {
    width: 58px;
    height: 58px;
  }
}

/* Mobile overflow and composition fixes */
html,
body.snail-theme,
.site-shell {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 980px) {
  .landing-header__inner,
  .hero__inner,
  .section--benefits .landing-container,
  .section--products .landing-container,
  .mucin-section__inner,
  .routine-section__inner,
  .results-section__inner,
  .reviews-section__inner,
  .faq-section__inner,
  .footer-section__inner {
    width: calc(100% - 32px);
    max-width: 390px;
  }

  .landing-header__inner {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .landing-header__actions {
    display: flex;
    min-width: 0;
    justify-content: flex-end;
  }

  .landing-header__menu {
    display: grid;
  }

  .hero,
  .hero__inner {
    min-height: 820px;
  }

  .hero__inner {
    padding-top: 126px;
  }

  .hero__content {
    width: 100%;
    max-width: 326px;
    margin-inline: auto;
  }

  .hero .eyebrow {
    width: 100%;
    min-height: 0;
    padding: 10px 16px;
    font-size: 14px;
    line-height: 1.35;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 42px;
    line-height: 1.12;
  }

  .hero__text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero__buttons {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .hero__buttons .button,
  .hero__buttons .button--primary,
  .hero__buttons .button--ghost {
    width: 100%;
    max-width: 326px;
    min-height: 58px;
    margin-inline: auto;
    font-size: 17px;
  }

  .section--benefits .section-title,
  .section--products .section-title,
  .mucin-section__title,
  .routine-section__title,
  .results-section__title,
  .reviews-section__title,
  .faq-section__title {
    max-width: 340px;
    margin-inline: auto;
    font-size: 36px;
    line-height: 1.16;
    text-align: center;
  }

  .benefit-grid {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .landing-header__inner,
  .hero__inner,
  .section--benefits .landing-container,
  .section--products .landing-container,
  .mucin-section__inner,
  .routine-section__inner,
  .results-section__inner,
  .reviews-section__inner,
  .faq-section__inner,
  .footer-section__inner {
    width: calc(100% - 28px);
  }

  .hero__content {
    max-width: 320px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .section--benefits .section-title,
  .section--products .section-title,
  .mucin-section__title,
  .routine-section__title,
  .results-section__title,
  .reviews-section__title,
  .faq-section__title {
    max-width: 320px;
    font-size: 34px;
  }
}

/* Tablet layout: wider than phones, tighter than desktop */
@media (min-width: 561px) and (max-width: 980px) {
  .landing-header__inner,
  .hero__inner,
  .section--benefits .landing-container,
  .section--products .landing-container,
  .mucin-section__inner,
  .routine-section__inner,
  .results-section__inner,
  .reviews-section__inner,
  .faq-section__inner,
  .footer-section__inner {
    width: calc(100% - 56px);
    max-width: 820px;
  }

  .landing-header__inner {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 92px;
  }

  .hero,
  .hero__inner {
    min-height: 820px;
  }

  .hero__inner {
    padding-top: 150px;
  }

  .hero__content {
    max-width: 610px;
    margin-inline: 0;
  }

  .hero .eyebrow {
    width: min(100%, 500px);
    font-size: 15px;
  }

  .hero h1 {
    max-width: 610px;
    font-size: 56px;
    line-height: 1.08;
  }

  .hero__text {
    max-width: 560px;
    font-size: 18px;
    line-height: 1.55;
  }

  .hero__buttons {
    width: auto;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
  }

  .hero__buttons .button,
  .hero__buttons .button--primary,
  .hero__buttons .button--ghost {
    width: auto;
    min-height: 62px;
    margin-inline: 0;
    font-size: 19px;
  }

  .hero__buttons .button--primary {
    min-width: 300px;
  }

  .hero__buttons .button--ghost {
    min-width: 280px;
  }

  .section--benefits,
  .section--products,
  .mucin-section,
  .routine-section,
  .results-section,
  .reviews-section,
  .faq-section,
  .footer-section {
    margin-top: 72px;
  }

  .section--benefits .section-title,
  .section--products .section-title,
  .mucin-section__title,
  .routine-section__title,
  .results-section__title,
  .reviews-section__title,
  .faq-section__title {
    max-width: 720px;
    font-size: 46px;
    line-height: 1.12;
  }

  .benefit-grid,
  .product-grid,
  .routine-section__steps,
  .results-section__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card {
    min-height: 190px;
    padding: 28px 18px;
  }

  .product-card {
    min-height: 0;
  }

  .mucin-section__inner {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 36px;
  }

  .mucin-section__copy {
    grid-column: auto;
  }

  .mucin-section__media {
    grid-column: auto;
    width: 300px;
  }

  body.snail-theme .mucin-section__image {
    width: 300px;
  }

  .mucin-section__points {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .routine-section__steps {
    gap: 34px 28px;
  }

  .routine-section-step {
    grid-template-columns: 92px minmax(0, 1fr);
  }

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

  .results-section-photo,
  body.snail-theme .results-section-photo__image {
    width: 100%;
  }

  .faq-section__inner {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 34px;
  }

  .faq-section__visual,
  body.snail-theme .faq-section__image {
    width: 240px;
    max-width: 240px;
  }

  .footer-section__main,
  .footer-section__nav {
    gap: 34px;
  }

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

@media (min-width: 561px) and (max-width: 860px) {
  .hero__content {
    max-width: 560px;
  }

  .hero .eyebrow {
    width: min(100%, 500px);
  }

  .hero h1 {
    max-width: 560px;
    font-size: 50px;
    line-height: 1.1;
  }

  .hero__text {
    max-width: 520px;
  }

  .hero__buttons {
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .hero__buttons .button--primary {
    min-width: 280px;
  }

  .hero__buttons .button--ghost {
    min-width: 260px;
  }
}

@media (min-width: 561px) and (max-width: 680px) {
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }

  .product-card {
    width: min(100%, 400px);
    max-width: 400px;
  }

  .product-card__body {
    min-height: 260px;
    padding-right: 96px;
  }

  .product-card__meta {
    width: auto;
    max-width: 190px;
  }

}

@media (max-width: 980px) {
  .mucin-section__copy .landing-eyebrow {
    display: block;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }
}

.text-section {
  margin-top: 100px;
  padding-top: 0;
  background: #fff;
}

.text-section__inner {
  position: relative;
  width: min(100% - 220px, 1690px);
  max-width: 1690px;
  margin-inline: auto;
  padding-block: 76px;
  border-top: 1px solid rgba(231, 219, 207, 0.9);
  border-bottom: 1px solid rgba(231, 219, 207, 0.9);
}

.text-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 980px);
  gap: 80px;
  align-items: start;
}

.text-section__layout.has-side-list {
  grid-template-columns: minmax(0, 980px) minmax(360px, 430px);
  justify-content: space-between;
}

.text-section__main {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.text-section__head {
  display: block;
  max-width: 920px;
}

.text-section__title {
  max-width: 860px;
  margin: 0;
  color: var(--brand-dark);
  font-size: 62px;
  line-height: 1.08;
}

.text-section__lead {
  max-width: 900px;
  margin-top: 26px;
  color: var(--brand-text);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.55;
}

.text-section__lead p {
  margin: 0;
}

.text-section__content {
  display: grid;
  gap: 18px;
  max-width: 930px;
  margin-top: 48px;
}

.text-section__content p,
.text-section-list li,
.text-section__note {
  margin: 0;
  color: var(--brand-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

.text-section strong {
  color: var(--brand-dark);
  font-weight: 700;
}

.text-section em {
  font-style: italic;
}

.text-section a {
  color: var(--brand-olive);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-section-list {
  align-self: start;
  padding: 34px 36px;
  background: #fbf8f3;
  border: 1px solid #e7dbcf;
  border-radius: 28px;
}

.text-section-list h3 {
  margin: 0 0 22px;
  color: var(--brand-dark);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.12;
}

.text-section-list ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.text-section-list li {
  position: relative;
  padding-left: 28px;
}

.text-section-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--brand-olive);
  border-radius: 50%;
  transform: translateY(-50%);
}

.text-section__note {
  max-width: 900px;
  margin-top: 34px;
  color: rgba(88, 81, 67, 0.72);
  font-size: 15px;
}

@media (max-width: 1380px) {
  .text-section__inner {
    width: min(100% - 96px, 1690px);
  }

  .text-section__layout,
  .text-section__layout.has-side-list {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
    gap: 56px;
  }
}

@media (max-width: 980px) {
  .text-section {
    margin-top: 64px;
  }

  .text-section__inner {
    width: min(100% - 40px, 720px);
    padding-block: 54px;
  }

  .text-section__layout,
  .text-section__layout.has-side-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .text-section__title {
    font-size: 42px;
    line-height: 1.08;
  }

  .text-section__lead {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.6;
  }

  .text-section__content {
    margin-top: 30px;
  }
}

@media (max-width: 680px) {
  .text-section__inner {
    width: calc(100% - 32px);
    max-width: 390px;
    padding-block: 44px;
  }

  .text-section__title {
    font-size: 34px;
  }

  .text-section__content p,
  .text-section-list li {
    font-size: 16px;
    line-height: 1.65;
  }

  .text-section-list {
    padding: 26px 24px;
    border-radius: 24px;
  }

  .text-section-list h3 {
    font-size: 28px;
  }
}

.video-section {
  margin-top: 100px;
  background: #fff;
}

.video-section__inner {
  width: min(100% - 220px, 1690px);
  max-width: 1690px;
  margin-inline: auto;
}

.video-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 72px;
  align-items: end;
  margin-bottom: 46px;
}

.video-section__title {
  max-width: 900px;
  color: var(--brand-dark);
  font-size: 62px;
  line-height: 1.08;
}

.video-section__subtitle {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--brand-text);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.55;
}

.video-section__text {
  color: var(--brand-text);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.65;
}

.video-section__text p {
  margin: 0;
}

.video-section__slider {
  position: relative;
}

.video-section__viewport {
  overflow: hidden;
  margin-inline: -18px;
  padding: 8px 18px 18px;
}

.video-section__track {
  display: flex;
  gap: 28px;
  touch-action: pan-y;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.video-section__slider.is-dragging {
  cursor: grabbing;
}

.video-section__slider.is-dragging .video-section__track {
  transition: none;
}

.video-section__slider.is-static .video-section__controls {
  display: none;
}

.video-card {
  flex: 0 0 min(360px, calc((100vw - 220px - 84px) / 4));
  min-width: 280px;
}

.video-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #f5eee7;
  border: 1px solid #eaded1;
  border-radius: 36px;
  box-shadow: 0 24px 60px rgba(63, 57, 47, 0.11);
}

.video-card__button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #f5eee7;
  border: 0;
  cursor: pointer;
}

.video-card__video,
.video-card__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__video {
  pointer-events: none;
}

.video-card__button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(38, 34, 28, 0.02), rgba(38, 34, 28, 0.34));
  opacity: 0.88;
  transition: opacity 0.22s ease;
}

.video-card__button:hover::after,
.video-card__button:focus-visible::after {
  opacity: 0.66;
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(63, 57, 47, 0.2);
  transform: translate(-50%, -50%);
  transition: background-color 0.22s ease, transform 0.22s ease;
}

.video-card__play::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  content: "";
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid var(--brand-olive);
}

.video-card__button:hover .video-card__play,
.video-card__button:focus-visible .video-card__play {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.06);
}

.video-card__label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 16px;
  color: #fff;
  background: rgba(111, 123, 79, 0.9);
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.video-card__caption {
  margin-top: 18px;
  padding-inline: 4px;
}

.video-card__caption h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.video-card__caption p {
  margin: 8px 0 0;
  color: rgba(88, 81, 67, 0.78);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.video-section__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.video-section__arrow {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  padding: 0;
  color: var(--brand-olive);
  background: #fffdf8;
  border: 1px solid var(--brand-olive);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.video-section__arrow span {
  width: 16px;
  height: 16px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateX(3px) rotate(45deg);
}

.video-section__arrow--next span {
  transform: translateX(-3px) rotate(-135deg);
}

.video-section__arrow:hover,
.video-section__arrow:focus-visible {
  color: #fff;
  background: var(--brand-olive);
  transform: translateY(-2px);
}

.video-section__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 120px;
}

.video-section__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: #e1d7c9;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: width 0.22s ease, background-color 0.22s ease;
}

.video-section__dot.is-active {
  width: 24px;
  background: var(--brand-olive);
  border-radius: 99px;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(28, 25, 21, 0.72);
  backdrop-filter: blur(14px);
}

.video-lightbox[hidden] {
  display: none;
}

.is-video-lightbox-open {
  overflow: hidden;
}

.video-lightbox__dialog {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100vh - 64px);
}

.video-lightbox__frame {
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #15130f;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 32px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.35);
}

.video-lightbox__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #15130f;
}

.video-lightbox__close {
  position: absolute;
  top: -18px;
  right: -18px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  color: var(--brand-dark);
  background: #fffdf8;
  border: 1px solid #e7dbcf;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.video-lightbox__close::before,
.video-lightbox__close::after {
  position: absolute;
  width: 18px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 2px;
}

.video-lightbox__close::before {
  transform: rotate(45deg);
}

.video-lightbox__close::after {
  transform: rotate(-45deg);
}

@media (max-width: 1380px) {
  .video-section__inner {
    width: min(100% - 96px, 1690px);
  }

  .video-section__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .video-section__text {
    max-width: 860px;
  }

  .video-card {
    flex-basis: min(340px, calc((100vw - 96px - 56px) / 3));
  }
}

@media (max-width: 980px) {
  .video-section__inner {
    width: min(100% - 40px, 720px);
  }

  .video-section {
    margin-top: 72px;
  }

  .video-section__title {
    font-size: 42px;
  }

  .video-section__text {
    font-size: 17px;
  }

  .video-section__subtitle {
    font-size: 18px;
    line-height: 1.55;
  }

  .video-card {
    flex-basis: min(320px, 74vw);
  }
}

@media (max-width: 680px) {
  .video-section__inner {
    width: calc(100% - 32px);
    max-width: 390px;
  }

  .video-section__head {
    margin-bottom: 30px;
  }

  .video-section__title {
    font-size: 34px;
  }

  .video-section__subtitle {
    margin-top: 12px;
    font-size: 16px;
  }

  .video-section__viewport {
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .video-section__track {
    gap: 16px;
  }

  .video-card {
    flex-basis: min(285px, 78vw);
    min-width: 0;
  }

  .video-card__media {
    border-radius: 28px;
  }

  .video-section__arrow {
    width: 48px;
    height: 48px;
  }

  .video-card__play {
    width: 64px;
    height: 64px;
  }

  .video-lightbox {
    padding: 20px;
  }

  .video-lightbox__dialog {
    width: min(100%, 390px);
    max-height: calc(100vh - 40px);
  }

  .video-lightbox__close {
    top: 12px;
    right: 12px;
    z-index: 2;
  }
}

/* Final product-card safety: keep cart button out of copy on narrow cards. */
.product-card p {
  max-width: calc(100% - 96px);
}

.product-card__meta {
  max-width: calc(100% - 96px);
}

.mucin-section-point__icon {
  --mucin-point-image-height: 42px;
  flex: 0 0 80px;
}

.mucin-section-point__icon img,
body.snail-theme .mucin-section-point__icon img {
  width: var(--mucin-point-image-height);
  height: var(--mucin-point-image-height);
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 980px) {
  .mucin-section-point__icon {
    flex-basis: 64px;
  }
}

/* Product detail pages and marketplace actions */
.section--products .product-grid {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: stretch;
  gap: 36px;
  margin-left: 0;
}

.section--products .product-card {
  width: 100%;
  height: auto;
  min-height: 0;
}

.section--products .product-card__media {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  margin: 0;
}

.section--products .product-card__image {
  width: 100%;
  height: 100%;
}

.section--products .product-card__body {
  height: auto;
  min-height: 352px;
  padding: 28px 32px 34px;
}

.product-card__title-link {
  transition: color 0.22s ease;
}

.product-card__title-link:hover,
.product-card__title-link:focus-visible {
  color: var(--brand-olive);
}

.product-card__status,
.product-page__status {
  display: inline-flex;
  width: max-content;
  align-items: center;
  min-height: 34px;
  margin-top: 16px;
  padding: 0 18px;
  color: var(--brand-olive);
  background: #faf5ef;
  border: 1px solid #e7dbcf;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.product-card p,
.product-card__meta {
  max-width: none;
}

.product-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.market-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  color: #fff;
  border: 0;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

body.snail-theme .market-button,
body.snail-theme .market-button:hover,
body.snail-theme .market-button:focus-visible {
  color: #fff;
}

.market-button:hover,
.market-button:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 14px 28px rgba(63, 57, 47, 0.16);
}

.market-button--ozon {
  background: #005bff;
}

.market-button--wb {
  background: #e313bf;
}

.market-button__text {
  flex: 0 0 auto;
}

.market-button__logo {
  display: block;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.market-button__logo--ozon {
  width: 76px;
  height: 17px;
  -webkit-mask-image: url("../img/market-ozon.svg");
  mask-image: url("../img/market-ozon.svg");
}

.market-button__logo--wb {
  width: 106px;
  height: 16px;
  -webkit-mask-image: url("../img/market-wb.svg");
  mask-image: url("../img/market-wb.svg");
}

.product-card .market-button {
  min-height: 48px;
  gap: 6px;
  padding: 0 12px;
  font-size: 14px;
}

.product-card .market-button__logo--ozon {
  width: 56px;
  height: 13px;
}

.product-card .market-button__logo--wb {
  width: 78px;
  height: 12px;
}

.product-page {
  padding: 170px 0 100px;
  background: #fff;
}

.product-page__inner {
  width: min(100% - 220px, 1690px);
  margin-inline: auto;
}

.product-page__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: var(--brand-olive);
  font-size: 16px;
  font-weight: 700;
}

.product-page__back::before {
  content: "←";
  font-size: 22px;
  line-height: 1;
}

.product-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(0, 1fr);
  gap: 86px;
  align-items: start;
}

.product-gallery__main {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--brand-soft);
  border: 2px solid var(--brand-soft);
  border-radius: 40px;
}

.product-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.product-gallery__thumb {
  overflow: hidden;
  aspect-ratio: 1;
  padding: 0;
  background: var(--brand-soft);
  border: 1px solid #e7dbcf;
  border-radius: 18px;
  cursor: pointer;
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.product-gallery__thumb:hover,
.product-gallery__thumb:focus-visible,
.product-gallery__thumb.is-active {
  border-color: var(--brand-olive);
}

.product-gallery__thumb:hover,
.product-gallery__thumb:focus-visible {
  transform: translateY(-2px);
}

.product-gallery__thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-page__content {
  padding-top: 16px;
}

.product-page__status {
  margin: 0 0 26px;
}

.product-page__title {
  max-width: 760px;
  margin: 0;
  color: var(--brand-dark);
  font-family: var(--font-display);
  font-size: 74px;
  font-weight: 700;
  line-height: 1.02;
}

.product-page__lead {
  max-width: 680px;
  margin-top: 28px;
  color: var(--brand-text);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.55;
}

.product-page__meta {
  display: inline-flex;
  align-items: baseline;
  gap: 34px;
  margin-top: 34px;
  color: #afaaa6;
  font-size: 20px;
  font-weight: 600;
}

.product-page__meta strong {
  color: var(--brand-text);
  font-size: 32px;
  font-weight: 700;
  white-space: nowrap;
}

.product-page__description {
  max-width: 720px;
  margin-top: 38px;
  color: var(--brand-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
}

.product-page__description p {
  margin: 0 0 18px;
}

.product-page__description strong {
  color: var(--brand-dark);
  font-weight: 700;
}

.product-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.product-page__actions .market-button {
  min-width: 220px;
}

@media (max-width: 1500px) {
  .section--products .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section--products .product-card__body {
    min-height: 340px;
  }

  .product-page__inner {
    width: min(100% - 96px, 1690px);
  }

  .product-page__grid {
    grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
    gap: 56px;
  }

  .product-page__title {
    font-size: 62px;
  }
}

@media (max-width: 1100px) {
  .section--products .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-page {
    padding-top: 130px;
  }

  .product-page__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-gallery {
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  .section--products .product-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .section--products .product-card {
    width: min(100%, 400px);
    max-width: 400px;
  }

  .section--products .product-card__body {
    min-height: 330px;
    padding: 24px 24px 28px;
  }

  .product-card__actions {
    grid-template-columns: 1fr;
  }

  .product-card .market-button {
    min-height: 50px;
    font-size: 15px;
  }

  .product-card .market-button__logo--ozon {
    width: 68px;
    height: 15px;
  }

  .product-card .market-button__logo--wb {
    width: 94px;
    height: 14px;
  }

  .product-page {
    padding: 112px 0 64px;
  }

  .product-page__inner {
    width: calc(100% - 32px);
    max-width: 390px;
  }

  .product-page__back {
    margin-bottom: 24px;
  }

  .product-page__title {
    font-size: 42px;
    line-height: 1.08;
  }

  .product-page__lead {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.6;
  }

  .product-page__meta {
    margin-top: 24px;
    font-size: 18px;
  }

  .product-page__meta strong {
    font-size: 26px;
  }

  .product-page__description {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.7;
  }

  .product-gallery__main {
    border-radius: 28px;
  }

  .product-gallery__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .product-gallery__thumb {
    border-radius: 14px;
  }

  .product-page__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .landing-header {
    z-index: 80;
  }

  .landing-header__inner {
    position: relative;
  }

  .landing-header__menu.icon-button {
    position: relative;
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    place-items: center;
    padding: 0;
    line-height: 1;
  }

  .landing-header__menu .icon-button__open,
  .landing-header__menu .icon-button__close {
    position: absolute;
    inset: 0;
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    line-height: 0;
  }

  .landing-header__menu .icon-button__close,
  .landing-header__menu .icon-button__open svg,
  .landing-header__menu .icon-button__close svg {
    display: none;
  }

  .landing-header__menu .icon-button__open::before {
    width: 24px;
    height: 2px;
    content: "";
    background: currentColor;
    border-radius: 999px;
    box-shadow: 0 -8px 0 currentColor, 0 8px 0 currentColor;
  }

  .landing-header__menu .icon-button__close::before,
  .landing-header__menu .icon-button__close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    content: "";
    background: currentColor;
    border-radius: 999px;
  }

  .landing-header__menu .icon-button__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .landing-header__menu .icon-button__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .landing-header.is-menu-open .icon-button__open {
    display: none;
  }

  .landing-header.is-menu-open .icon-button__close {
    display: grid;
  }

  .landing-header .landing-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    z-index: 81;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    padding: 14px;
    background: rgba(255, 253, 248, 0.97);
    border: 1px solid rgba(231, 219, 207, 0.95);
    border-radius: 24px;
    box-shadow: 0 22px 50px rgba(63, 57, 47, 0.14);
    backdrop-filter: blur(16px);
  }

  .landing-header.is-menu-open .landing-nav {
    display: flex;
  }

  .landing-header .landing-nav__link {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    color: var(--brand-text);
    font-size: 16px;
    font-weight: 600;
    border-radius: 16px;
  }

  .landing-header .landing-nav__link:hover,
  .landing-header .landing-nav__link:focus-visible {
    color: var(--brand-olive);
    background: #f5eee7;
  }
}
