.ote-site-footer {
  margin-top: clamp(4rem, 7vw, 7rem);
  background: color-mix(in oklab, var(--surface) 86%, var(--bg-muted) 14%);
  color: var(--text);
}

.ote-site-footer__main {
  gap: 1.5rem 2.5rem;
  padding-block: clamp(2.5rem, 4vw, 3.75rem);
  align-items: center;
}

.ote-site-footer__brand {
  display: grid;
  gap: 0.4rem;
  justify-items: start;
}

.ote-site-footer__brand .ote-logo-wrapper,
.ote-site-footer__brand .wp-block-shortcode {
  line-height: 0;
}

.ote-site-footer__nav {
  gap: 0.75rem 1.75rem;
  flex: 1 1 24rem;
}

.ote-site-footer__nav p {
  margin: 0;
}

.ote-site-footer__nav a {
  font-family: var(--font-serif, "Source Serif 4", Georgia, serif);
  font-size: 0.98rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: color-mix(in oklab, var(--text) 72%, var(--text-secondary) 28%);
  text-decoration: none;
  transition: color var(--trans-fast, 160ms ease), opacity var(--trans-fast, 160ms ease);
}

.ote-site-footer__nav a:hover,
.ote-site-footer__nav a:focus-visible {
  color: var(--brand);
  opacity: 1;
}

.ote-site-footer__utility {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.ote-site-footer__utility-link {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: color-mix(in oklab, var(--text) 68%, var(--text-secondary) 32%);
  background: color-mix(in oklab, var(--surface) 55%, var(--bg-muted) 45%);
  text-decoration: none;
  transition:
    color var(--trans-fast, 160ms ease),
    background var(--trans-fast, 160ms ease),
    transform var(--trans-fast, 160ms ease);
}

.ote-site-footer__utility-link:hover,
.ote-site-footer__utility-link:focus-visible {
  color: var(--brand);
  background: color-mix(in oklab, var(--brand) 10%, var(--surface) 90%);
  transform: translateY(-1px);
}

.ote-site-footer__utility-link svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ote-site-footer__bar {
  background: color-mix(in oklab, var(--surface) 72%, var(--bg-muted) 28%);
}

.ote-site-footer__meta {
  gap: 0.75rem;
  padding-block: 1.15rem;
  text-align: center;
}

.ote-site-footer__meta p {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: color-mix(in oklab, var(--text-secondary) 72%, var(--border) 28%);
  text-transform: uppercase;
}

.ote-site-footer__meta strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 900px) {
  .ote-site-footer__main {
    justify-content: center;
    text-align: center;
  }

  .ote-site-footer__brand {
    justify-items: center;
    width: 100%;
  }

  .ote-site-footer__nav {
    justify-content: center;
    width: 100%;
  }

  .ote-site-footer__utility {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 781px) {
  .ote-site-footer {
    margin-top: 3.5rem;
    padding-bottom: 72px;
  }

  .ote-site-footer__main {
    padding-block: 2.2rem;
    gap: 1.25rem;
  }

  .ote-site-footer__nav {
    gap: 0.6rem 1.1rem;
  }

  .ote-site-footer__nav a {
    font-size: 0.94rem;
  }

  .ote-site-footer__utility-link {
    width: 2.4rem;
    height: 2.4rem;
  }

  .ote-site-footer__meta p {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }
}

@media (prefers-color-scheme: dark) {
  .ote-site-footer {
    background: color-mix(in oklab, var(--surface) 90%, black 10%);
  }

  .ote-site-footer__utility-link {
    background: color-mix(in oklab, var(--surface) 82%, black 18%);
  }

  .ote-site-footer__utility-link:hover,
  .ote-site-footer__utility-link:focus-visible {
    background: color-mix(in oklab, var(--brand) 18%, var(--surface) 82%);
  }

  .ote-site-footer__bar {
    background: color-mix(in oklab, var(--surface) 80%, black 20%);
  }
}

[data-theme="dark"] .ote-site-footer,
.dark-theme .ote-site-footer,
.dark-mode .ote-site-footer,
body.dark .ote-site-footer {
  background: color-mix(in oklab, var(--surface) 90%, black 10%);
}

[data-theme="dark"] .ote-site-footer__utility-link,
.dark-theme .ote-site-footer__utility-link,
.dark-mode .ote-site-footer__utility-link,
body.dark .ote-site-footer__utility-link {
  background: color-mix(in oklab, var(--surface) 82%, black 18%);
}

[data-theme="dark"] .ote-site-footer__bar,
.dark-theme .ote-site-footer__bar,
.dark-mode .ote-site-footer__bar,
body.dark .ote-site-footer__bar {
  background: color-mix(in oklab, var(--surface) 80%, black 20%);
}
