@font-face {
  font-family: 'Tan Aegaen';
  src: url('../fonts/TAN-Aegean/TAN Aegean 2022/TAN AEGEAN Regular.woff2') format('woff2'),
       url('../fonts/TAN-Aegean/TAN Aegean 2022/TANAEGEAN-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aileron';
  src: url('../fonts/Aileron-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #062E05;
  --sand: #F8F7F2;
  --card: #FFFFFF;
  --accent: #0C5B0A;
  --muted: rgba(6, 46, 5, 0.65);
  --shadow: 0 12px 30px rgba(6, 46, 5, 0.08);
}

body {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(120, 180, 100, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(80, 120, 200, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(12, 91, 10, 0.08) 0%, transparent 60%),
    #EEF2E8;
  min-height: 100vh;
}

/* Full-width sticky bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
  box-sizing: border-box;
  background: rgba(248, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(6, 46, 5, 0.1);
  box-shadow: 0 2px 18px rgba(6, 46, 5, 0.07);
  margin-bottom: 48px;
}

/* Centered content row */
.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.site-header a,
.site-header button {
  text-decoration: none !important;
  cursor: pointer;
}

.site-header button {
  font-family: inherit;
}

.site-header a:hover,
.site-header a:focus,
.site-header a:active {
  text-decoration: none !important;
}

.site-header .site-header__brand {
  font-family: 'Tan Aegaen', serif;
  font-size: 24px;
  letter-spacing: 0.5px;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}

.site-header .site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-wrap: wrap;
}

.site-header .site-header__link {
  text-decoration: none;
  font-size: 14px;
  border: 1px solid rgba(6, 46, 5, 0.3);
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.site-header .site-header__link:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--ink);
  box-shadow: 0 4px 12px rgba(6, 46, 5, 0.1);
  transform: translateY(-1px);
}

.site-header .site-header__pill {
  text-decoration: none;
  background: var(--ink);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--ink);
  box-shadow: 0 4px 14px rgba(6, 46, 5, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}

.site-header .site-header__pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(6, 46, 5, 0.25);
  opacity: 0.93;
}

@media (max-width: 720px) {
  .site-header__inner {
    padding: 12px 18px;
  }
}
