:root {
  --c-white: #ffffff;
  --c-black: #0b0b0b;
  --c-line: rgba(255, 255, 255, 0.35);
  --c-muted: rgba(255, 255, 255, 0.72);
  --c-kw-muted: rgba(255, 255, 255, 0.55);

  --ff-sans:
    "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --ff-serif: "Didot", "Didot LT STD", "Bodoni MT", "Playfair Display", serif;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;

  --container-max: 1200px;

  --pad-left: 24px;
  --pad-right: 34px;

  --header-h: 88px;
  --radius-pill: 999px;

  /* Background */
  --hero-bg: url("./../assets/hero/hero-img.jpg"); /* замените на ваш путь */
}

/* =========================
   BASE
========================= */
html,
body {
  height: 100%;
}

body {
  font-family: var(--ff-sans);
  font-weight: var(--fw-regular);
  color: var(--c-white);
  background: var(--c-black);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--pad-left);
  padding-right: var(--pad-right);
  width: 100%;
}

.page-hero-bg {
  position: fixed;
  inset: 0;
  z-index: -2;

  /* один фон для header + hero */
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* легкое затемнение/виньетка для читаемости */
  background: radial-gradient(
    70% 70% at 50% 35%,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.75)
  );
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  border-radius: var(--radius-pill);
  padding: 14px 22px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  transition:
    transform 160ms ease,
    opacity 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
  user-select: none;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--outline {
  border: 1px solid var(--c-line);
  color: var(--c-white);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--solid {
  background: var(--c-white);
  color: #111;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--solid:hover {
  opacity: 0.92;
}

/* =========================
   HEADER
========================= */
.header {
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.header__row {
  display: flex;

  align-items: center;
  gap: 14px;
  padding-top: 9%;
  justify-content: space-between;
  position: relative;
}

.header__divider {
  height: 1px;
  background: var(--c-line);
  margin-top: 3%;
}

/* Language */
.lang {
  position: relative;
  justify-self: start;
}

.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  padding: 10px 10px;
  border-radius: 10px;
  transition:
    background-color 160ms ease,
    opacity 160ms ease;
}

.lang__btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

.lang__list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 120px;

  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 8px;

  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  z-index: 20;
}

.lang.is-open .lang__list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang__item {
  width: 100%;
  text-align: left;
  padding: 10px 10px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: var(--fw-medium);
  transition: background-color 160ms ease;
}

.lang__item:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Nav + Logo */
.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 38px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.nav__link {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.88);
  transition: opacity 160ms ease;
  white-space: nowrap;
}

.nav__link:hover {
  opacity: 0.75;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 30px;
  flex-shrink: 0;
}

.logo__mark {
  font-family: var(--ff-serif);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  font-size: 16px;
  text-transform: uppercase;
}

.header__contact {
  justify-self: end;
}

/* Mobile header elements */
.header__mobile {
  display: none;
  align-items: center;
  justify-content: end;
  gap: 14px;
}

.logo--mobile .logo__mark {
  font-size: 15px;
}

.burger {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);

  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  flex-shrink: 0;
}

.burger__line {
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 2px;
}

/* =========================
   HERO
========================= */
.main {
  min-height: calc(100vh - var(--header-h));
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 26px 0 40px;
}

.hero__inner {
  position: relative;
  padding-bottom: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10vh;
}

.hero__title {
  font-family: var(--ff-serif);
  font-weight: var(--fw-bold);
  letter-spacing: 0.01em;
  line-height: 1.02;
  font-size: clamp(40px, 5.4vw, 78px);
  max-width: 980px;
}

.hero__subtitle {
  margin-top: 18px;
  max-width: 760px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted);
  letter-spacing: 0.02em;
}

.hero__cta {
  margin-top: 26px;
}

/* Bottom keywords */
.hero__keywords {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  padding: 10px 0;
}

.hero__kw {
  font-family: var(--ff-serif);
  font-weight: var(--fw-bold);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);

  opacity: 0.55;
  transition: opacity 180ms ease;
}

.hero__kw:hover {
  opacity: 1;
}

.hero__dot {
  opacity: 0.35;
}

/* Scroll indicator (bottom-right) */
.scroll-indicator {
  position: absolute;
  right: 0;
  bottom: 10px;

  width: 118px;
  height: 118px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);

  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.scroll-indicator:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
}

.scroll-indicator__ring {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;

  /* вращение КОЛЬЦА */
  animation: spin 8s linear infinite;
}

