*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #232323;
  background: #ffffff;
  line-height: 26px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.1;
  font-weight: 900;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 200;
  background: #ff9e00;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
}

.skip-link:focus {
  top: 12px;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}

@media (max-width: 560px) {
  .container {
    padding-inline: 18px;
  }
}

.container--sm {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  padding-inline: 24px;
}

@media (max-width: 560px) {
  .container--sm {
    padding-inline: 18px;
  }
}

:focus {
  outline: none;
}

:focus-visible {
  outline-offset: 3px;
}

.btn:focus-visible,
.btn-player:focus-visible,
.nav__link:focus-visible,
.map-pin:focus-visible,
.nav-toggle:focus-visible {
  outline-offset: 3px;
}

.text-orange {
  color: #ff9e00;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.logo {
  display: inline-flex;
  align-items: baseline;
  font-family: "Montserrat Alternates", "Montserrat", sans-serif;
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: -0.5px;
  color: #ffffff;
  white-space: nowrap;
}

.logo__thin {
  font-weight: 400;
}

.logo__bold {
  font-weight: 600;
}

.logo__r {
  font-size: 0.42em;
  font-weight: 500;
  transform: translateY(-0.9em);
  margin-left: 1px;
}

.logo--orange {
  color: #ff9e00;
}

.logo--lg {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}

