:root {
  --bg-black: #050505;
  --bg-dark: #1a1a1a;
  --card-dark: #070707;

  --text-white: #f2eee6;
  --text-muted: #c9c2b8;

  --gold: #c99a24;
  --gold-light: #f0d067;
  --gold-soft: rgba(201, 154, 36, 0.42);

  --border-dark: rgba(255, 255, 255, 0.08);

  --radius: 20px;

  --max-width: min(92vw, 1500px);
  --header-height: 96px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--text-white);
  font-family: "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

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

.nav-center {
  justify-self: center;

  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.4px;

  text-transform: uppercase;
}

.nav-link {
  color: var(--text-white);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

/* HEADER */

.header-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

.site-header {
  width: 100%;
  height: var(--header-height);
  background: var(--bg-black);
  border-bottom: 1px solid var(--border-dark);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 42px;

  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  width: 100%;
  max-width: 1460px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo {
  justify-self: start;

  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.6px;

  color: var(--text-white);
  text-transform: uppercase;
}

.channel-logo {
  width: clamp(170px, 5vw, 200px);
  height: clamp(170px, 5vw, 200px);

  object-fit: cover;
  border-radius: 50%;
  justify-self: center;

  display: block;
  margin-bottom: clamp(22px, 1.5vw, 30px);
}

.header-button {
  justify-self: end;

  background: var(--gold);
  color: #090909;

  padding: 13px 24px;
  min-width: 200px;

  text-align: center;
  border-radius: var(--radius);

  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;

  transition: all 0.25s ease;
}

.header-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(216, 182, 55, 0.25);
}

/* MAIN DESKTOP */

main {
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.62) 0%,
      rgba(18, 18, 18, 0.76) 45%,
      rgba(5, 5, 5, 0.92) 100%
    ),
    url("assets/background-fakeoff.webp");

  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;

  min-height: calc(100vh - var(--header-height));

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section {
  width: 100%;
  padding-left: 46px;
  padding-right: 46px;
}

/* HERO */

.hero {
  text-align: center;

  padding-top: 48px;
  padding-bottom: 76px;
}

.hero-content {
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 1.3vw, 28px);
  margin-top: clamp(30px, 2vw, 42px);
}

