﻿:root {
  --app-width: 100%;
  --bg: #ffffff;
  --ink: #1f1f24;
  --muted: #55525a;
  --accent: #9b007d;
  --accent-2: #f6d9df;
  --dark: #2b292b;
  --line: rgba(0, 0, 0, 0.12);
  --shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

main,
section,
header,
footer {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
iframe,
canvas {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1240px, calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  max-width: 100%;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  min-width: 0;
  max-width: calc(100% - 96px);
}

.brand__mark {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent), #d65b9a);
  color: #fff;
}

.brand__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: flex;
  min-width: 0;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover {
  color: var(--ink);
  border-color: var(--accent);
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(100deg, rgba(16, 12, 15, 0.72) 0%, rgba(16, 12, 15, 0.56) 38%, rgba(16, 12, 15, 0.12) 78%),
    linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent 48%),
    url("./img/hero.jpg") center / cover no-repeat,
    linear-gradient(120deg, #453038 0%, #151315 45%, #665a5a 100%);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 30%, rgba(255, 255, 255, 0.1) 30% 31%, transparent 31% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 96px);
  opacity: 0.72;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent 44%);
  opacity: 1;
}

.hero__content {
  position: relative;
  max-width: 100%;
  text-align: center;
  padding: 72px 0 54px;
}