.ring-svg {
  width: 110px;
  height: 110px;
}

.ring-text {
  font-size: 10px;
  letter-spacing: 0.28em;
  fill: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.scroll-indicator__star {
  position: absolute;
  font-size: 26px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);

  /* звёздочка вращается вместе с кольцом */
  animation: spin 8s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-indicator__arrow {
  position: relative;
  z-index: 2;
  font-size: 28px;
  color: #202020;
  margin-bottom: 4px;
}

.scroll-indicator__star img {
  width: 60%;
  height: 60%;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================
   SECTIONS (placeholder)
========================= */
.section {
  background: #0b0b0b;
  padding: 45px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section__title {
  font-family: var(--ff-serif);
  font-weight: var(--fw-bold);
  font-size: 34px;
  margin-bottom: 10px;
}

.section__text {
  color: rgba(255, 255, 255, 0.75);
}

/* =========================
   MOBILE MENU MODAL
========================= */
.menu-modal[hidden] {
  display: none;
}

.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.menu-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.menu-modal__panel {
  position: absolute;
  right: 14px;
  top: 14px;
  left: 14px;

  background: rgba(12, 12, 12, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  padding: 16px;

  transform: translateY(-8px);
  opacity: 0;
  animation: modalIn 180ms ease forwards;
}

@keyframes modalIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.menu-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-modal__title {
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  opacity: 0.9;
}

.menu-modal__close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
}

.menu-modal__links {
  display: grid;
  gap: 10px;
  padding: 14px 0;
}

.menu-modal__link {
  padding: 12px 10px;

  letter-spacing: 0.08em;
  font-size: 13px;
}

.menu-modal__cta {
  width: 100%;
}

.header,
.hero {
  width: 100%;
}

.header__divider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

:root {
  --about-bg: #f3eee9;
  --about-text: #181818;
  --about-muted: rgba(24, 24, 24, 0.62);
  --about-pill: #d9ccb8;
  --about-pill-text: #ffffff;
}

.section--about {
  background: var(--about-bg);
  color: var(--about-text);
  border-top: 0;
}

.section--about .section__title,
.section--about .section__text {
  display: none;
}

.about {
  text-align: center;
  padding: 56px 0 70px;
}

.about__title {
  font-family: var(--ff-serif);
  font-weight: var(--fw-bold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.05;
}

.about__lead {
  margin: 14px auto 0;
  max-width: 760px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--about-muted);
}

.about__stage {
  position: relative;
  margin: 40px auto 0;
  width: min(960px, 100%);
  min-height: 300px;
  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  gap: 22px;
}

.about__bottle {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: center;
  align-self: center;
  width: min(220px, 100%);
  height: auto;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.about__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 2px;
  background: var(--about-pill);
  color: var(--about-pill-text);
  font-weight: var(--fw-medium);
  font-size: 14px;
  line-height: 1.2;
  min-height: 48px;
  white-space: nowrap;
}

.about__pill--tl {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.about__pill--bl {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
}

.about__pill--tr {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

.about__pill--br {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
}

.about__foot {
  margin: 36px auto 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(24, 24, 24, 0.88);
}

:root {
  --brands-bg: #f3eee9;
  --brands-text: #181818;
  --brands-muted: rgba(24, 24, 24, 0.62);
  --brands-card-radius: 28px;
  --brands-green: #0b3b2e;
  --brands-border: rgba(24, 24, 24, 0.12);
}

.section--brands {
  background: var(--brands-bg);
  color: var(--brands-text);
  border-top: 0;
  position: relative;
  overflow: hidden;
}

.section--brands .container {
  position: relative;
}

.brands {
  padding: 64px 0 56px;
  text-align: center;
}

.brands__title {
  font-family: var(--ff-serif);
  font-weight: var(--fw-bold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.05;
}

.brands__lead {
  margin: 14px auto 0;
  max-width: 760px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--brands-muted);
}

.brands__slider-wrap {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
  gap: 18px;
}

.brandsCardsSwiper {
  width: 100%;
  overflow: hidden;
}

.brandsCardsSwiper .swiper-wrapper {
  align-items: stretch;
}

.brandsCardsSwiper .swiper-slide {
  height: auto;
}

.brands__nav {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--brands-border);
  background: rgba(255, 255, 255, 0.65);
  display: grid;
  place-items: center;
  font-size: 24px;
  color: rgba(24, 24, 24, 0.9);
  transition:
    transform 160ms ease,
    opacity 160ms ease,
    background-color 160ms ease;
}

.brands__nav:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.85);
}

.brands__nav:active {
  transform: translateY(0);
}

.brand-card {
  text-align: left;
}

.brand-card__media {
  position: relative;
  display: block;
  border-radius: var(--brands-card-radius);
  overflow: hidden;
  background: #111;
  aspect-ratio: 16 / 10;
  transform: translateZ(0);
}

.brand-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.brand-card__corner {
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.brand-card__title {
  margin-top: 14px;
  font-weight: var(--fw-medium);
  font-size: 16px;
  color: rgba(24, 24, 24, 0.92);
}

.brand-card__text {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(24, 24, 24, 0.6);
  max-width: 340px;
}

.brands__logos {
  margin-top: 44px;
}

.brandsLogosSwiper {
  width: 100%;
}

.brandsLogosSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.brandsLogosSwiper .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  height: 46px;
  width: auto;
  opacity: 0.55;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  filter: grayscale(100%);
  transition:
    opacity 160ms ease,
    filter 160ms ease,
    transform 160ms ease;
}

.brandsLogosSwiper:hover .brand-logo {
  opacity: 0.72;
  filter: grayscale(0%);
}

.brands__sticky {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.brands__request {
  pointer-events: auto;
  position: sticky;
  top: 35vh;
  margin-left: 92%;

  width: 260px;
  height: 260px;
  background: var(--brands-green);
  border-radius: 100% 0 0 100%;
  display: grid;
  place-items: center;
  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.brands__request-text {
  color: rgba(255, 255, 255, 0.92);
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  transform: rotate(-90deg);
  white-space: nowrap;
  margin-right: 50%;
}

:root {
  --partner-bg: url("./../assets/contact/partner-bg.jpg");
  --partner-line: rgba(255, 255, 255, 0.36);
  --partner-label: rgba(255, 255, 255, 0.78);
  --partner-btn: #c8ad74;
  --partner-btn-text: rgba(255, 255, 255, 0.92);
}

.section--partner {
  background: transparent;
  padding: 70px 0;
  border-top: 0;
}

.partner {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  padding: 54px 56px 60px;
  background-image: var(--partner-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.partner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    70% 90% at 50% 30%,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.78)
  );
  pointer-events: none;
}

.partner > * {
  position: relative;
  z-index: 1;
}

.partner__title {
  text-align: center;
  font-family: var(--ff-serif);
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.05;
  margin-bottom: 36px;
}

.partner__form {
  max-width: 980px;
  margin: 0 auto;
}

.partner__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 46px;
  row-gap: 26px;
}

.partner__field {
  display: grid;
  gap: 10px;
}

.partner__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--partner-label);
  user-select: none;
}

