:root {
  color-scheme: dark;
  --bg: #09070b;
  --text: #f7f5f2;
  --muted: rgba(247, 245, 242, 0.62);
  --gold: rgba(214, 159, 72, 0.14);
  --footer-bg: #0d0e10;
  --footer-white: #efeff0;
  --footer-silver: #b0b0b5;
  --footer-muted: #77777d;
  --footer-line: #c6c6c9;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.coming-soon {
  display: flex;
  min-height: 100svh;
  padding: 2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, var(--gold), transparent 31rem),
    var(--bg);
  text-align: center;
  animation: reveal 1.1s ease-out both;
}

.hero-logo {
  width: clamp(15rem, 33vw, 30rem);
  height: auto;
  filter: drop-shadow(0 0 2rem rgba(214, 159, 72, 0.14));
}

.hero-message {
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.44em;
  text-indent: 0.44em;
  text-transform: uppercase;
}

.site-footer {
    /*min-height: 466px;*/
    background: linear-gradient(180deg, #101115 0%, var(--footer-bg) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.82);
    border-bottom: 8px solid rgba(91, 85, 102, 0.2);
    color: var(--footer-silver);
}

.footer-inner {
  width: calc(100% - 120px);
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 64px;
  padding-bottom: 32px;
}

.footer-heading {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 104px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  color: inherit;
  line-height: 1;
  text-decoration: none;
}

.brand-name {
  color: var(--footer-white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-category {
  margin-top: 5px;
  color: var(--footer-muted);
  font-size: 9px;
  letter-spacing: 0.23em;
}

.studio-name,
.services,
.year,
.footer-navigation a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.studio-name {
  margin: 14px 0 0;
  color: #7f7f84;
}

.services {
  margin: 3px 0 0;
  color: var(--footer-muted);
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
}

.year {
  margin: 4px 0 0;
  color: var(--footer-muted);
  text-align: right;
}

.footer-navigation {
  display: flex;
  min-height: 85px;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 27px;
  border-top: 1px solid var(--footer-line);
  border-bottom: 1px solid var(--footer-line);
}

.footer-navigation a {
  color: #b7b7bd;
  line-height: 1.4;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-navigation a:hover,
.footer-navigation a:focus-visible {
  color: #fff;
}

.footer-navigation a:focus-visible,
.footer-brand:focus-visible {
  border-radius: 2px;
  outline: 1px solid #fff;
  outline-offset: 5px;
}

.legal {
  padding-top: 33px;
}

.legal-copy {
  max-width: 105ch;
  margin: 0;
  color: #737379;
  font-size: 12px;
  line-height: 1.6;
}

.company-details {
  margin: 17px 0 0;
  color: #ececf0;
  font-size: 11px;
  letter-spacing: 0.015em;
}

@keyframes reveal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 800px) {
  .coming-soon {
    padding: 1.5rem;
  }

  .hero-message {
    max-width: 28rem;
    line-height: 1.8;
  }

  .site-footer {
    min-height: 0;
  }

  .footer-inner {
    width: calc(100% - 40px);
    /*padding: 40px 0 48px;*/
  }

  .footer-heading {
    grid-template-columns: 1fr auto;
    gap: 28px 20px;
    padding-bottom: 32px;
  }

  .services {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
    text-align: left;
    white-space: normal;
  }

  .year {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-navigation {
    gap: 18px 24px;
    padding: 26px 0;
  }

  .legal {
    padding-top: 28px;
  }
}

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

  .coming-soon {
    animation: none;
  }

  .footer-navigation a {
    transition: none;
  }
}
