/* =====================================================
   VARIABLES
====================================================== */

:root {
  --bg: #080808;
  --bg-soft: #111111;

  --text: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.55);

  --line: rgba(245, 245, 245, 0.14);

  --max-width: 1500px;
  --side-padding: 5vw;
}


/* =====================================================
   RESET
====================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

img {
  display: block;
  width: 100%;
}

main {
  width: 100%;
}


/* =====================================================
   GENERIC
====================================================== */

.section {
  padding:
    130px
    var(--side-padding);
}

.section-heading {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 45px;
}

.section-label,
.section-number,
.eyebrow,
.release-status,
.platforms-title {
  font-size: 10px;

  letter-spacing: 0.22em;
}

.section-label,
.section-number,
.eyebrow,
.release-status {
  color: var(--muted);
}

.section-number {
  opacity: 0.7;
}

.seo-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* =====================================================
   PLACEHOLDERS
====================================================== */

.placeholder-image {
  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #181818,
      #0d0d0d
    );
}

.placeholder-image::before,
.placeholder-image::after {
  content: "";

  position: absolute;

  left: -20%;
  top: 50%;

  width: 140%;
  height: 1px;

  z-index: 1;

  background:
    rgba(
      255,
      255,
      255,
      0.07
    );

  pointer-events: none;
}

.placeholder-image::before {
  transform: rotate(-20deg);
}

.placeholder-image::after {
  transform: rotate(20deg);
}

.placeholder-label {
  position: absolute;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%);

  z-index: 2;

  color:
    rgba(
      255,
      255,
      255,
      0.38
    );

  font-size: 9px;

  letter-spacing: 0.18em;

  white-space: nowrap;

  pointer-events: none;
}

.placeholder-image img {
  position: relative;

  z-index: 3;

  width: 100%;
  height: 100%;
}


/* =====================================================
   HEADER
====================================================== */

.site-header {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  display: flex;

  align-items: center;
  justify-content: space-between;

  padding:
    26px
    var(--side-padding);

  background: transparent;

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


/* HEADER HIDDEN */

.site-header.hidden {
  opacity: 0;

  transform:
    translateY(-20px);

  pointer-events: none;
}


/* LOGO */

.logo {
  display: flex;

  align-items: center;
}

.header-logo {
  display: block;

  width: auto;
  height: 28px;

  object-fit: contain;
}


/* DESKTOP MENU */

.desktop-menu {
  display: flex;

  gap: 30px;
}

.desktop-menu a {
  position: relative;

  font-size: 10px;

  letter-spacing: 0.18em;
}

.desktop-menu a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -5px;

  width: 100%;
  height: 1px;

  background: currentColor;

  transform: scaleX(0);

  transform-origin: right;

  transition:
    transform 0.35s ease;
}

.desktop-menu a:hover::after {
  transform: scaleX(1);

  transform-origin: left;
}


/* =====================================================
   MOBILE BUTTON
====================================================== */

.menu-toggle {
  display: none;

  position: relative;

  width: 32px;
  height: 32px;

  border: 0;

  background: transparent;

  cursor: pointer;

  z-index: 1001;
}

.menu-toggle span {
  position: absolute;

  left: 3px;

  width: 26px;
  height: 1px;

  background: white;

  transition:
    transform 0.35s ease,
    top 0.35s ease;
}

.menu-toggle span:first-child {
  top: 11px;
}

.menu-toggle span:last-child {
  top: 20px;
}

.menu-toggle.active span:first-child {
  top: 16px;

  transform: rotate(45deg);
}

.menu-toggle.active span:last-child {
  top: 16px;

  transform: rotate(-45deg);
}


/* =====================================================
   MOBILE MENU
====================================================== */

.mobile-menu {
  position: fixed;

  inset: 0;

  z-index: 900;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding:
    120px
    var(--side-padding)
    45px;

  background: var(--bg);

  opacity: 0;

  visibility: hidden;

  transform:
    translateY(-15px);

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease;
}