.partner__input {
  height: 42px;
  width: 100%;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  border: 0;
  border-bottom: 1px solid var(--partner-line);
  outline: none;
  font-family: var(--ff-sans);
  letter-spacing: 0.02em;
  padding: 6px 2px;
  transition:
    border-color 160ms ease,
    opacity 160ms ease;
}

.partner__input:focus {
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.partner__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.partner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 44px auto 0;
  height: 64px;
  min-width: 320px;
  padding: 0 34px;
  border-radius: var(--radius-pill);
  border: 0;
  background: var(--partner-btn);
  color: var(--partner-btn-text);
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.partner__btn:hover {
  opacity: 0.92;
}

.partner__btn:active {
  transform: translateY(1px);
}

:root {
  --dist-bg: #f3eee9;
  --dist-text: #181818;
  --dist-muted: rgba(24, 24, 24, 0.62);
  --dist-panel: #d9ccb8;
}

.section--distribution {
  background: var(--dist-bg);
  color: var(--dist-text);
  border-top: 0;
}

.dist {
  padding: 66px 0 66px;
}

.dist__title {
  text-align: center;
  font-family: var(--ff-serif);
  font-weight: var(--fw-bold);
  letter-spacing: 0.03em;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.05;
}

.dist__intro {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.dist__p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--dist-muted);
  max-width: 520px;
}

.dist__p--left {
  justify-self: start;
}

.dist__p--right {
  justify-self: end;
  text-align: right;
  margin: 0;
}

.dist__content {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
}

.dist__panel {
  background: var(--dist-panel);
  padding: 22px 22px 18px;
  border-radius: 2px;
}

