/* ── FONTS ── */
@font-face { font-family: 'Borna'; src: url('fonts/Borna-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'Borna'; src: url('fonts/Borna-Medium.otf') format('opentype'); font-weight: 500; font-style: normal; }
@font-face { font-family: 'Borna'; src: url('fonts/Borna-SemiBold.otf') format('opentype'); font-weight: 600; font-style: normal; }
@font-face { font-family: 'Borna'; src: url('fonts/Borna-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; }
@font-face { font-family: 'Silka'; src: url('fonts/Silka-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'Silka'; src: url('fonts/Silka-Medium.otf') format('opentype'); font-weight: 500; font-style: normal; }
@font-face { font-family: 'NudicaMono'; src: url('fonts/NudicaMono-Medium.otf') format('opentype'); font-weight: 500; font-style: normal; }

/* ── GLOBAL FONT VARIABLES ── */
:root {
  --font-head: 'Borna', sans-serif;
  --font-body: 'Silka', sans-serif;
  --font-mono: 'NudicaMono', 'Courier New', monospace;
}

/* ── SHARED NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #efeeee;
  padding: 0 64px;
  height: 71px;
  display: flex;
  align-items: flex-end;
}

.navbar-inner {
  width: 100%;
  max-width: 1312px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #000;
}

.navbar-logo a,
.navbar-logo .logo-text {
  font-family: 'NudicaMono', 'Courier New', monospace;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.72px;
  color: #000;
  text-decoration: none;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.nav-geo-logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.navbar-links a {
  font-family: 'NudicaMono', 'Courier New', monospace;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.64px;
  color: #000;
  text-decoration: none;
  line-height: 1.5;
  transition: opacity 0.2s;
}
.navbar-links a:hover      { opacity: 0.5; }
.navbar-links a.nav-active { opacity: 1; border-bottom: 2px solid #000; }

/* ── SHARED FOOTER ── */
.site-footer {
  background: #000;
  padding: 48px 64px;
  flex-shrink: 0;
}

.site-footer-inner {
  max-width: 1312px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.site-footer-left { display: flex; flex-direction: column; gap: 12px; }
.site-footer-left .logo-container { display: flex; align-items: center; gap: 12px; }
.site-footer-left .logo-text {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.64px;
  color: #fff;
}
.site-footer-left .nav-geo-logo { filter: invert(1); }

.site-footer-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.4);
  max-width: 380px;
}

.site-footer-right { text-align: right; display: flex; flex-direction: column; gap: 12px; }

.site-footer-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.site-footer-links a {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer-links a:hover { color: #fff; }

.site-footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