.mobile-menu.open {
  opacity: 1;

  visibility: visible;

  transform:
    translateY(0);
}

.mobile-menu nav {
  display: flex;

  flex-direction: column;
}

.mobile-menu nav a {
  padding: 10px 0;

  border-bottom:
    1px solid var(--line);

  font-size:
    clamp(
      40px,
      12vw,
      70px
    );

  line-height: 1.05;

  letter-spacing: -0.04em;
}

.mobile-socials {
  display: flex;

  flex-wrap: wrap;

  gap: 22px;
}

.mobile-socials a {
  color: var(--muted);

  font-size: 10px;

  letter-spacing: 0.18em;
}


/* =====================================================
   HERO
====================================================== */

.hero {
  position: relative;

  width: 100%;

  height: 100vh;

  min-height: 680px;

  overflow: hidden;

  background: #111;
}


/* HERO BACKGROUND */

.hero-background {
  position: absolute;

  inset: 0;

  z-index: 1;

  overflow: hidden;

  background-size: cover;

  background-position: center center;

  background-repeat: no-repeat;
}


/* HERO VIDEO */

.hero-video {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center center;
}


/* HERO PLACEHOLDER */

.hero-background.placeholder-image {
  background:
    linear-gradient(
      135deg,
      #202020,
      #101010
    );
}

.hero-background.placeholder-image
.placeholder-label {
  top: 42%;
}


/* HERO OVERLAY */

.hero-overlay {
  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.18) 45%,
      rgba(0, 0, 0, 0.05) 100%
    );
}


/* HERO CONTENT */

.hero-content {
  position: absolute;

  left: var(--side-padding);
  right: var(--side-padding);

  bottom: 5vh;

  z-index: 5;
}

.hero h2 {
  margin-top: 18px;

  font-size:
    clamp(
      74px,
      14vw,
      210px
    );

  line-height: 0.82;

  font-weight: 400;

  letter-spacing: -0.06em;
}

.hero-actions {
  display: flex;

  align-items: center;

  gap: 30px;

  margin-top: 24px;
}

/* HERO LINKS */

.primary-link,
.secondary-link {
  position: relative;

  display: inline-block;

  padding-bottom: 8px;

  color: rgba(255, 255, 255, 0.70);

  font-size: 10px;
  letter-spacing: 0.18em;

  transition: color 0.25s ease;
}


/* SUBRAYADO */

.primary-link::after,
.secondary-link::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 1px;

  background: white;

  transform: scaleX(0);
  transform-origin: right;

  transition:
    transform 0.35s ease;
}


/* HOVER */

.primary-link:hover,
.secondary-link:hover {
  color: white;
}

.primary-link:hover::after,
.secondary-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* SCROLL INDICATOR */

.scroll-indicator {
  position: absolute;

  right: var(--side-padding);

  bottom: 7vh;

  z-index: 5;

  display: flex;

  align-items: center;

  gap: 14px;

  transform:
    rotate(90deg);

  transform-origin:
    right bottom;
}

.scroll-indicator span {
  color:
    rgba(
      255,
      255,
      255,
      0.45
    );

  font-size: 8px;

  letter-spacing: 0.2em;
}

.scroll-line {
  width: 45px;

  height: 1px;

  background:
    rgba(
      255,
      255,
      255,
      0.45
    );
}


/* =====================================================
   MUSIC
====================================================== */

.music-section {
  max-width: var(--max-width);

  margin: 0 auto;
}

.release {
  display: grid;

  grid-template-columns:
    minmax(300px, 620px)
    1fr;

  gap: 8vw;

  align-items: end;
}

.release-cover {
  aspect-ratio: 1 / 1;

  overflow: hidden;
}

.release-cover img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  transition:
    transform
    0.8s
    cubic-bezier(
      .22,
      .61,
      .36,
      1
    );
}

