/* заголовок коллабораций */
@font-face {
  font-family: "CHETKIY";
  src: url("fonts/CHETKIYTYPEFACE.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* SF Pro Display */
@font-face {
  font-family: "SF Pro Display";
  src: url("fonts/SFPro-Display-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("fonts/SFPro-Display-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("fonts/SFPro-Display-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("fonts/SFPro-Display-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* SF Pro Text */
@font-face {
  font-family: "SF Pro Text";
  src: url("fonts/SFProText-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro Text";
  src: url("fonts/SFProText-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro Text";
  src: url("fonts/SFProText-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro Text";
  src: url("fonts/SFProText-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff; 
  font-family: "SF Pro Text", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
}


h1,
h2,
h3,
.hero-title,
.second-title,
.search-title,
.vibe-title,
.vibes-strip-title {
  font-family: "SF Pro Display", sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -0.01em !important;
  line-height: 0.85 !important;
  text-transform: uppercase;
}

p,
a,
li,
.hero-desc,
.second-desc,
.search-desc,
.vibe-desc,
.vibes-card-desc,
.collab-text,
.footer,
.footer-link,
.hero-nav__menu,
.vibes-card {
  font-family: "SF Pro Text", sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.2 !important;
}

.hero-left,
.second-content,
.search-left,
.vibe-content {
  text-align: center;
}

/* ==================
   block 1
   ================== */


.hero {
  width: 1440px;
  height: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: #f3f3f3
   url("img/background main.png") center top / cover no-repeat;
}

/* navbar */

.hero-nav {
  position: sticky; 
  top: 16px;
  z-index: 50;

  margin: 0 auto;
  width: min(900px, 100% - 32px);
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.86) 100%
  );
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25),
    0 0 0 0.5px rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111;

  overflow: hidden;
}

.hero-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 10% 0%,
    rgba(255, 255, 255, 0.9) 0,
    rgba(255, 255, 255, 0) 55%
  );
  opacity: 0.9;
  pointer-events: none;
}

.hero-nav::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(255, 255, 255, 0.65);
  pointer-events: none;
}

.hero-nav__menu {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.hero-nav__menu::-webkit-scrollbar {
  display: none;
}
.hero-nav__menu {
  scrollbar-width: none;
}

.hero-nav__menu li {
  line-height: 1;
  position: relative;
  cursor: pointer;
}

.hero-nav__menu li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.8);
  transition: width 0.18s ease;
}

.hero-nav__menu li:hover::after {
  width: 100%;
}

/* переключатель языка */
.hero-nav__lang {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  background: rgba(245, 245, 247, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9),
    0 0 0 0.5px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.hero-nav__lang-item {
  min-width: 30px;
  height: 24px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.hero-nav__lang-item--active {
  background: #000;
  color: #fff;
}

/* адаптив для navbar (узкие экраны) */
@media (max-width: 600px) {
  .hero-nav {
    top: 12px;
    height: 52px;
    width: calc(100% - 24px);
    padding: 0 14px;
    gap: 16px;
  }

  .hero-nav__menu {
    gap: 18px;
    font-size: 11px;
  }
}


.hero-left {
  position: absolute;
  top: 230px;
  left: 120px;
  width: 720px;
}

.hero-title {
  margin: 0 0 26px;
  font-size: 56.6px;
}

.hero-desc {
  margin: 0 auto 28px;
  max-width: 640px;
  font-size: 20px;
  color: #3e3e3e;
}

.hero-link {
  font-size: 17px;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  color: #0058ff;
}

.hero-link:hover {
  color: #0040bf;
}


.hero-logo-big {
  position: absolute;
  right: 150px;
  top: 190px;
  height: 440px;
}

/* ==================
   block 2
   ================== */

.second {
  width: 1440px;
  height: 650px;
  margin: 0 auto;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.second-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 120px;
}


.second-phone {
  flex: 0 0 auto;
  position: relative;
}

.second-phone img {
  width: 520px;
  max-width: none;
  transform: translateX(-40px);
}


.second-content {
  flex: 0 0 520px;
}

.second-title {
  margin: 0 0 22px;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.5px;
}

.second-desc {
  margin: 0 auto 22px;
  max-width: 420px;
  font-size: 16px;
  line-height: 1.5;
  color: #4a4a4a;
}

.second-link {
  font-size: 16px;
  color: #0058ff;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.second-link:hover {
  color: #0040bf;
}

/* ==================
   block 3
   ================== */

.search {
  width: 1440px;
  height: 650px;
  margin: 0 auto;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.search-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 120px;
}

.search-left {
  flex: 0 0 520px;
  position: relative;
  margin-left: 40px;
}


.search-heart {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
}

.search-title {
  margin: 60px 0 22px;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.5px;
}

.search-desc {
  margin: 0 auto 22px;
  max-width: 460px;
  font-size: 16px;
  line-height: 1.5;
  color: #4a4a4a;
}

.search-link {
  font-size: 16px;
  color: #0058ff;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.search-link:hover {
  color: #0040bf;
}

.search-right {
  flex: 0 0 auto;
}

.search-right img {
  width: 520px;
  max-width: none;
  border-radius: 48px;
}


.search-decor {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 450px;
  max-width: none;
}

/* ==================
   block 4
   ================== */

.vibe {
  width: 1440px;
  height: 750px;
  margin: 0 auto;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.vibe-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 120px;
}

.vibe-left img {
  margin-top: 100px;
  width: 650px;
  max-width: none;
  transform: translateX(-40px);
}

.vibe-content {
  margin-top: 230px;
  flex: 0 0 520px;
  position: relative;
  z-index: 2;
}

.vibe-title {
  margin: 0 0 22px;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.5px;
}

.vibe-desc {
  margin: 0 auto 22px;
  max-width: 440px;
  font-size: 16px;
  line-height: 1.5;
  color: #4a4a4a;
}

.vibe-link {
  font-size: 16px;
  color: #0058ff;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.vibe-link:hover {
  color: #0040bf;
}

.vibe-guitar {
  position: absolute;
  top: 170px;
  right: 200px;
  width: 340px;
  pointer-events: none;
  z-index: 3;
}

.vibe-trible {
  position: absolute;
  top: 20px;
  right: 0;
  width: 300px;
  pointer-events: none;
  z-index: 1;
}

.search-decor,
.vibe-trible {
  filter: brightness(1.4) contrast(0.9);
  opacity: 0.95;
}

/* ==================
   block 5 slider
   ================== */

.vibes-strip-section {
  width: 1440px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 120px 60px;
}

.vibes-strip-title {
  margin: 0 0 32px;
  font-size: 48px;
  line-height: 1;
}


.vibes-strip-wrapper {
  cursor: grab;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.vibes-strip-wrapper::-webkit-scrollbar {
  display: none;
}
.vibes-strip-wrapper {
  scrollbar-width: none;
}


.vibes-strip {
  user-select: none;
  display: flex;
  gap: 24px;
}

.vibes-card {
  flex: 0 0 260px;
  padding: 24px 20px 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  margin-right: 24px;
}

.vibes-card-img-wrap {
  width: 200px;
  height: 200px;
  margin: 0 auto 16px;
}

.vibes-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vibes-card-title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-align: center;
}

.vibes-card-desc {
  margin: 0;
  font-size: 15px;
  text-align: center;
  color: #000;
  max-height: 2.8em;
  overflow: hidden;
  position: relative;
  transition: max-height 0.25s ease;
}

.vibes-card-desc::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.2em;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
}


.vibes-card:hover .vibes-card-desc {
  max-height: 200px;
}

.vibes-card:hover .vibes-card-desc::after {
  opacity: 0;
}

/* ==================
   block 6
   ================== */

.community {
  width: 1440px;
  margin: 0 auto;
  background: #ffffff;
  padding: 20px 120px 80px;
}

.community-title {
  margin: 0 0 32px;
  font-size: 48px;
  line-height: 0.96;
}

.community-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.community-card {
  flex: 0 0 auto;
  text-align: center;
}

.community-card img {
  display: block;
  border-radius: 32px;
  object-fit: cover;
}

.community-card--small img {
  width: 150px;
  height: 250px;
}

.community-card--medium img {
  width: 190px;
  height: 310px;
}

.community-card--tall img {
  width: 220px;
  height: 360px;
}

.community-card figcaption {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #444;
}

/* ==================
   block 7
   ================== */

.collabs {
  width: 1440px;
  margin: 0 auto;
  background: #101015;
  color: #ffffff;
  padding: 60px 120px 90px;
}

.collabs-title {
  margin: 0 0 40px;
  font-family: "CHETKIY", "SF Pro Display", system-ui, sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  line-height: 0.85 !important;
  text-transform: uppercase !important;
  text-align: left;
}

.collabs-inner {
  display: flex;
  gap: 40px;
}

.collab-card {
  flex: 0 0 560px;
  min-height: 360px;
  border-radius: 32px;
  overflow: hidden;
}

.collab-card--left {
  background: #f7f5f6;
  padding: 32px 32px 28px;
  display: flex;
  gap: 28px;
}

.collab-poster img {
  display: block;
  width: 230px;
  height: auto;
}

.collab-content {
  flex: 1;
  color: #111;
}

.collab-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.collab-heading {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.collab-text {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
}

.collab-links {
  display: flex;
  gap: 10px;
  font-size: 11px;
}

.collab-link {
  color: #000;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.collab-card--right {
  background: #3d3d40;
  border-radius: 32px;
  border: 2px dashed rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 30px 40px;
}

.collab-right-text {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.4;
}

/* ==================
   block 8
   ================== */

.merch {
  width: 1440px;
  margin: 0 auto;
  background: #000;
  overflow: hidden;
}

.merch-inner {
  width: 100%;
  height: auto;
}

.merch-hoodie {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ==================
   block 9
   ================== */

.footer {
  width: 1440px;
  margin: 0 auto;
  background: #101015;
  color: #ffffff;
  padding: 24px 120px 28px;
  font-size: 12px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-col--left .footer-link {
  display: block;
  margin-bottom: 6px;
}

.footer-col--right {
  text-align: left;
}

.footer-label {
  display: block;
  margin-bottom: 6px;
  text-transform: lowercase;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 1px;
}

.footer-link--accent {
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

.footer-link:hover {
  opacity: 0.8;
}

/* ==================
   легал
   ================== */

.legal-page {
  max-width: 900px;
  margin: 120px auto 80px;
  padding: 0 20px;
  font-family: "SF Pro Text", sans-serif;
}

.legal-page h1 {
  font-family: "SF Pro Display", sans-serif;
  font-weight: 900;
  font-size: 34px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.legal-content p {
  margin: 12px 0;
  line-height: 1.55;
  font-size: 15px;
}

.legal-content strong {
  font-weight: 700;
}

.legal-content ul {
  margin: 10px 0 20px;
  padding-left: 22px;
}

.hero-nav__menu a {
  color: inherit;
  text-decoration: none;
}

.hero-nav__menu a:visited {
  color: inherit;
}

.hero-nav__menu a:hover,
.hero-nav__menu a:focus {
  text-decoration: none;
}

/* ==================
   waitlist modal
   ================== */

.waitlist-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.waitlist-backdrop--visible {
  display: flex;
}

.waitlist-modal {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 32px 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
}

.waitlist-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.waitlist-title,
.waitlist-success {
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.waitlist-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.waitlist-input {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
}

.waitlist-input:focus {
  border-color: rgba(0, 0, 0, 0.4);
}

.waitlist-consent {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.4;
}

.waitlist-submit {
  margin-top: 12px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #000;
  color: #fff;
}

.waitlist-submit:disabled {
  opacity: 0.5;
  cursor: default;
}


@media (max-width: 768px) {
  .hero,
  .second,
  .search,
  .vibe,
  .vibes-strip-section,
  .collabs,
  .merch,
  .footer {
    width: 100%;
    margin: 0 auto;
  }


  .hero {
    height: auto;
    padding: 96px 16px 40px;
    background-position: center top;
    background-size: cover;
  }

  .hero-nav {
    top: 16px;
    width: calc(100% - 32px);
    height: 52px;
    padding: 0 18px;
    gap: 16px;
  }

  .hero-nav__menu {
    gap: 12px;
    font-size: 10px;
  }

  .hero-left {
    position: static;
    width: 100%;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1;
  }

  .hero-desc {
    font-size: 14px;
    max-width: 100%;
  }

  .hero-logo-big {
    position: static;
    display: block;
    margin: 24px auto 0;
    width: 70vw;
    max-width: 320px;
    height: auto;
  }


  .second {
    height: auto;
    padding: 40px 16px;
  }

  .second-inner {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 24px;
  }

  .second-phone img {
    width: 80vw;
    max-width: 340px;
    transform: none;
  }

  .second-content {
    flex: 0 0 auto;
    width: 100%;
  }

  .second-title {
    font-size: 26px;
    line-height: 1;
  }

  .second-desc {
    font-size: 14px;
  }


  .search {
    height: auto;
    padding: 40px 16px;
  }

  .search-inner {
    position: static;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 0;
    gap: 24px;
  }

  .search-right img {
    width: 80vw;
    max-width: 340px;
    border-radius: 32px;
  }

  .search-left {
    flex: 0 0 auto;
    width: 100%;
    margin-left: 0;
    position: relative;
  }

  .search-heart {
    position: static;
    transform: none;
    width: 140px;
    margin: 0 auto 12px;
  }

  .search-title {
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1;
  }

  .search-desc {
    font-size: 14px;
  }

  .search-decor {
    display: none;
  }


  .vibe {
    height: auto;
    padding: 40px 16px 32px;
  }

  .vibe-inner {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 24px;
  }

  .vibe-left img {
    margin-top: 0;
    width: 90vw;
    max-width: 380px;
    transform: none;
  }

  .vibe-content {
    margin-top: 0;
    flex: 0 0 auto;
    width: 100%;
  }

  .vibe-title {
    font-size: 26px;
    line-height: 1;
    margin-bottom: 14px;
  }

  .vibe-desc {
    font-size: 14px;
  }

  .vibe-guitar,
  .vibe-trible {
    display: none;
  }

  .vibes-strip-section {
    padding: 32px 16px 40px;
  }

  .vibes-strip-title {
    font-size: 24px;
    text-align: left;
  }

  .vibes-card {
    flex: 0 0 220px;
    padding: 18px 14px 16px;
  }

  .vibes-card-img-wrap {
    width: 160px;
    height: 160px;
  }

  .vibes-card-title {
    font-size: 14px;
  }

  .vibes-card-desc {
    font-size: 13px;
  }

  .collabs {
    padding: 40px 16px 56px;
  }

  .collabs-title {
    font-size: 26px;
  }

  .collabs-inner {
    flex-direction: column;
    gap: 20px;
  }

  .collab-card {
    flex: 0 0 auto;
    width: 100%;
  }

  .collab-card--left {
    flex-direction: column;
    align-items: center;
  }

  .collab-poster img {
    width: 70vw;
    max-width: 260px;
  }

  .collab-content {
    text-align: left;
  }

  .collab-card--right {
    justify-content: center;
  }

  .collab-right-text {
    text-align: center;
  }


  .merch {
    padding: 0;
  }

  .merch-hoodie {
    width: 100%;
    height: auto;
  }


  .footer {
    padding: 20px 16px 24px;
    font-size: 11px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 820px) {
  .hero {
    height: auto;
    padding-top: 110px; 
  }

  .hero-nav {
    position: fixed !important;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    z-index: 9999;
    height: 54px;
    padding: 0 20px;
    gap: 16px;
  }

  .hero-nav__menu {
    overflow-x: auto;
    white-space: nowrap;
    gap: 22px;
  }

  .hero-nav__menu::-webkit-scrollbar {
    display: none;
  }
}


@media (max-width: 768px) {
  .hero-nav {
    position: sticky;
    top: 12px;
    width: calc(100% - 24px);
    padding: 0 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero-nav::-webkit-scrollbar {
    display: none;
  }

  .hero-nav__menu {
    flex-wrap: nowrap;
    flex: 0 0 auto;
    min-width: max-content;
  }

  .hero-nav__lang {
    flex: 0 0 auto;
    margin-left: 16px;
  }
}