.hero h1 {
  margin: 0 0 26px;
  font-size: 8.75rem;
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 900;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero__lead {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.45rem;
  line-height: 1.45;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero__intro {
  max-width: 980px;
  margin: 42px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero__intro p {
  margin: 0;
}

.hero__intro p + p {
  margin-top: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.section {
  padding: 74px 0;
}

.section--white {
  background: #fff;
}

.section--blush {
  background: linear-gradient(180deg, #fbe7ea 0%, #f7d7de 100%);
}

.section--dark {
  background: var(--dark);
  color: #fff;
}

.section-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.section-title span {
  position: relative;
  min-width: min(620px, 82vw);
  padding: 13px 28px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  box-shadow: none;
}

.section-title--dark span {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 34px;
  align-items: center;
}

.about__image,
.feature-card__media,
.info-card__media {
  border-radius: 4px;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.about__image--hero {
  background-image:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.45), transparent 18%),
    linear-gradient(135deg, #20131b 0%, #7a4a61 42%, #f0d5d8 100%);
}

.about__text h2,
.stores__copy h2,
.loyalty__copy h2,
.contacts__card h2 {
  margin: 0 0 18px;
  font-size: 2.45rem;
}

.about__text p,
.feature-card p,
.info-card p,
.stores__copy,
.loyalty__copy,
.contacts__card {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.about__text p + p {
  margin-top: 12px;
}

.feature-grid {
  display: grid;
  gap: 0;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 42px 0;
}

.feature-card--reverse .feature-card__media {
  order: 2;
}

.feature-card__media--bra {
  background-image: url("./img/assortment-bra.jpg");
  background-position: center top;
}

.feature-card__media--home {
  background-image: url("./img/assortment-home-v2.jpg");
  background-position: center;
}

.feature-card__media--beach {
  background-image: url("./img/assortment-beach-v2.jpg");
  background-position: center;
}

.feature-card__body h3,
.info-card h3 {
  margin: 0 0 14px;
  font-size: 1.85rem;
  color: var(--ink);
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.info-card h3 {
  font-size: clamp(1.18rem, 1.32vw, 1.55rem);
  line-height: 1.24;
  letter-spacing: -0.03em;
}

.feature-card__body,
.stores__copy,
.info-card,
.loyalty__copy,
.loyalty__card,
.contacts__card {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.stores {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
}

.stores__photo {
  min-height: 320px;
  margin-bottom: 30px;
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(31, 31, 36, 0.5), rgba(31, 31, 36, 0.08)),
    url("./img/stores.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

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

.store-list li {
  padding: 18px 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  background: #fff;
}

.store-list strong,
.store-list span,
.store-list em {
  display: block;
}

.store-list strong {
  font-size: 16px;
  color: var(--ink);
}

.store-list em {
  margin-top: 8px;
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
}

.stores__map {
  position: relative;
  min-height: 100%;
  max-width: 100%;
  overflow: hidden;
}

.stores__interactive-map {
  display: none;
  width: 100%;
  height: 520px;
  border-radius: 4px;
  overflow: hidden;
  background: #efe9c8;
  box-shadow: var(--shadow);
}

.stores__map.is-interactive .stores__interactive-map {
  display: block;
}

.stores__map.is-interactive iframe {
  display: none;
}

.stores__map iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  height: 520px;
  border: 0;
  border-radius: 4px;
  background: #efe9c8;
  box-shadow: var(--shadow);
}

.stores__map-info {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 6px;
  width: min(340px, calc(100% - 36px));
  padding: 18px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(42, 25, 33, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.stores__map-info strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.stores__map-info span {
  color: var(--muted);
  line-height: 1.45;
}

.stores__map-info em {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}

.map-fallback {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: inherit;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.marketplaces__gallery {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.marketplaces__gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.marketplaces__logos {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.marketplace-pill {
  min-width: 220px;
  min-height: 86px;
  padding: 14px 24px;
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}

.marketplace-pill img {
  display: block;
  width: auto;
  max-width: 170px;
  max-height: 56px;
}

.marketplaces__note {
  text-align: center;
  color: var(--muted);
  font-size: 18px;
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.production-video {
  margin-top: 28px;
  border-radius: 4px;
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
}

.production-video__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.info-card {
  background: #fff;
  border-radius: 4px;
  padding: 18px;
  box-shadow: var(--shadow);
  max-width: 100%;
  overflow: hidden;
}

.info-card__media {
  min-height: 220px;
  margin-bottom: 18px;
  width: 100%;
}

.info-card__media--factory {
  background-image: url("./img/2.jpg");
}

.info-card__media--seam {
  background-image: url("./img/1.jpg");
}

.info-card__media--warehouse {
  background-image: url("./img/3.jpg");
}

.loyalty__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.loyalty__copy {
  color: rgba(255, 255, 255, 0.88);
}

.loyalty__copy h2 {
  color: #fff;
}

.benefits {
  margin: 20px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
  line-height: 1.7;
}

.benefits li {
  color: rgba(255, 255, 255, 0.82);
}

.loyalty__card {
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px;
  display: grid;
  align-content: start;
  gap: 16px;
  overflow: hidden;
}

.loyalty__card img {
  display: block;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.contacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contacts__card {
  padding: 26px;
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contacts__card--soft {
  background: linear-gradient(180deg, #fff7f8, #fff);
}

.contacts a {
  color: var(--accent);
  font-weight: 700;
}

.section-anchor {
  scroll-margin-top: 92px;
}

.page .topbar {
  display: none;
}

.page .hero--main {
  min-height: 100vh;
  align-items: center;
  background:
    linear-gradient(to bottom, rgba(15, 15, 16, 0.18) 0%, rgba(15, 15, 16, 0.34) 38%, rgba(15, 15, 16, 0.86) 100%),
    linear-gradient(90deg, rgba(15, 15, 16, 0.24), rgba(15, 15, 16, 0.08) 50%, rgba(15, 15, 16, 0.32)),
    url("./img/hero-v2.jpg") center / cover no-repeat;
}

.page .hero--main::before {
  display: none;
}

.page .hero--main .hero__overlay {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(to top, rgba(0, 0, 0, 0.46), transparent 42%);
}

.page .hero--main .hero__content {
  max-width: min(1040px, calc(100% - 32px));
  padding: 128px 0 96px;
}

.page .hero--main h1 {
  margin-bottom: 26px;
  font-size: clamp(4rem, 10vw, 8.7rem);
  line-height: 0.85;
  letter-spacing: 0.06em;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.42);
}

.page .hero--main .hero__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 64px;
  margin: 34px auto 0;
}

.page .hero--main .btn {
  min-height: 34px;
  padding: 0 24px;
  font-size: 14px;
  letter-spacing: 0.18em;
  background: var(--accent);
  border: 0;
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.page .hero--main .hero__lead {
  max-width: 860px;
  font-size: 1.45rem;
  line-height: 1.45;
  letter-spacing: 0;
  text-shadow: none;
}

.page .hero--main .hero__intro {
  max-width: 980px;
  margin-top: 42px;
  font-size: 1.12rem;
  line-height: 1.75;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: none;
}

.page .hero--main .hero__intro p + p {
  margin-top: 14px;
}

@media (max-width: 1080px) {
  .feature-card,
  .stores,
  .loyalty__grid,
  .about,
  .production-grid,
  .contacts {
    grid-template-columns: 1fr;
  }

  .feature-card--reverse .feature-card__media {
    order: 0;
  }

  .marketplaces__gallery {
    margin-inline: auto;
  }

  .hero h1 {
    font-size: 5.5rem;
  }

  .about__text h2,
  .stores__copy h2,
  .loyalty__copy h2,
  .contacts__card h2 {
    font-size: 2rem;
  }
}

@media (max-width: 920px) {
  .topbar__inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .brand__name {
    font-size: 14px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    background: #fff;
    font: inherit;
    font-weight: 700;
  }

  .nav {
    width: 100%;
    display: none;
    padding-top: 8px;
    gap: 8px 14px;
    font-size: 12px;
  }

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

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 56px 0 54px;
  }

  .hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.42;
  }

  .hero__intro {
    margin-top: 30px;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .page .hero--main .hero__content {
    padding: 94px 0 72px;
  }

  .page .hero--main .hero__actions {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 340px;
    margin-bottom: 34px;
  }

  .page .hero--main .btn {
    min-height: 42px;
  }
}

@media (max-width: 760px) {
  html,
  body,
  main,
  section,
  header,
  footer {
    width: var(--app-width);
    max-width: var(--app-width);
  }

  .container {
    width: calc(var(--app-width) - 24px);
    max-width: calc(var(--app-width) - 24px);
  }

  .topbar .nav {
    flex-basis: 100%;
  }

  .brand__mark {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .brand__name {
    font-size: 13px;
  }

  .nav {
    padding-top: 10px;
  }

  .hero {
    width: var(--app-width);
    max-width: var(--app-width);
    min-height: auto;
  }

  .hero__content {
    width: 100%;
    max-width: calc(var(--app-width) - 24px);
    padding: 58px 0 56px;
  }

  .page .hero--main {
    min-height: 100svh;
    background-position: 64% center;
  }

  .page .hero--main .hero__content {
    max-width: calc(var(--app-width) - 24px);
    padding: 70px 0 58px;
  }

  .page .hero--main h1 {
    margin-bottom: 34px;
    font-size: clamp(2.1rem, 12vw, 3.9rem);
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }

  .page .hero--main .hero__actions {
    max-width: 280px;
    margin-top: 28px;
  }

  .page .hero--main .btn {
    width: 100%;
    min-height: 40px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .page .hero--main .hero__lead {
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .page .hero--main .hero__intro {
    margin-top: 34px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero h1 {
    font-size: 2.35rem;
    margin-bottom: 22px;
  }

  .hero__lead {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .hero__actions {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .hero__actions .btn:last-child {
    justify-self: stretch;
    width: 100%;
    min-width: 0;
  }

  .btn {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 44px;
    padding: 0 12px;
    font-size: 11px;
    white-space: normal;
    text-align: center;
  }

  .hero__intro {
    font-size: 0.98rem;
    line-height: 1.62;
    margin-top: 34px;
  }

  .stores__map iframe {
    width: 100%;
    max-width: calc(var(--app-width) - 24px);
    height: 420px;
  }

  .stores__interactive-map {
    height: 420px;
    max-width: calc(var(--app-width) - 24px);
  }

  .stores__photo {
    min-height: 240px;
    margin-bottom: 18px;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    margin-bottom: 28px;
  }

  .section-title span {
    min-width: min(100%, 420px);
    padding: 11px 18px;
    font-size: 12px;
  }

  .feature-card {
    gap: 22px;
    padding: 30px 0;
  }

  .about__image,
  .feature-card__media,
  .info-card__media {
    min-height: 300px;
  }

  .stores,
  .production-grid,
  .contacts {
    gap: 18px;
  }

  .production-video {
    margin-top: 18px;
  }

  .store-list li,
  .info-card,
  .contacts__card,
  .loyalty__card {
    padding: 16px;
  }

  .feature-card__body h3,
  .info-card h3 {
    font-size: 1.12rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

.info-card p,
.feature-card p {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .marketplaces__gallery img {
    width: 150%;
    max-width: none;
    transform: translateX(-16%);
  }

  .marketplace-pill {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 2rem;
  }

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

  .hero__actions .btn:last-child {
    grid-column: auto;
    justify-self: stretch;
  }
}

/* V3: editorial refresh based on the second hero version. */
.page {
  --bg: #fffaf8;
  --ink: #17151a;
  --muted: #676069;
  --accent: #a40068;
  --accent-deep: #6d123f;
  --accent-soft: #f6dfe4;
  --surface: #ffffff;
  --surface-warm: #fff4f0;
  --dark: #231d22;
  --line: rgba(23, 21, 26, 0.12);
  --shadow: 0 22px 55px rgba(42, 25, 33, 0.1);
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
}

.page *,
.page *::before,
.page *::after {
  min-width: 0;
}

.page,
.page main,
.page section,
.page header,
.page footer {
  width: 100%;
  max-width: 100%;
}

.page .container {
  width: min(1180px, calc(100% - 40px));
}

.page .topbar {
  display: block;
  position: fixed;
  background: linear-gradient(180deg, rgba(20, 15, 18, 0.74), rgba(20, 15, 18, 0));
  border-bottom: 0;
  color: #fff;
  backdrop-filter: none;
}

.page .topbar__inner {
  padding: 18px 0;
}

.page .brand {
  letter-spacing: 0.08em;
}

.page .brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 2px;
  background: var(--accent);
}

.page .brand__logo {
  display: block;
  width: clamp(128px, 12vw, 178px);
  height: auto;
}

.page .nav {
  gap: clamp(10px, 1vw, 16px);
  flex-wrap: nowrap;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.page .nav a {
  color: rgba(255, 255, 255, 0.78);
}

.page .nav a:hover,
.page .nav a:focus-visible {
  color: #fff;
  border-color: #fff;
}

.page .menu-toggle {
  color: #fff;
}

.page .hero--main {
  min-height: 100svh;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(18, 14, 17, 0.26) 0%, rgba(18, 14, 17, 0.42) 42%, rgba(18, 14, 17, 0.86) 100%),
    linear-gradient(90deg, rgba(18, 14, 17, 0.38), rgba(18, 14, 17, 0.04) 48%, rgba(18, 14, 17, 0.3)),
    url("./img/hero-v2.jpg") center / cover no-repeat;
  background-position: center 42%;
}

.page .hero--main::before {
  display: none;
}

.page .hero--main .hero__overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.34), transparent 48%);
}

.page .hero--main .hero__content {
  width: min(1120px, calc(100% - 40px));
  padding: 108px 0 54px;
}

.page .hero--main h1 {
  margin-bottom: 20px;
  line-height: 0.9;
}

.page .hero__logo-title img {
  display: block;
  width: min(76vw, 920px);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  transform: translateY(-14px);
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.42));
}

.page .hero--main .hero__lead {
  max-width: 850px;
  font-size: clamp(1.08rem, 2vw, 1.55rem);
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.page .hero__accent-line {
  text-decoration-line: underline;
  text-decoration-color: rgba(255, 255, 255, 0.72);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.16em;
}

.page .hero--main .hero__actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.page .hero--main .btn {
  min-width: 190px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(30, 22, 27, 0.3);
  box-shadow: none;
  letter-spacing: 0.08em;
}

.page .hero--main .btn:first-child {
  border-color: var(--accent);
  background: var(--accent);
}

.page .hero--main .hero__intro {
  max-width: min(1040px, 100%);
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.94rem, 1.02vw, 1.02rem);
  line-height: 1.52;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.36);
}

.page .hero--main .hero__intro p:first-child {
  white-space: normal;
}

.page .hero-break {
  display: none;
}

.page .hero--main .hero__intro p + p {
  margin-top: 10px;
}

.page .section {
  padding: clamp(36px, 4.2vw, 58px) 0;
}

.page .section + .section {
  padding-top: clamp(24px, 3vw, 40px);
}

.page .section:not(:last-child) {
  padding-bottom: clamp(24px, 3vw, 40px);
}

.page .section--white {
  background: var(--bg);
}

.page .section--blush {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 248, 0.92)),
    linear-gradient(135deg, #fff2ee, #f7dde4);
}

.page .section--dark {
  background:
    linear-gradient(135deg, #241b21 0%, #171418 48%, #3a1728 100%);
}

.page .section-title {
  justify-content: flex-start;
  gap: 18px;
  margin-bottom: clamp(26px, 3.2vw, 36px);
}

.page .section-title::before {
  position: relative;
  left: auto;
  right: auto;
  width: 44px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #d74896);
  box-shadow: 0 8px 18px rgba(164, 0, 104, 0.22);
  flex: 0 0 auto;
}

.page .section-title span {
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  font-size: clamp(1.75rem, 3.35vw, 2.9rem);
  line-height: 1.12;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.page .section-title span::after {
  content: "";
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(164, 0, 104, 0));
  flex: 1 1 auto;
  min-width: 80px;
}

.page .section-title--dark span {
  color: #fff;
}

.page .feature-card {
  gap: clamp(22px, 3.6vw, 50px);
  padding: clamp(20px, 3.2vw, 38px) 0;
}

.page .feature-card {
  border-radius: 8px;
  transform: translateY(-4px);
}

.page .feature-card__media,
.page .stores__photo,
.page .marketplaces__gallery,
.page .info-card__media {
  border-radius: 6px;
  box-shadow: 0 20px 45px rgba(42, 25, 33, 0.12);
}

.page .feature-card__media {
  border-radius: 0;
  box-shadow: none;
}

.page .feature-card__media {
  min-height: 0;
  padding: 0;
  background-color: transparent;
  background-image: none;
  overflow: visible;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.page .feature-card__media--bra,
.page .feature-card__media--home,
.page .feature-card__media--beach {
  background-color: transparent;
  background-image: none;
}

.page .feature-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(42, 25, 33, 0.18);
  transform: translateY(-16px);
}

.page .feature-card__body h3,
.page .info-card h3 {
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.page .feature-card p,
.page .info-card p,
.page .stores__copy,
.page .contacts__card {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.page .stores__photo {
  min-height: clamp(230px, 26vw, 360px);
  margin-bottom: clamp(18px, 2.6vw, 26px);
  background:
    linear-gradient(90deg, rgba(23, 21, 26, 0.34), rgba(23, 21, 26, 0.02)),
    url("./img/stores.jpg") center / cover no-repeat;
}

.page .stores {
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
}

.page .stores__copy h2,
.page .loyalty__copy h2,
.page .contacts__card h2 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.12;
}

.page .store-list li,
.page .contacts__card {
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: none;
}

.page .stores__interactive-map,
.page .stores__map iframe {
  height: clamp(430px, 45vw, 560px);
  border-radius: 6px;
  box-shadow: 0 20px 45px rgba(42, 25, 33, 0.12);
}

.page .marketplaces {
  display: grid;
  gap: 18px;
}

.page .marketplaces__note {
  margin: 0;
}

.page .marketplaces__logos {
  margin: 0;
}

.page .marketplace-pill {
  min-height: 72px;
  border: 1px solid rgba(164, 0, 104, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(42, 25, 33, 0.12);
  transform: translateY(-5px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.page .marketplace-pill:hover,
.page .marketplace-pill:focus-visible {
  border-color: rgba(164, 0, 104, 0.36);
  box-shadow: 0 22px 46px rgba(42, 25, 33, 0.18);
  transform: translateY(-9px);
}

.page .production-grid {
  gap: 22px;
}

.page .info-card {
  border: 1px solid rgba(23, 21, 26, 0.08);
  border-radius: 6px;
  box-shadow: none;
  padding: 18px;
}

.page .info-card__media {
  min-height: 220px;
  margin: 0 0 18px;
  width: 100%;
  border-radius: 6px 6px 0 0;
}

.page .production-grid .info-card h3 {
  font-size: clamp(1.02rem, 1.08vw, 1.2rem);
  line-height: 1.28;
  overflow-wrap: normal;
  word-break: normal;
}

.page .production-grid .info-card p {
  font-size: 1rem;
  line-height: 1.7;
}

.page .production-video {
  margin-top: clamp(22px, 3.4vw, 38px);
  border-radius: 6px;
}

.page .feature-grid,
.page .stores,
.page .marketplaces,
.page .production-video,
.page .loyalty__grid,
.page .contacts {
  margin-bottom: 0;
}

.page .loyalty__grid {
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.page .loyalty__copy {
  color: var(--muted);
  overflow-wrap: normal;
  word-break: normal;
}

.page .loyalty__copy h2 {
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(1.85rem, 3.1vw, 3rem);
  line-height: 1.12;
}

.page .benefits li {
  color: var(--muted);
}

.page .loyalty__card {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(164, 0, 104, 0.1);
  box-shadow: 0 18px 42px rgba(42, 25, 33, 0.12);
}

.page .loyalty__details {
  justify-self: start;
  margin-top: 18px;
  min-height: 40px;
  padding: 0 20px;
  border: 1px solid rgba(164, 0, 104, 0.24);
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.page .loyalty__details:hover,
.page .loyalty__details:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: #fff7fb;
}

.page .certificates__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.page .certificates__cards img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.28));
  transform: translateY(-16px);
}

.page .certificates__copy {
  max-width: 900px;
  margin: 0;
}

.page .certificates__copy h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
  line-height: 1.16;
}

.page .certificates__copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.48;
}

.page .certificates__rules {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.page .certificates__rules li {
  position: relative;
  padding-left: 18px;
}

.page .certificates__rules li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.page .catalog-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 22px;
  border: 1px solid rgba(164, 0, 104, 0.24);
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.page .catalog-open:hover,
.page .catalog-open:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: #fff7fb;
}

.catalog-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: 28px;
}

.catalog-modal.is-open {
  display: grid;
  place-items: center;
}

.catalog-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 12, 15, 0.72);
  backdrop-filter: blur(10px);
}

.catalog-modal__dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  padding: clamp(22px, 3vw, 42px);
  border-radius: 12px;
  background:
    linear-gradient(180deg, #fffaf8, #ffffff 44%, #fff2ec);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.catalog-modal__close {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(23, 21, 26, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
}

.catalog-modal__header {
  margin-bottom: 28px;
}

.catalog-modal__header h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3.35rem);
  line-height: 1.06;
  text-transform: uppercase;
}

.catalog-modal__header p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 24px;
}

.catalog-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding-top: 8px;
}

.catalog-card--missing {
  padding-top: 12px;
}

.catalog-card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  background: #fff6f2;
  box-shadow: 0 18px 42px rgba(51, 30, 39, 0.14);
  transform: translateY(-8px);
}

.catalog-card__article {
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.1;
  font-weight: 900;
}

.catalog-card__description {
  margin: 0;
  color: #343039;
  font-size: 0.8rem;
  line-height: 1.18;
}

.catalog-card__size {
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.catalog-card__swatches {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.catalog-card__swatch {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(23, 21, 26, 0.22);
}

.catalog-card__swatch--black {
  background: #050505;
}

.catalog-card__swatch--white {
  background: #ffffff;
}

.catalog-card__swatch--beige {
  background: #f1dfd4;
  border-color: rgba(181, 147, 126, 0.58);
}

.catalog-modal__empty {
  padding: 28px;
  border: 1px solid rgba(164, 0, 104, 0.16);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
}

.rules-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  padding: 28px;
}

.rules-modal.is-open {
  display: grid;
  place-items: center;
}

.rules-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 12, 15, 0.72);
  backdrop-filter: blur(10px);
}

.rules-modal__dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  padding: clamp(22px, 3vw, 42px);
  border-radius: 12px;
  background: linear-gradient(180deg, #fffaf8, #ffffff 52%, #fff2ec);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.rules-modal__close {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(23, 21, 26, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
}

.rules-modal__header {
  margin: 0 0 24px;
  padding-right: 96px;
}

.rules-modal__header h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.75rem, 4vw, 3.1rem);
  line-height: 1.06;
  text-transform: uppercase;
}

.rules-modal__header p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.rules-content {
  margin: 0;
  white-space: pre-wrap;
  color: #343039;
  font-family: inherit;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.65;
}

.page .contacts {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  gap: clamp(18px, 3vw, 30px);
}

.page .contacts__card--soft {
  background: var(--surface-warm);
}

.page .contacts a,
.page .site-footer a {
  text-underline-offset: 4px;
}

.page .contacts a:hover,
.page .contacts a:focus-visible,
.page .site-footer a:hover,
.page .site-footer a:focus-visible {
  text-decoration: underline;
}

.site-footer {
  padding: 34px 0;
  background:
    linear-gradient(135deg, #241b21 0%, #171418 48%, #3a1728 100%);
  color: rgba(255, 255, 255, 0.78);
  border-top: 0;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.site-footer__brand {
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.site-footer__brand img {
  display: block;
  width: clamp(126px, 11vw, 170px);
  height: auto;
}

.site-footer__nav,
.site-footer__contacts {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
}

.site-footer__contacts {
  justify-content: flex-end;
  color: #fff;
  font-weight: 600;
}

.page :focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .page .hero--main .hero__intro p:first-child {
    white-space: normal;
  }

  .page .hero-break {
    display: none;
  }

  .page .stores {
    grid-template-columns: 1fr;
  }

  .page .site-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page .site-footer__contacts {
    justify-content: center;
  }
}

@media (max-width: 920px) {
  .page .topbar {
    background: rgba(24, 18, 22, 0.8);
    backdrop-filter: blur(14px);
  }

  .page .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
  }

  .page .nav {
    width: 100%;
    display: none;
    padding-top: 8px;
    gap: 8px 14px;
    flex-wrap: wrap;
    font-size: 12px;
    white-space: normal;
  }

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

@media (max-width: 760px) {
  html,
  body,
  main,
  section,
  header,
  footer,
  .page .hero {
    width: 100%;
    max-width: 100%;
  }

  .page .container,
  .page .hero--main .hero__content {
    width: min(100% - 24px, 1180px);
    max-width: calc(100% - 24px);
  }

  .page .hero--main {
    min-height: 100svh;
    background-position: 54% top;
  }

  .page .hero--main .hero__content {
    padding: 92px 0 44px;
  }

  .page .hero--main h1 {
    margin-bottom: 18px;
  }

  .page .hero__logo-title img {
    width: min(88vw, 420px);
    transform: translateY(-8px);
  }

  .page .hero--main .hero__lead {
    font-size: 1rem;
    line-height: 1.35;
  }

  .page .hero--main .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 320px;
    margin: 28px auto 0;
  }

  .page .hero--main .btn {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    font-size: 11px;
  }

  .page .hero--main .hero__intro {
    margin-top: 24px;
    padding-top: 18px;
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .page .hero--main .hero__intro p + p {
    margin-top: 8px;
  }

  .page .hero--main .hero__intro p:first-child {
    white-space: normal;
  }

  .page .hero-break {
    display: none;
  }

  .page .section-title::before {
    width: 32px;
    height: 8px;
  }

  .page .section {
    padding: 34px 0;
  }

  .page .section + .section {
    padding-top: 24px;
  }

  .page .section:not(:last-child) {
    padding-bottom: 24px;
  }

  .page .section-title {
    margin-bottom: 24px;
  }

  .page .section-title span {
    gap: 12px;
    padding-left: 0;
    font-size: clamp(1.45rem, 9vw, 2rem);
  }

  .page .section-title span::after {
    min-width: 36px;
  }

  .page .feature-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 0;
  }

  .page .feature-card--reverse .feature-card__media {
    order: 0;
  }

  .page .about__image,
  .page .feature-card__media,
  .page .info-card__media {
    min-height: 300px;
  }

  .page .feature-card__media {
    min-height: 0;
    padding: 0;
  }

  .page .feature-card__media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    transform: translateY(-10px);
  }

  .page .production-grid .info-card h3 {
    font-size: 0.86rem;
    line-height: 1.28;
    overflow-wrap: normal;
    word-break: normal;
  }

  .page .loyalty__copy h2 {
    font-size: 2rem;
  }

  .page .stores__map iframe,
  .page .stores__interactive-map {
    width: 100%;
    max-width: 100%;
    height: 420px;
  }

  .stores__map-info {
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 14px 16px;
  }

  .page .marketplaces__gallery img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .page .marketplace-pill {
    width: 100%;
    min-width: 0;
  }

  .page .loyalty__grid,
  .page .certificates__cards,
  .page .contacts,
  .page .production-grid {
    grid-template-columns: 1fr;
  }

  .page .certificates__cards {
    gap: 14px;
    max-width: 420px;
    margin-inline: auto;
  }

  .page .certificates__cards img {
    transform: translateY(-10px);
  }

  .page .certificates__copy h2 {
    font-size: 1.5rem;
  }

  .page .certificates__rules {
    margin-top: 20px;
    font-size: 0.86rem;
  }

  .catalog-modal {
    padding: 12px;
  }

  .catalog-modal__dialog {
    max-height: 92vh;
    padding: 18px;
  }

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

  .rules-modal {
    padding: 12px;
  }

  .rules-modal__dialog {
    max-height: 92vh;
    padding: 18px;
  }

  .rules-modal__header {
    padding-right: 0;
  }

  .rules-modal__header h2 {
    font-size: 1.6rem;
  }

  .rules-content {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .catalog-card__article {
    font-size: 0.76rem;
  }

  .catalog-card__description {
    font-size: 0.72rem;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

@media (max-width: 380px) {
  .page .hero__logo-title img {
    width: min(90vw, 340px);
  }

  .page .brand__name {
    font-size: 12px;
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .page .hero--main {
    min-height: 100svh;
  }

  .page .hero--main .hero__content {
    padding-top: 94px;
    padding-bottom: 38px;
  }

  .page .hero--main .hero__intro {
    margin-top: 24px;
  }
}

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