.release-cover:hover img {
  transform:
    scale(1.025);
}

.release-info {
  padding-bottom: 5px;
}

.release-info h3 {
  margin-top: 18px;

  font-size:
    clamp(
      52px,
      7vw,
      110px
    );

  line-height: 0.9;

  letter-spacing: -0.05em;

  font-weight: 400;
}

.release-year {
  margin-top: 14px;

  margin-bottom: 46px;

  color: var(--muted);
}

.platform-links {
  display: flex;

  flex-direction: column;

  border-top:
    1px solid var(--line);
}

.platform-links a {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 18px 0;

  border-bottom:
    1px solid var(--line);

  font-size: 10px;

  letter-spacing: 0.16em;

  transition:
    opacity 0.25s ease;
}

.platform-links a:hover {
  opacity: 0.55;
}


/* =====================================================
   VIDEOS
====================================================== */

.videos-section {
  max-width: none;

  margin: 0;

  padding-right: 0;

  overflow: hidden;
}

.videos-header {
  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  gap: 30px;

  padding-right:
    var(--side-padding);
}

.videos-heading {
  flex: 1;

  margin-bottom: 0;
}


/* VIDEO CONTROLS */

.video-controls {
  display: flex;

  align-items: center;

  gap: 18px;
}

.video-btn {
  width: 36px;
  height: 36px;

  border:
    1px solid var(--line);

  border-radius: 50%;

  background: transparent;

  color: white;

  cursor: pointer;

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

.video-btn:hover {
  background: white;

  color: black;
}

.video-counter {
  min-width: 50px;

  color: var(--muted);

  text-align: center;

  font-size: 9px;

  letter-spacing: 0.16em;
}


/* VIDEO TRACK */

.video-track-wrapper {
  margin-top: 42px;

  overflow: hidden;
}

.video-track {
  display: flex;

  gap: 28px;

  transition:
    transform
    0.75s
    cubic-bezier(
      .22,
      .61,
      .36,
      1
    );

  will-change: transform;
}

.video-card {
  flex:
    0 0
    min(65vw, 900px);

  display: block;
}


/* =====================================================
   VIDEO IMAGE
   ORIGINAL: COVER
====================================================== */

.video-image {
  position: relative;

  width: 100%;

  aspect-ratio: 16 / 9;

  overflow: hidden;
}

.video-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center center;

  transition:
    transform
    0.8s
    cubic-bezier(
      .22,
      .61,
      .36,
      1
    );
}

.video-overlay {
  position: absolute;

  inset: 0;

  z-index: 4;

  background:
    rgba(
      0,
      0,
      0,
      0.08
    );

  pointer-events: none;
}

.play-button {
  position: absolute;
  inset: 0;

  z-index: 5;

  display: grid;
  place-items: center;

  pointer-events: none;
}

.play-button i {
  font-size: 24px;
  color: white;

  transform: translateX(1px);

  transition:
    transform 0.35s ease;
}

.video-card:hover .play-button i {
  transform:
    translateX(1px)
    scale(1.12);
}

.video-card:hover
.video-image img {
  transform:
    scale(1.03);
}

.video-card:hover
.play-button {
  transform:
    scale(1.12);
}


/* VIDEO TEXT */

.video-info {
  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  padding-top: 16px;
}

.video-info h3 {
  font-size: 15px;

  font-weight: 400;
}

.video-info p {
  margin-top: 6px;

  color: var(--muted);

  font-size: 9px;

  letter-spacing: 0.17em;
}

.video-arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;

  opacity: 0.55;
}