.logo--xl {
  font-size: clamp(3rem, 9vw, 6.5rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  padding: 13px 30px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.btn--solid {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.btn--solid:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.btn--orange {
  background: #ff9e00;
  color: #fff;
}

.btn--orange:hover {
  background: #e08c00;
  transform: translateY(-3px);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000000;
  min-height: 84px;
  display: flex;
  align-items: center;
}

.header__inner {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 560px) {
  .header__inner {
    padding-inline: 18px;
  }
}

.header .logo {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  padding-block: 8px;
  transition: color 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.nav__link:hover {
  color: #ff9e00;
}

.nav__link .caret {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.nav__item--has-sub:hover .nav__sub,
.nav__item--has-sub:focus-within .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__item--has-sub:hover .nav__link .caret {
  transform: rotate(225deg) translateY(2px);
}

.nav__sub {
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  min-width: 190px;
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.nav__sub li a {
  display: block;
  padding: 9px 14px;
  border-radius: 7px;
  font-size: 0.9rem;
  color: #b9b9b9;
  transition: all 0.2s ease;
}

.nav__sub li a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.btn-player {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ff9e00;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 11px 22px;
  border-radius: 8px;
  transition: background 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.btn-player:hover {
  background: #e08c00;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 84px 0 auto 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 24px 28px;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    transform: translateY(-120%);
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    text-align: center;
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
  }

  .nav__item {
    width: 100%;
  }

  .nav__link {
    padding-block: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    justify-content: center;
    width: 100%;
  }

  .nav__sub {
    position: static;
    translate: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0 0 8px;
    display: none;
    text-align: center;
  }

  .nav__sub li a {
    text-align: center;
  }

  .nav__item--has-sub.is-open .nav__sub {
    display: block;
  }

  .nav .btn-player {
    margin-top: 16px;
    align-self: center;
  }

  .nav.is-open {
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, #3a3a3a 0%, #2b2b2b 45%, #1c1c1c 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(90px, 14vw, 170px) 24px clamp(70px, 10vw, 120px);
  min-height: calc(100vh - 84px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to top right, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.07) 50%, transparent calc(50% + 0.5px)), linear-gradient(to bottom right, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.07) 50%, transparent calc(50% + 0.5px));
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.35) 18%, rgba(10, 10, 10, 0.45) 55%, rgba(10, 10, 10, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0a0a0a;
  pointer-events: none;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  padding-inline: 12px;
  box-sizing: border-box;
}

.hero__title {
  font-size: clamp(2rem, 7.5vw, 6rem);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero__subtitle {
  font-size: clamp(1.1rem, 4vw, 3rem);
  font-weight: 300;
  margin-top: 6px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(24px, 5vw, 52px);
}

.hero__actions .btn {
  min-height: 44px;
}

@media (max-width: 820px) {
  .hero {
    padding: clamp(72px, 12vw, 120px) 16px clamp(56px, 8vw, 90px);
    min-height: clamp(420px, 78vh, 720px);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__iframe-wrap iframe,
  .hero__iframe-wrap #hero-yt-player {
    width: 300vw;
    height: 168.75vw;
    min-width: 300vw;
    min-height: 168.75vw;
  }
}

@media (max-width: 560px) {
  .hero__title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .hero__subtitle {
    font-size: clamp(0.95rem, 4.2vw, 1.25rem);
  }
}

.hero--soon {
  min-height: 78vh;
}

.hero--soon .hero__title {
  font-size: clamp(1.85rem, 9.5vw, 7rem);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.05;
  padding-inline: 4px;
}

@media (max-width: 560px) {
  .hero--soon .hero__title {
    font-size: clamp(1.65rem, 10vw, 2.6rem);
  }
}

.hero--soon:not(.hero--video)::after {
  display: none;
}

.hero--soon:not(.hero--video) .hero__media {
  display: none;
}

.map-section {
  background: #ffffff;
}

.map-section__inner {
  width: 100%;
  max-width: 1800px;
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
}

@media (max-width: 992px) {
  .map-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 560px) {
  .map-section {
    padding-block: 24px;
  }

  .map-section__inner {
    padding-inline: 18px;
  }
}

.map-section__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(14px, 2vw, 22px);
  justify-self: center;
  width: 100%;
  max-width: 420px;
}

.map-section__logo-img {
  width: clamp(260px, 100%, 400px);
  height: auto;
  background: #fff;
}

.map-section__tagline-list {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 700;
  line-height: 1.4;
  color: #F89C1D;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.map-section__visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.map-section__flags {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(8px, 1.2vw, 14px);
}

.map-section__flags .flag {
  width: clamp(28px, 3.8vw, 38px);
  height: auto;
  display: block;
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.map-section__map {
  position: relative;
  width: 100%;
  overflow: visible;
}

.map-section__map>img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.08));
}

.map-section .map-pins {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-section .map-pin,
.map-section .map-pin-group {
  position: absolute;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 4px;
  z-index: 2;
  transform: translate(-100%, -50%);
  opacity: 0;
}

.map-section .map-pin-group {
  pointer-events: none;
}

.map-section .map-pin-group a {
  pointer-events: auto;
  display: block;
  border-radius: 4px;
}

.map-section .map-pin-group a+a {
  margin-top: -12%;
}

.map-section .map-pin-group__labels {
  flex: 0 0 auto;
  width: clamp(70px, 11vw, 130px);
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 2.5vw, 35px);
  position: relative;
  z-index: 2;
}

.map-section .map-pin-group__labels img {
  width: 100%;
  height: auto;
  display: block;
}

.map-section .map-pin__label {
  object-position: left;
  flex: 0 0 auto;
  width: clamp(70px, 11vw, 130px);
  aspect-ratio: 1635 / 358;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  background: #fff;
}

.map-section .map-pin__line {
  flex-grow: 1;
  width: auto;
  height: 2px;
  border-bottom: 2px dashed #5f5f5f;
  margin: 0 -12px;
  position: relative;
  z-index: 0;
}

.map-section .map-pin__diagonal-lines {
  flex-grow: 1;
  min-width: 15px;
  align-self: stretch;
  position: relative;
  z-index: 1;
  margin: 0 -2px;
}

.map-section .map-pin__diagonal-lines .map-pin__line {
  position: absolute;
  right: 0;
  top: 50%;
  transform-origin: right center;
  margin: 0;
  width: 100%;
}

.map-section .map-pin__diagonal-lines .line-top {
  transform: rotate(18deg);
}

.map-section .map-pin__diagonal-lines .line-middle {
  width: 100%;
  transform: rotate(0deg);
}

.map-section .map-pin__diagonal-lines .line-bottom {
  transform: rotate(-18deg);
}

@media (min-width: 1440px) {
  .map-section .map-pin__diagonal-lines .line-top {
    transform: rotate(12deg);
  }

  .map-section .map-pin__diagonal-lines .line-bottom {
    transform: rotate(-12deg);
  }
}

@media (max-width: 1024px) {
  .map-section .map-pin__diagonal-lines .line-top {
    transform: rotate(12deg);
  }

  .map-section .map-pin__diagonal-lines .line-bottom {
    transform: rotate(-12deg);
  }
}

@media (max-width: 560px) {
  .map-section .map-pin__diagonal-lines {
    margin: 0 -11px;
  }

  .map-section .map-pin__diagonal-lines .line-top {
    transform: rotate(21deg);
  }

  .map-section .map-pin__diagonal-lines .line-bottom {
    transform: rotate(-21deg);
  }
}

.map-section .map-pin__icon {
  flex: 0 0 auto;
  width: clamp(28px, 6vw, 48px);
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  transform: translate(-24%, -34%);
}

.map-section .map-pin:hover,
.map-section .map-pin:focus-visible,
.map-section .map-pin-group a:hover,
.map-section .map-pin-group a:focus-visible {
  outline-offset: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.map-section .map-pin::before {
  content: none;
}

.map-section .map-pin--panama {
  top: 11%;
  left: 28%;
  width: 33%;
}

.map-section .map-pin--ecuador {
  top: 26%;
  left: 30.5%;
  width: 35.5%;
}

.map-section .map-pin-group--peru {
  top: 37%;
  left: 35%;
  width: 40%;
}

.map-section .map-pin--bolivia {
  top: 49%;
  left: 51%;
  width: 56%;
}

@media (max-width: 820px) {
  .map-section__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .map-section__visual {
    display: contents;
  }

  .map-section__flags {
    order: 1;
    justify-content: flex-end;
  }

  .map-section__brand {
    order: 2;
    align-items: center;
    max-width: 360px;
    margin-inline: auto;
  }

  .map-section__logo-img {
    width: min(340px, 85vw);
  }

  .map-section__map {
    order: 3;
  }
}

@media (max-width: 560px) {
  .map-section__map {
    margin-inline: -4px;
    border-radius: 8px;
  }

  .map-section .map-pin--panama {
    width: 24%;
  }

  .map-section .map-pin--ecuador {
    width: 26.5%;
  }

  .map-section .map-pin-group--peru {
    width: 31%;
  }

  .map-section .map-pin--bolivia {
    width: 47%;
  }

  .map-section .map-pin-group__labels {
    gap: 10px;
  }

  .map-section .map-pin__icon {
    transform: translate(9%, -33%);
  }

  .map-section .map-pin-group__labels,
  .map-section .map-pin__label {
    width: 55px !important;
  }

  .map-section .map-pin__label {
    border-radius: 4px;
  }
}

.about {
  background: #f4f4f4;
  padding-block: clamp(56px, 8vw, 120px);
  text-align: center;
}

.about__eyebrow {
  color: #ff9e00;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  margin-bottom: 14px;
}

.about__title {
  color: #ff9e00;
  font-size: clamp(1.8rem, 6vw, 5.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.about__text {
  max-width: 880px;
  margin-inline: auto;
  padding-inline: 4px;
}

.about__text p {
  color: #232323;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  margin-bottom: 22px;
}

.hero-img {
  position: relative;
  min-height: clamp(360px, 52vw, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: #111;
}

.hero-img__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55));
  z-index: 1;
}

.hero-img__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  padding-inline: clamp(12px, 4vw, 28px);
  box-sizing: border-box;
}

.hero-img__content .logo {
  font-size: clamp(1.2rem, (100vw - 48px) / 12.2, 6rem);
  max-width: 100%;
}

@media (max-width: 820px) {
  .hero-img {
    min-height: clamp(280px, 58vh, 480px);
  }
}

.who {
  background: #f4f4f4;
  padding-block: clamp(56px, 8vw, 120px);
  text-align: center;
}

.who__title {
  color: #ff9e00;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 38px;
}

.who__title--sub {
  margin-top: 48px;
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.who__text {
  max-width: 880px;
  margin-inline: auto;
}

.who__text p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  margin-bottom: 22px;
}

.who__text strong {
  font-weight: 700;
  color: #232323;
}

.vm {
  display: grid;
  grid-template-columns: 55% 45%;
}

.vm__media {
  min-height: 800px;
  background-size: cover;
  background-position: center;
}

.vm__content {
  background: #ffffff;
  padding: clamp(60px, 8vw, 120px) clamp(32px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vm__block+.vm__block {
  margin-top: 40px;
}

.vm__h {
  color: #ff9e00;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.vm__p {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 640px;
}

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

  .vm__media {
    min-height: 500px;
  }
}

.footer {
  background: #000000;
  color: #ffffff;
  padding-block: 27px 15px;
}

.footer__inner {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
}

@media (max-width: 560px) {
  .footer__inner {
    padding-inline: 18px;
  }
}

.footer__brand .logo {
  font-size: 1.9rem;
  margin-bottom: 18px;
}

.footer__brand p {
  max-width: 360px;
  color: #b9b9b9;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer__col h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer__col ul li {
  margin-bottom: 4px;
}

.footer__col a,
.footer__col span {
  color: #b9b9b9;
  font-size: 0.95rem;
  transition: color 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.footer__col a {
  display: inline-block;
  padding-block: 2px;
  line-height: 1.5;
}

.footer__col a:hover,
.footer__col a:focus-visible {
  color: #ff9e00;
}

.footer__bottom {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 24px;
  margin-top: 75px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #b9b9b9;
}

@media (max-width: 560px) {
  .footer__bottom {
    padding-inline: 18px;
  }
}

@media (max-width: 820px) {
  .footer {
    padding-block: 56px 32px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer__brand {
    grid-column: 1/-1;
  }
}

@media (max-width: 560px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand p {
    margin-inline: auto;
  }
}