.dist__list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.6;
}

.dist__bottles {
  margin-top: 16px;
  display: flex;
  gap: 22px;
  align-items: flex-end;
  justify-content: space-between;
}

.dist__bottles img {
  width: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.dist__quote {
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: var(--fw-medium);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(24, 24, 24, 0.82);
  max-width: 360px;
}

:root {
  --tst-bg: #ffffff;
  --tst-text: #181818;
  --tst-muted: rgba(24, 24, 24, 0.55);
  --tst-gold: #c8ad74;
  --tst-line: rgba(24, 24, 24, 0.12);
}

.section--testimonials {
  background: #f3eee9;
  border-top: 0;
  padding: 70px 0;
}

.tst {
  background: var(--tst-bg);
  border: 1px solid rgba(24, 24, 24, 0.06);
  padding: 54px 40px 40px;
  text-align: center;
}

.tst__title {
  font-family: var(--ff-serif);
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  font-size: clamp(26px, 3.4vw, 48px);
  line-height: 1.1;
  color: var(--tst-text);
}

.tst__quote-mark {
  margin: 18px auto 0;
  font-family: var(--ff-serif);
  font-weight: var(--fw-bold);
  font-size: 64px;
  line-height: 1;
  color: var(--tst-gold);
}

.tst__body {
  margin: 10px auto 0;
  max-width: 820px;
  min-height: 92px;
}

.tst__text {
  color: var(--tst-muted);
  font-size: 14px;
  line-height: 1.75;
}

.tst__tabs {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  flex-wrap: wrap;
}

.tst__tab {
  display: grid;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 10px;
  text-align: left;

  border: 0;
  background: transparent;
  padding: 10px 12px;
  border-radius: 14px;

  color: var(--tst-muted);
  transition:
    transform 160ms ease,
    opacity 160ms ease,
    background-color 160ms ease;
}

.tst__tab:hover {
  background: rgba(24, 24, 24, 0.04);
}

.tst__tab.is-active {
  color: rgba(24, 24, 24, 0.92);
}

.tst__tab.is-active .tst__avatar {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

.tst__avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(24, 24, 24, 0.06);
  display: grid;
  place-items: center;
  overflow: hidden;

  opacity: 0.55;
  filter: grayscale(100%);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    filter 160ms ease;
}

.tst__avatar img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.tst__name {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: inherit;
}

.tst__stars {
  display: inline-block;
  margin-top: 2px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--tst-gold);
  opacity: 0.9;
}

.tst__fade-out {
  opacity: 0;
  transform: translateY(2px);
  transition:
    opacity 140ms ease,
    transform 140ms ease;
}

.tst__fade-in {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

:root {
  --footer-bg: #f3eee9;
  --footer-text: #181818;
  --footer-muted: rgba(24, 24, 24, 0.62);
  --footer-line: rgba(24, 24, 24, 0.12);
  --footer-green: #0b3b2e;
}

.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  border-top: 0;
  padding: 70px 0 46px;
}

.footer__top {
  display: grid;
  gap: 26px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.footer__brand {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.footer__logo {
  height: 58px;
  width: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.footer__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--footer-muted);
}

.footer__btn {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--footer-green);
  color: rgba(255, 255, 255, 0.92);
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.footer__btn:hover {
  opacity: 0.92;
}

.footer__btn:active {
  transform: translateY(1px);
}

.footer__contacts {
  margin-top: 18px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 22px;
  align-items: center;
}

.footer__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(24, 24, 24, 0.84);
  font-size: 13px;
  line-height: 1.3;
  transition: opacity 160ms ease;
}

.footer__contact:hover {
  opacity: 0.75;
}

.footer__icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--footer-green);
  font-size: 14px;
}

