/* tokens */
:root {
  --bg: #ff4f00;
  --fg: #000;
  --type-1: "Archivo Black", "Arial Black", sans-serif;
  --type-2: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --type-3: "DM Mono", "Courier New", monospace;
}

nav, nav *, footer, footer * { box-sizing: border-box; margin: 0; padding: 0; }
nav .container { width: 100%; padding: 2rem; max-width: 2000px; margin: 0 auto; }
nav a, nav p.type-mono, footer a, footer p.type-mono {
  text-decoration: none; text-transform: uppercase; font-family: var(--type-3);
  font-size: 0.75rem; font-weight: 400; line-height: 1.2; color: var(--fg);
}
footer h2, footer h3 { text-transform: uppercase; font-family: var(--type-1); font-weight: 500; line-height: 0.8; margin-top: 0.5rem; }
footer h2 { font-size: 3.5rem; letter-spacing: -0.15rem; }
footer h3 { font-size: 2.75rem; letter-spacing: -0.05rem; }
@media (max-width: 1000px) {
  footer h2 { font-size: 2.25rem; letter-spacing: -0.075rem; line-height: 0.85; }
  footer h3 { font-size: 1.75rem; letter-spacing: -0.025rem; line-height: 0.85; }
}

/* nav.css */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 10;
  mix-blend-mode: difference;
}

nav .container {
  display: flex;
  align-items: flex-start;
}

nav .nav-clock,
nav .nav-logo,
nav .nav-location {
  flex: 1;
}

nav .nav-clock {
  text-align: left;
}

nav .nav-location {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav .nav-location ion-icon {
  font-size: 0.6rem;
}

.nav-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-logo a {
  position: relative;
  transform: translateY(-0.6rem);
  width: 1.75rem;
  height: 1.75rem;
}

.nav-logo a svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

nav .nav-clock p,
nav .nav-location p {
  color: var(--bg);
}

nav .nav-logo a svg path,
nav .nav-logo a svg rect {
  fill: var(--bg);
}

nav .nav-location a {
  color: var(--bg);
  margin-left: 1.25rem;
  line-height: 1;
}

nav .nav-location ion-icon {
  color: var(--bg);
}

/* footer.css */
footer {
  position: relative;
  width: 100%;
  height: 75svh;
  background-color: var(--fg);
  color: var(--bg);
  overflow: hidden;
}

footer ::selection {
  background-color: var(--bg);
  color: var(--fg);
}

.footer-container {
  position: relative;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-35%);
  will-change: transform;
}

.footer-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

.footer-row {
  display: flex;
  justify-content: space-between;
}

.footer-row:nth-child(1) .footer-col:nth-child(1) {
  flex: 3;
}

.footer-row:nth-child(1) .footer-col:nth-child(2) {
  flex: 2.5;
  display: flex;
}

.footer-row:nth-child(1) .footer-col:nth-child(2) a {
  font-family: var(--type-2);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025rem;
  text-transform: none;
}

.footer-sub-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.footer-sub-col a,
.footer-sub-col p {
  color: var(--bg);
  padding: 0;
}

.footer-row:nth-child(2) p {
  color: var(--bg);
}

@media (max-width: 1000px) {
  .footer-container {
    transform: translateY(0%) !important;
  }

  .footer-row:nth-child(1) {
    flex-direction: column;
    gap: 4rem;
  }

  .footer-row:nth-child(2) {
    padding-bottom: 6rem;
    flex-direction: column;
  }

  .footer-row h2 {
    width: 100%;
  }
}
