/* =========================================================
   82 Footer
   83rd Warehouse Design Footer
========================================================= */

.l-soho-warehouse-footer {
  position: relative;
  overflow: hidden;

  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.012) 0,
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 4px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.06) 0,
      rgba(0, 0, 0, 0.06) 1px,
      transparent 1px,
      transparent 7px
    ),
    radial-gradient(
      circle at 22% 36%,
      rgba(137, 29, 33, 0.10),
      transparent 34%
    ),
    radial-gradient(
      circle at 72% 62%,
      rgba(137, 29, 33, 0.08),
      transparent 42%
    ),
    linear-gradient(
      135deg,
      var(--soho-red-deep, #100405) 0%,
      #210708 28%,
      var(--soho-red-dark, #310b0d) 54%,
      #1a0506 76%,
      #0c0304 100%
    );

  color: var(--soho-gold, #b48d4b);
  border-top: 1px solid rgba(180, 141, 75, 0.24);
}

.l-soho-warehouse-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  opacity: 0.42;

  background-image:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 31%,
      rgba(0, 0, 0, 0.18) 32%,
      transparent 34%,
      transparent 100%
    ),
    linear-gradient(
      22deg,
      transparent 0%,
      transparent 58%,
      rgba(0, 0, 0, 0.14) 59%,
      transparent 61%,
      transparent 100%
    ),
    repeating-radial-gradient(
      circle at 18% 28%,
      rgba(0, 0, 0, 0.08) 0,
      rgba(0, 0, 0, 0.08) 1px,
      transparent 1px,
      transparent 10px
    );
}

.l-soho-warehouse-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.10) 28%,
      rgba(0, 0, 0, 0.12) 68%,
      rgba(0, 0, 0, 0.48) 100%
    ),
    radial-gradient(
      circle at 50% 52%,
      transparent 0%,
      rgba(0, 0, 0, 0.42) 100%
    );
}

.l-soho-warehouse-footer__inner {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 176px;
  gap: 0;
  align-items: stretch;

  width: 100%;
  margin: 0;
  padding: 14px 0 14px 56px;
}

.l-soho-warehouse-footer__block {
  min-width: 0;
  padding: 0 40px;
}

.l-soho-warehouse-footer__block:first-child {
  padding-left: 0;
}

.l-soho-warehouse-footer__block + .l-soho-warehouse-footer__block {
  border-left: 1px solid var(--soho-gold-line, rgba(180, 141, 75, 0.18));
}

