@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);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 40px 22px 30px 22px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}

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

.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: 26px;
  letter-spacing: 0.5px;
  color: var(--ink);
  text-decoration: none;
}

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

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

.site-header .site-header__link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.site-header .site-header__pill {
  text-decoration: none;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.site-header .site-header__pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(6, 46, 5, 0.18);
  opacity: 0.95;
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header .site-header__actions {
    width: 100%;
    justify-content: flex-start;
  }
}