.social-link {
  width: clamp(58px, 3.6vw, 78px);
  height: clamp(58px, 3.6vw, 78px);

  background: transparent;
  border: none;
  border-radius: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: visible;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

.social-icon {
  width: 100%;
  height: 100%;

  object-fit: contain;
  border-radius: 0;

  display: block;
}

.main-title {
  margin-bottom: 10px;
  line-height: 1;
  text-align: center;
}

.main-title-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-title-image {
  width: min(88vw, 980px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
}

.hero-subtitle {
  color: var(--gold);

  font-size: clamp(28px, 2.35vw, 40px);
  line-height: 1.14;

  font-weight: 500;
  letter-spacing: -0.8px;

  margin-bottom: 22px;
}

.hero-text {
  max-width: 850px;
  margin: 0 auto;

  color: #d8d2c8;

  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 1.36;
  font-weight: 400;
}

/* CHOOSE SECTION */

.choose-section {
  text-align: center;

  padding-top: 0;
  padding-bottom: 46px;
}

.choose-title {
  font-size: clamp(42px, 3.4vw, 58px);
  line-height: 1;

  font-weight: 800;
  letter-spacing: 8px;
  text-transform: uppercase;

  margin-bottom: 18px;
}

.choose-text {
  color: var(--text-muted);

  font-size: clamp(19px, 1.2vw, 23px);
  line-height: 1.32;
  font-weight: 400;

  margin-bottom: clamp(42px, 3.2vw, 62px);
}

/* CARDS */

.cards-wrap {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.cards {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: clamp(32px, 2.4vw, 52px);
  align-items: stretch;
}

.channel-card {
  min-height: clamp(360px, 23vw, 460px);

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.045) 0%,
      transparent 38%
    ),
    linear-gradient(180deg, #090909 0%, #050505 100%);

  border: 3px solid var(--gold);
  border-radius: var(--radius);

  padding: clamp(38px, 2.8vw, 58px);

  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.channel-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.45),
    0 0 18px rgba(216, 182, 55, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  border-color: #e3c350;
}

.card-title {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: clamp(18px, 1.3vw, 24px);
  position: relative;
}

.card-title::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
  margin: 14px auto 0;
}

.card-title-small,
.card-title-main {
  display: block;
}

.card-title-small {
  font-size: clamp(18px, 1.1vw, 24px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 8px;
}

.card-title-main {
  font-size: clamp(34px, 2vw, 46px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.7px;
  color: var(--text-white);
}

.card-text {
  color: var(--text-white);

  font-size: clamp(22px, 1.25vw, 28px);
  line-height: 1.35;
  font-weight: 400;

  margin-bottom: clamp(32px, 2vw, 44px);
}

.value-strip {
  width: 100%;
  max-width: var(--max-width);

  margin: 32px auto 0;
  padding: 24px 34px;

  border: 1.5px solid rgba(216, 182, 55, 0.7);
  border-radius: 12px;

  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.92),
    rgba(5, 5, 5, 0.92)
  );

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(32px, 2.4vw, 52px);

  align-items: center;
}

.value-item {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  text-align: left;
  min-width: 0;
}

.value-icon {
  width: clamp(48px, 3.4vw, 66px);
  height: clamp(48px, 3.4vw, 66px);

  object-fit: contain;
  flex: 0 0 auto;

  display: block;
}

.value-item h3 {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 3px;
  font-weight: 800;
  margin-bottom: 6px;
}

.value-item p {
  color: #cfcfcf;
  font-size: 15px;
}

.swipe-hint {
  display: none;
}

.footer-contact {
  margin-bottom: 18px;
}

.footer-contact a {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.8px;
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: var(--gold-light);
}

@media (max-width: 1100px) {
  .swipe-hint {
    display: block;
    margin-top: 6px;

    color: rgba(201, 154, 36, 0.62);
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-align: center;

    opacity: 1;
    transition: opacity 0.25s ease;
  }

  .swipe-hint.is-hidden {
    opacity: 0;
    pointer-events: none;
  }
}

/* FOOTER */

.site-footer {
  background: #050505;
  border-top: none;

  padding: 100px 38px 34px;
  text-align: center;
}

.footer-brand {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;

  margin-bottom: 14px;
}

.footer-line {
  color: var(--gold);

  font-size: 18px;
  font-weight: 500;

  margin-bottom: 16px;
}

.footer-text {
  color: #bdb6ad;

  font-size: 15px;
  line-height: 1.6;

  max-width: 620px;

  margin: 0 auto 26px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;

  margin-bottom: 28px;
}

.footer-links a {
  color: var(--text-white);

  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;

  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.copyright {
  color: #777777;
  font-size: 13px;
}

/* DESKTOP HEIGHT OPTIMIZATION */

@media (min-width: 1101px) and (max-height: 880px) {
  :root {
    --header-height: 86px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 54px;
  }

  .main-title {
    font-size: clamp(62px, 5.8vw, 96px);
    margin-bottom: 22px;
  }

  .hero-subtitle {
    font-size: clamp(26px, 2.15vw, 36px);
    margin-bottom: 18px;
  }

  .hero-text {
    font-size: clamp(17px, 1.05vw, 20px);
  }

  .choose-title {
    font-size: clamp(44px, 4vw, 66px);
    margin-bottom: 18px;
  }

  .choose-text {
    font-size: clamp(18px, 1.1vw, 21px);
    margin-bottom: 62px;
  }

  .choose-section {
    padding-bottom: 38px;
  }

  .channel-card {
    min-height: clamp(290px, 18vw, 360px);
    padding: clamp(34px, 2.4vw, 50px);
  }

  .card-title {
    font-size: clamp(31px, 1.8vw, 42px);
  }

  .card-text {
    font-size: clamp(20px, 1.12vw, 25px);
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    padding: 0 38px;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 38px;
  }

  .main-title {
    font-size: clamp(54px, 5.2vw, 84px);
    margin-bottom: 18px;
  }

  .hero-subtitle {
    font-size: clamp(23px, 2vw, 32px);
    margin-bottom: 14px;
  }

  .hero-text {
    font-size: clamp(16px, 0.95vw, 18px);
    line-height: 1.32;
  }

  .choose-title {
    font-size: clamp(40px, 3.7vw, 58px);
    margin-bottom: 14px;
  }

  .choose-text {
    font-size: clamp(16px, 1vw, 19px);
    margin-bottom: 44px;
  }

  .choose-section {
    padding-bottom: 20px;
  }

  .channel-card {
    min-height: clamp(270px, 16vw, 330px);
    padding: clamp(30px, 2.1vw, 44px);
  }

  .card-title {
    font-size: clamp(28px, 1.65vw, 38px);
  }

  .card-text {
    font-size: clamp(18px, 1vw, 23px);
    line-height: 1.3;
  }
}

/* TABLET / MOBILE */

.mobile-label {
  display: none;
}

@media (max-width: 1100px) {
  :root {
    --header-height: 84px;
  }

  main {
    display: block;
    min-height: auto;
  }

  .site-header {
    height: var(--header-height);
    padding: 0 20px;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .header-logo {
    width: 60px;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .nav-center {
    font-size: 12px;
  }

  .header-button {
    min-width: min-content;
    max-width: max-content;
    padding: 10px 12px;
    font-size: 12px;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
    padding-bottom: 58px;
  }

  .main-title {
    margin-bottom: 23px;
  }

  .main-title-image {
    width: min(92vw, 620px);
  }

  .hero-subtitle {
    font-size: clamp(23px, 6vw, 34px);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text {
    font-size: 17px;
    max-width: 620px;
  }

  .choose-section {
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .choose-title {
    font-size: clamp(40px, 10vw, 58px);
  }

  .choose-text {
    font-size: 18px;
    margin-bottom: 76px;
  }

  .cards-wrap {
    max-width: none;

    width: 100%;

    overflow-x: auto;

    overflow-y: hidden;

    scroll-snap-type: x mandatory;

    scroll-padding-left: 24px;

    -webkit-overflow-scrolling: touch;

    padding-left: 24px;

    padding-right: 24px;

    padding-top: 18px;

    padding-bottom: 4px;

    scrollbar-width: none;
  }

  .cards-wrap::-webkit-scrollbar {
    display: none;
  }

  .cards {
    display: flex;

    width: max-content;

    gap: 24px;

    animation: none;
  }

  .channel-card {
    width: min(72vw, 430px);

    min-width: 360px;

    max-width: 430px;

    min-height: 430px;

    flex: 0 0 auto;

    scroll-snap-align: start;

    scroll-snap-stop: always;
  }

  .channel-card,
  .channel-card:first-child,
  .channel-card:hover,
  .channel-card:active,
  .channel-card:focus-within {
    transform: none;
    box-shadow: none;
    border-color: var(--gold);
  }
  .channel-logo {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
  }

  .social-icons {
    justify-content: center;
    gap: 24px;
    margin-top: 34px;
  }

  .social-link {
    width: 64px;
    height: 64px;
  }

  .value-strip {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px 28px;
  }

  .value-item {
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }

  .value-icon {
    width: 48px;
    height: 48px;
  }

  .value-item h3 {
    margin-bottom: 4px;
    line-height: 1.1;
  }

  .value-item p {
    line-height: 1.25;
    color: #d8d2c8;
  }
}
/* SMALL MOBILE */

@media (max-width: 620px) {
  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: inline;
  }

  .site-header {
    height: 64px;
    padding: 0 16px;
  }

  .header-inner {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    text-align: initial;
  }

  .logo {
    justify-self: start;
  }

  .header-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
  }

  .nav-center {
    justify-self: center;
    font-size: 13px;
    letter-spacing: 1.4px;
  }

  .header-button {
    justify-self: end;
    width: auto;
    min-width: auto;
    max-width: none;

    padding: 9px 15px;
    border-radius: 999px;

    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }

  .hero {
    padding-top: 54px;
  }

  .main-title {
    margin-bottom: 22px;
  }

  .main-title-image {
    width: 94vw;
    max-width: 520px;
  }

  .hero-subtitle {
    font-size: 25px;
  }

  .hero-text {
    font-size: 16px;
  }

  .choose-title {
    font-size: 34px;
    letter-spacing: 4px;
  }

  .choose-text {
    font-size: 16px;
    margin-bottom: 68px;
  }

  .section-divider {
    width: 54px;
    height: 3px;
    margin: 0 auto 22px;
  }

  .channel-card {
    width: 84vw;
    min-width: 280px;
    max-width: 380px;

    min-height: 430px;

    padding: 27px 25px 28px;

    flex: 0 0 auto;

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .channel-logo {
    width: clamp(140px, 5vw, 180px);
    height: clamp(140px, 5vw, 180px);

    object-fit: cover;
    border-radius: 50%;

    display: block;
    margin: 0 auto clamp(22px, 1.5vw, 30px);
  }

  .card-title {
    font-size: 23px;
  }

  .card-text {
    font-size: 16px;
  }

  .social-icons {
    gap: 22px;
  }

  .social-link {
    width: 62px;
    height: 62px;
  }

  .value-strip {
    width: 84vw;
    min-width: 280px;
    max-width: 380px;

    margin: 20px auto 0;

    gap: 24px;
    padding: 28px 24px;
  }

  .value-item {
    gap: 18px;
  }

  .value-icon {
    width: 44px;
    height: 44px;
  }

  .value-item h3 {
    font-size: 16px;
    letter-spacing: 4px;
    margin-bottom: 4px;
    line-height: 1.05;
  }

  .value-item p {
    font-size: 16px;
    line-height: 1.2;
  }

  .site-footer {
    padding: 48px 22px 34px;
  }
}

/* EXTRA SMALL MOBILE */

@media (max-width: 380px) {
  .site-header {
    padding: 0 12px;
  }

  .header-inner {
    gap: 8px;
  }

  .header-logo {
    width: 34px;
    height: 34px;
  }

  .nav-center {
    font-size: 12px;
    letter-spacing: 1.1px;
  }

  .header-button {
    padding: 8px 12px;
    font-size: 11px;
  }

  .main-title-image {
    width: 96vw;
  }

  .hero-subtitle {
    font-size: 23px;
  }

  .social-link {
    width: 58px;
    height: 58px;
  }
}

/* PRIVACY PAGE */

.privacy-page {
  display: block;
  min-height: auto;

  padding: 90px 24px;

  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.78) 0%,
      rgba(10, 10, 10, 0.88) 100%
    ),
    url("assets/background-fakeoff.webp");

  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.privacy-content {
  width: 100%;
  max-width: 900px;

  margin: 0 auto;
  padding: 48px;

  background: rgba(5, 5, 5, 0.86);
  border: 1.5px solid rgba(201, 154, 36, 0.45);
  border-radius: var(--radius);

  color: var(--text-muted);
}

.privacy-content h1 {
  color: var(--text-white);
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.privacy-content h2 {
  color: var(--gold);
  font-size: 22px;
  margin-top: 34px;
  margin-bottom: 12px;
}

.privacy-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.privacy-content a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 620px) {
  .privacy-page {
    padding: 56px 16px;
  }

  .privacy-content {
    padding: 30px 22px;
  }

  .privacy-content h1 {
    font-size: 34px;
  }

  .privacy-content h2 {
    font-size: 19px;
  }

  .privacy-content p {
    font-size: 15px;
  }
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 28px;

  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;

  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.back-link:hover {
  color: var(--gold-light);
  transform: translateX(-3px);
}
