/* =========================================
   OCEAN SKY 007 - FOOTER
========================================= */

/* =========================================
   FOOTER SHELL
========================================= */

.os-site-footer {
  background: var(--os-ink);
  color: var(--os-white);
}

.os-footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 70px;
  width: calc(100% - 64px);
  max-width: var(--os-wrap);
  margin: 0 auto;
  padding: 86px 0 72px;
}


/* =========================================
   FOOTER BRAND
========================================= */

.os-footer-brand {
  max-width: 520px;
}

.os-footer-logo {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--os-white);
  font-family: var(--os-font-heading);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.os-footer-text {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--os-font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
}


/* =========================================
   FOOTER NAVIGATION
========================================= */

.os-footer-nav {
  width: 100%;
}

.os-footer-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.os-footer-menu a {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--os-font-heading);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.os-footer-menu a:hover {
  color: var(--os-white);
}


/* =========================================
   FOOTER CONTACT
========================================= */

.os-footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.os-footer-contact-label {
  margin-bottom: 6px;
  color: var(--os-beige);
  font-family: var(--os-font-heading);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.os-footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--os-font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.4;
  transition: color 220ms ease;
}

.os-footer-contact a:hover {
  color: var(--os-white);
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.os-footer-bottom {
  width: calc(100% - 64px);
  max-width: var(--os-wrap);
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.os-footer-bottom p {
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--os-font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}


/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 1024px) {
  .os-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 52px 44px;
    width: calc(100% - 40px);
  }

  .os-footer-brand {
    grid-column: 1 / -1;
  }

  .os-footer-bottom {
    width: calc(100% - 40px);
  }
}


/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 768px) {
  .os-footer-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    width: calc(100% - 22px);
    padding: 70px 0 54px;
  }

  .os-footer-logo {
    font-size: 15px;
    letter-spacing: 0.16em;
  }

  .os-footer-text {
    font-size: 16px;
  }

  .os-footer-menu {
    gap: 15px;
  }

  .os-footer-contact a {
    font-size: 16px;
  }

  .os-footer-bottom {
    width: calc(100% - 22px);
    padding: 22px 0;
  }

  .os-footer-bottom p {
    font-size: 13px;
  }
}