.l-soho-warehouse-footer__block--brand,
.l-soho-warehouse-footer__block--location,
.l-soho-warehouse-footer__block--contact {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.l-soho-warehouse-footer__block--brand {
  gap: 18px;
}

.l-soho-warehouse-footer__name {
  margin: 0;

  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.2;
  letter-spacing: 0.12em;
}

.l-soho-warehouse-footer[data-lang="en"] .l-soho-warehouse-footer__name {
  font-family: var(--soho-font-en, serif);
}

.l-soho-warehouse-footer__tagline {
  margin: 0;

  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  opacity: 0.82;
}

.l-soho-warehouse-footer__heading {
  margin: 0 0 12px;

  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: none;
  opacity: 0.72;
}

.l-soho-warehouse-footer[data-lang="en"] .l-soho-warehouse-footer__heading {
  font-family: var(--soho-font-en, serif);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.l-soho-warehouse-footer__address,
.l-soho-warehouse-footer__tel,
.l-soho-warehouse-footer__map {
  margin: 0;
}

.l-soho-warehouse-footer__address + .l-soho-warehouse-footer__map {
  margin-top: 10px;
}

.l-soho-warehouse-footer p {
  margin: 0;
}

.l-soho-warehouse-footer__address p,
.l-soho-warehouse-footer__tel p,
.l-soho-warehouse-footer__map p {
  font-size: 13px;
  line-height: 1.62;
  letter-spacing: 0.06em;
  opacity: 0.82;
}

.l-soho-warehouse-footer a {
  color: currentColor;
  text-decoration: none;
  border-bottom: 1px solid rgba(180, 141, 75, 0.42);
}

.l-soho-warehouse-footer__sns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;

  margin: 0;
  padding: 0;
  list-style: none;
}

.l-soho-warehouse-footer__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  border: 0;
  border-bottom: 0;
  border-radius: 0;
  text-decoration: none;

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

.l-soho-warehouse-footer__sns a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.l-soho-warehouse-footer__sns img {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;

  filter: var(--soho-footer-logo-gold-filter);
}

.l-soho-warehouse-footer__sns span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.l-soho-warehouse-footer__tel {
  margin-top: 12px;
}

.l-soho-warehouse-footer__block--logo {
  display: grid;
  place-items: center;

  width: 100%;
  height: 100%;
  padding: 0;
}

.l-soho-warehouse-footer__logo {
  display: grid;
  place-items: center;

  width: 100%;
}

.l-soho-warehouse-footer .l-soho-warehouse-footer__logoLink {
  display: inline-grid;
  place-items: center;

  width: auto;

  color: inherit;
  text-decoration: none;
  border: 0;
  border-bottom: 0;
}

.l-soho-warehouse-footer .l-soho-warehouse-footer__logoLink:hover {
  border: 0;
  border-bottom: 0;
}

.l-soho-warehouse-footer__logo img {
  display: block;
  width: 86px;
  height: auto;
  opacity: 0.88;

  filter: var(--soho-footer-logo-gold-filter);

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

.l-soho-warehouse-footer .l-soho-warehouse-footer__logoLink:hover img {
  opacity: 1;
  transform: scale(1.03);
}

/* =========================================================
   Footer Copy
   Thin utility footer
========================================================= */

.l-footer-copy {
  position: relative;

  background: var(--soho-black, #0e0d0a);
  color: rgba(180, 141, 75, 0.62);

  border-top: 1px solid rgba(180, 141, 75, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 -1px 0 rgba(0, 0, 0, 0.48);
}

.l-footer-copy__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;

  width: 100%;
  margin: 0;
  padding: 3px 56px;

  font-size: 10px;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.l-footer-copy__language {
  min-width: 0;
  text-align: left;
  white-space: nowrap;
  opacity: 0.72;
}

.l-footer-copy__main {
  min-width: 0;
  text-align: right;
  opacity: 0.62;
}

.l-footer-copy__copyright,
.l-footer-copy__support {
  display: inline;
}

.l-footer-copy__label {
  opacity: 0.72;
}

.l-footer-copy__dot,
.l-footer-copy__separator {
  opacity: 0.42;
}

.l-footer-copy a {
  color: currentColor;
  text-decoration: none;
  border-bottom: 1px solid rgba(180, 141, 75, 0.24);
}

.l-footer-copy a:hover {
  color: var(--soho-gold, #b48d4b);
  border-bottom-color: rgba(180, 141, 75, 0.54);
}

@media screen and (max-width: 960px) {
  .l-soho-warehouse-footer__inner {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
    padding: 22px 22px;
  }

  .l-soho-warehouse-footer__block {
    padding: 0;
  }

  .l-soho-warehouse-footer__block + .l-soho-warehouse-footer__block {
    border-left: 0;
    border-top: 1px solid var(--soho-gold-line, rgba(180, 141, 75, 0.18));
    padding-top: 18px;
    margin-top: 18px;
  }

  .l-soho-warehouse-footer__block--brand {
    gap: 16px;
  }

  .l-soho-warehouse-footer__sns img {
    width: 25px;
    height: 25px;
  }

  .l-soho-warehouse-footer__block--logo {
    justify-items: end;
  }

  .l-soho-warehouse-footer__logo {
    justify-items: end;
    width: 100%;
  }

  .l-soho-warehouse-footer .l-soho-warehouse-footer__logoLink {
    width: auto;
    border: 0;
    border-bottom: 0;
  }

  .l-soho-warehouse-footer__logo img {
    width: 82px;
  }

  .l-footer-copy__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;

    padding: 4px 22px;

    font-size: 10px;
    line-height: 1.35;
  }

  .l-footer-copy__language {
    text-align: left;
    white-space: normal;
  }

  .l-footer-copy__main {
    text-align: left;
  }

  .l-footer-copy__copyright,
  .l-footer-copy__support {
    display: block;
  }

  .l-footer-copy__support .l-footer-copy__separator:first-child {
    display: none;
  }
}