.footer__socials {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.footer__social {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--footer-line);
  display: grid;
  place-items: center;
  text-decoration: none;
  color: rgba(24, 24, 24, 0.72);
  background: rgba(255, 255, 255, 0.4);
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.footer__social:hover {
  transform: translateY(-1px);
  opacity: 0.85;
}

.footer__divider {
  margin-top: 34px;
  height: 1px;
  background: var(--footer-line);
  width: 100%;
}

.footer__bottom {
  padding-top: 22px;
  text-align: center;
  color: rgba(24, 24, 24, 0.62);
  font-size: 12.5px;
}

.footer__bottom p {
  margin: 0;
}

@media (max-width: 768px) {
  .footer {
    padding: 56px 0 40px;
  }

  .footer__contacts {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }
}

@media (max-width: 540px) {
  .footer__logo {
    height: 52px;
  }

  .footer__btn {
    width: 100%;
    max-width: 240px;
  }
}

@media (max-width: 768px) {
  .section--testimonials {
    padding: 56px 0;
  }

  .tst {
    padding: 46px 18px 34px;
  }

  .tst__tabs {
    gap: 18px;
  }

  .tst__tab {
    grid-template-columns: 40px auto;
  }
}

@media (max-width: 540px) {
  .tst__quote-mark {
    font-size: 54px;
  }

  .tst__text {
    font-size: 13px;
  }

  .tst__tabs {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .dist {
    padding: 54px 0 56px;
  }

  .dist__intro {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dist__p {
    max-width: none;
  }

  .dist__p--right {
    text-align: left;
    justify-self: start;
  }

  .dist__content {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .dist__quote {
    max-width: none;
  }

  .dist__bottles {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 18px;
  }

  .dist__bottles img {
    height: 70px;
  }
}

@media (max-width: 540px) {
  .dist__panel {
    padding: 18px 16px 16px;
  }

  .dist__list {
    font-size: 12.5px;
  }

  .dist__bottles img {
    height: 62px;
  }

  .dist__quote {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .section--partner {
    padding: 56px 0;
  }

  .partner {
    padding: 44px 18px 52px;
  }

  .partner__grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .partner__btn {
    min-width: 260px;
    height: 60px;
  }
}

@media (max-width: 540px) {
  .partner__title {
    margin-bottom: 26px;
  }

  .partner__btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .brands {
    padding: 54px 0 46px;
  }

  .brands__slider-wrap {
    grid-template-columns: 52px 1fr 52px;
    gap: 12px;
  }

  .brand-card__text {
    max-width: none;
  }

  .brands__request {
    width: 78px;
    height: 220px;
  }

  .brand-logo {
    height: 40px;
  }
}

@media (max-width: 540px) {
  .brands__slider-wrap {
    grid-template-columns: 1fr;
  }

  .brands__nav {
    display: none;
  }

  .brands__request {
    width: 70px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 44px 0 56px;
  }

  .about__stage {
    margin-top: 28px;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }

  .about__bottle {
    grid-column: auto;
    grid-row: auto;
    width: 170px;
    margin: 6px auto 10px;
  }

  .about__pill {
    width: 100%;
    white-space: normal;
  }

  .about__pill--tl,
  .about__pill--tr,
  .about__pill--bl,
  .about__pill--br {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
  }

  .about__foot {
    margin-top: 26px;
    font-size: 15px;
  }
}

@media (max-width: 540px) {
  .about__title {
    letter-spacing: 0.02em;
  }

  .about__lead {
    font-size: 13px;
  }

  .about__pill {
    font-size: 13px;
    padding: 12px 14px;
  }

  .about__bottle {
    width: 150px;
  }
}

/* =========================
   ADAPTIVE
========================= */
@media (max-width: 870px) {
  .header__contact {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 78px;
    --pad-left: 18px;
    --pad-right: 22px;
  }

  .header__row {
    position: relative;
  }

  .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .nav,
  .header__contact {
    display: none;
  }

  .header__mobile {
    display: flex;
    justify-content: space-between;
  }

  .hero__inner {
    padding-bottom: 0;
  }

  .hero__keywords {
    position: static;
    margin-top: 26px;
    gap: 14px;
  }

  .hero__kw {
    font-size: 16px;
  }

  .scroll-indicator {
    position: static;
    margin-top: 14px;
    width: 104px;
    height: 104px;
  }

  .ring-svg {
    width: 98px;
    height: 98px;
  }
  .hero {
    min-height: calc(70vh - var(--header-h));
  }
  .header__divider {
    display: none;
  }
}

@media (max-width: 540px) {
  :root {
    --pad-left: 14px;
    --pad-right: 16px;
  }

  .hero__subtitle {
    font-size: 13px;
  }

  .hero__keywords {
    flex-wrap: wrap;
    row-gap: 8px;
    padding-bottom: 6px;
  }

  .hero__kw {
    font-size: 15px;
  }

  .scroll-indicator {
    width: 96px;
    height: 96px;
  }

  .ring-svg {
    width: 92px;
    height: 92px;
  }
}