.video-arrow i {
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.video-card:hover .video-arrow i {
  transform:
    translate(2px, -2px);

  opacity: 1;
}


/* =====================================================
   GALLERY
====================================================== */

.gallery-section {
  padding-right: 0;

  overflow: hidden;
}

.gallery-header {
  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  gap: 30px;

  padding-right:
    var(--side-padding);
}

.gallery-heading {
  flex: 1;

  margin-bottom: 0;
}


/* GALLERY CONTROLS */

.gallery-controls {
  display: flex;

  align-items: center;

  gap: 18px;
}

.gallery-btn {
  width: 36px;
  height: 36px;

  border:
    1px solid var(--line);

  border-radius: 50%;

  background: transparent;

  color: white;

  cursor: pointer;

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

.gallery-btn:hover {
  background: white;

  color: black;
}

.gallery-counter {
  min-width: 50px;

  color: var(--muted);

  text-align: center;

  font-size: 9px;

  letter-spacing: 0.16em;
}


/* GALLERY TRACK */

.gallery-track-wrapper {
  margin-top: 42px;

  overflow: hidden;
}

.gallery-track {
  display: flex;

  gap: 20px;

  will-change: transform;

  transition:
    transform
    0.75s
    cubic-bezier(
      .22,
      .61,
      .36,
      1
    );
}

.gallery-slide {
  flex:
    0 0
    min(68vw, 900px);

  height: 74vh;

  min-height: 520px;

  max-height: 900px;

  overflow: hidden;

  cursor: zoom-in;
}

.gallery-slide img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;
}


/* =====================================================
   GALLERY LIGHTBOX
====================================================== */

.lightbox {
  position: fixed;

  inset: 0;

  z-index: 5000;

  display: flex;

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

  background:
    rgba(
      0,
      0,
      0,
      0.96
    );

  opacity: 0;

  visibility: hidden;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.lightbox.open {
  opacity: 1;

  visibility: visible;
}


/* LIGHTBOX IMAGE */

.lightbox-image-container {
  position: relative;

  display: flex;

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

  width:
    min(
      82vw,
      1400px
    );

  height: 88vh;
}

.lightbox-image {
  width: auto;
  height: auto;

  max-width: 100%;
  max-height: 100%;

  object-fit: contain;

  opacity: 0;

  transform:
    scale(0.98);

  transition:
    opacity 0.3s ease,
    transform 0.4s ease;
}

.lightbox.open
.lightbox-image {
  opacity: 1;

  transform:
    scale(1);
}


/* LIGHTBOX CLOSE */

.lightbox-close {
  position: absolute;

  top: 28px;
  right: 35px;

  z-index: 10;

  border: 0;

  background: transparent;

  color: white;

  font-size: 34px;

  font-weight: 200;

  line-height: 1;

  cursor: pointer;

  opacity: 0.7;

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

.lightbox-close:hover {
  opacity: 1;

  transform:
    rotate(90deg);
}


/* LIGHTBOX ARROWS */

.lightbox-arrow {
  position: absolute;

  top: 50%;

  z-index: 10;

  width: 48px;
  height: 48px;

  transform:
    translateY(-50%);

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.2
    );

  border-radius: 50%;

  background: transparent;

  color: white;

  cursor: pointer;

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

.lightbox-arrow:hover {
  background: white;

  color: black;
}

.lightbox-prev {
  left: 35px;
}

.lightbox-next {
  right: 35px;
}


/* LIGHTBOX COUNTER */

.lightbox-counter {
  position: absolute;

  left: 50%;
  bottom: -30px;

  transform:
    translateX(-50%);

  color:
    rgba(
      255,
      255,
      255,
      0.55
    );

  font-size: 9px;

  letter-spacing: 0.18em;
}


/* =====================================================
   ABOUT
====================================================== */

.about-section {
  display: flex;

  flex-direction: column;

  justify-content: center;

  max-width: var(--max-width);

  min-height: 80vh;

  margin: 0 auto;
}

.about-content {
  display: grid;

  grid-template-columns:
    1.7fr
    0.8fr;

  gap: 8vw;

  align-items: end;
}

.about-main {
  max-width: 1000px;

  font-size:
    clamp(
      56px,
      8vw,
      125px
    );

  line-height: 0.93;

  letter-spacing: -0.055em;
}

.about-secondary {
  max-width: 420px;

  color:
    rgba(
      245,
      245,
      245,
      0.65
    );

  font-size: 15px;

  line-height: 1.65;
}

.about-description + .about-description {
  margin-top: 24px;
}

.location {
  margin-top: 32px;

  color: var(--muted);

  font-size: 9px;

  letter-spacing: 0.18em;
}

/* =====================================================
   REVIEWS
====================================================== */

.reviews {
  margin-top: 120px;

  padding-top: 50px;

  border-top:
    1px solid var(--line);

  overflow: hidden;
}


.reviews-header {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 30px;
}


/* CONTROLS */

.review-controls {
  display: flex;

  align-items: center;

  gap: 18px;
}


.review-btn {
  width: 36px;
  height: 36px;

  border:
    1px solid var(--line);

  border-radius: 50%;

  background: transparent;

  color: white;

  cursor: pointer;

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


.review-btn:hover {
  background: white;

  color: black;
}


.review-counter {
  min-width: 50px;

  color: var(--muted);

  text-align: center;

  font-size: 9px;

  letter-spacing: 0.16em;
}


/* TRACK */

.review-track-wrapper {
  margin-top: 55px;

  overflow: hidden;
}


.review-track {
  display: flex;

  gap: 40px;

  will-change: transform;

  transition:
    transform
    0.75s
    cubic-bezier(
      .22,
      .61,
      .36,
      1
    );
}


/* CARD */

.review-card {
  flex: 0 0 min(64vw, 820px);

  min-height: 280px;

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

  padding: 30px 34px;

  border: 1px solid var(--line);

  background: rgba(255, 255, 255, 0.015);

  
}

.review-quote {
  max-width: 760px;

  font-size: clamp(
    24px,
    3vw,
    42px
  );

  line-height: 1.08;

  letter-spacing: -0.03em;

  font-weight: 400;
}

.review-author {
  margin-top: 24px;
}

.review-name {
  font-size: 10px;
  letter-spacing: 0.14em;
}

.review-role {
  margin-top: 5px;

  color: var(--muted);

  font-size: 8px;
  letter-spacing: 0.13em;
}


/* =====================================================
   REVIEWS MOBILE
====================================================== */

@media (max-width: 760px) {

  .review-card {
    flex-basis: 84vw;

    min-height: 240px;

    padding: 24px;
  }

  .review-quote {
    font-size: clamp(
      19px,
      5.5vw,
      26px
    );

    line-height: 1.2;
  }

  .review-author {
    margin-top: 24px;
  }

}


/* =====================================================
   BIG PLATFORM LINKS
====================================================== */

.platforms-section {
  padding:
    120px
    var(--side-padding);

  border-top:
    1px solid var(--line);
}

.platforms-title {
  margin-bottom: 36px;

  color: var(--muted);
}

.big-platform-links {
  display: flex;

  flex-direction: column;
}

.big-platform-links a {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 24px 0;

  border-bottom:
    1px solid var(--line);

  font-size:
    clamp(
      34px,
      6vw,
      90px
    );

  line-height: 1;

  letter-spacing: -0.04em;

  transition:
    padding-left 0.35s ease,
    opacity 0.35s ease;
}

.big-platform-links a:hover {
  padding-left: 16px;

  opacity: 0.72;
}

.big-platform-links
a span:last-child {
  font-size: 0.32em;

  letter-spacing: 0;

  opacity: 0.55;
}


/* =====================================================
   FOOTER
====================================================== */

.site-footer {
  padding:
    70px
    var(--side-padding)
    36px;

  border-top:
    1px solid var(--line);
}

.footer-top {
  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  gap: 40px;
}

.footer-logo {
  font-size:
    clamp(
      50px,
      8vw,
      110px
    );

  line-height: 0.9;

  letter-spacing: -0.04em;
}


/* SOCIAL ICONS */

.social-links {
  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 22px;
}

.social-links a {
  display: flex;

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

  color: var(--muted);

  font-size: 22px;

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

.social-links a:hover {
  color: var(--text);

  transform:
    translateY(-3px);
}

.disabled-link {
  opacity: 0.3;

  pointer-events: none;
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-top: 90px;

  padding-top: 22px;

  border-top:
    1px solid var(--line);

  color: var(--muted);

  font-size: 8px;

  letter-spacing: 0.16em;
}


/* =====================================================
   TABLET
====================================================== */

@media
(max-width: 1000px) {

  .release {
    gap: 6vw;
  }

  .about-content {
    grid-template-columns:
      1.4fr
      0.8fr;
  }

}


/* =====================================================
   MOBILE
====================================================== */

@media
(max-width: 760px) {

  :root {
    --side-padding: 22px;
  }


  .section {
    padding-top: 90px;

    padding-bottom: 90px;
  }


  /* HEADER */

  .desktop-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header {
    padding-top: 20px;

    padding-bottom: 20px;
  }

  .header-logo {
    height: 25px;
  }


  /* HERO */

  .hero {
    min-height: 620px;
  }

  .hero-video {
    object-position:
      center center;
  }

  .hero-content {
    bottom: 45px;
  }

  .hero h2 {
    font-size:
      clamp(
        68px,
        22vw,
        110px
      );
  }

  .hero-actions {
    flex-wrap: wrap;

    gap: 22px;

    margin-top: 20px;
  }

  .scroll-indicator {
    display: none;
  }


  /* MUSIC */

  .release {
    grid-template-columns: 1fr;

    gap: 36px;
  }

  .release-info h3 {
    font-size:
      clamp(
        52px,
        18vw,
        90px
      );
  }


  /* VIDEOS */

  .videos-header {
    align-items: center;
  }

  .video-controls {
    gap: 10px;
  }

  .video-btn {
    width: 32px;
    height: 32px;
  }

  .video-card {
    flex-basis: 84vw;
  }


  /* GALLERY */

  .gallery-header {
    align-items: center;
  }

  .gallery-controls {
    gap: 10px;
  }

  .gallery-btn {
    width: 32px;
    height: 32px;
  }

  .gallery-slide {
    flex-basis: 84vw;

    height: 63vh;

    min-height: 430px;
  }


  /* LIGHTBOX */

  .lightbox-image-container {
    width: 100vw;

    height: 80vh;

    padding: 20px;
  }

  .lightbox-close {
    top: 20px;

    right: 20px;
  }

  .lightbox-arrow {
    width: 40px;
    height: 40px;

    top: auto;
    bottom: 25px;

    transform: none;
  }

  .lightbox-prev {
    left: 22px;
  }

  .lightbox-next {
    right: 22px;
  }

  .lightbox-counter {
    bottom: -10px;
  }


  /* ABOUT */

  .about-section {
    min-height: auto;
  }

  .about-content {
    grid-template-columns: 1fr;

    gap: 42px;
  }

  .about-main {
    font-size:
      clamp(
        50px,
        17vw,
        88px
      );
  }


  /* PLATFORMS */

  .big-platform-links a {
    font-size:
      clamp(
        34px,
        12vw,
        62px
      );
  }


  /* FOOTER */

  .footer-top {
    flex-direction: column;
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    margin-top: 60px;
  }

}


/* =====================================================
   SMALL MOBILE
====================================================== */

@media
(max-width: 420px) {

  .section-heading {
    margin-bottom: 34px;
  }

  .hero h2 {
    font-size: 21vw;
  }

  .video-counter,
  .gallery-counter {
    display: none;
  }

  .video-card {
    flex-basis: 87vw;
  }

  .gallery-slide {
    flex-basis: 87vw;
  }

  .placeholder-label {
    font-size: 8px;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }

}
