@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Cormorant Garamond", serif;
  --font-baskerville: "Libre Baskerville", serif;
  --page-bg: #0a0a0a;
  --text-primary: #fff;
  --text-high: rgba(255, 255, 255, 0.8);
  --text-medium: rgba(255, 255, 255, 0.5);
  --surface-1: rgba(255, 255, 255, 0.05);
  --surface-2: rgba(255, 255, 255, 0.1);
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-default: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.2);
  --radius-pill: 9999px;
  --transition-fast: 0.2s;
  --header-blur: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  color-scheme: dark;
}

body {
  font-family: var(--font-sans);
  background: var(--page-bg);
  color: var(--text-primary);
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: relative;
  z-index: 50;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(var(--header-blur));
  -webkit-backdrop-filter: blur(var(--header-blur));
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 641px) {
  .header-inner {
    padding: 0 24px;
  }
}

@media (min-width: 1025px) {
  .header-inner {
    padding: 0 32px;
  }
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 28px;
  width: auto;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.875rem;
  text-align: center;
  padding-bottom: 40px;
}

.site-footer > .footer-divider {
  border-top: 1px solid var(--border-default);
  max-width: 896px;
  width: 100%;
  margin: 24px auto 32px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--text-high);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-links .sep {
  font-size: 0.625rem;
  color: var(--text-medium);
}

.footer-copy {
  color: var(--text-medium);
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.footer-tagline {
  color: var(--text-medium);
  font-family: var(--font-baskerville);
  font-style: italic;
  font-size: 1.125rem;
  max-width: 512px;
  line-height: 1.625;
}

@media (min-width: 640px) {
  .site-footer > .footer-divider {
    border-top: none;
  }
}

@media (max-width: 640px) {
  .footer-links .sep {
    display: none;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
}
