:root {
  --go-ink: #1c2a24;
  --go-forest: #2f5d4a;
  --go-moss: #3f7a5f;
  --go-sand: #e8dfd0;
  --go-paper: #f7f3ec;
  --go-mist: #d9e4dc;
  --go-accent: #b86a2f;
  --go-white: #ffffff;
  --font-display: "Literata", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--go-ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(63, 122, 95, 0.12), transparent 60%),
    radial-gradient(900px 400px at 100% 0%, rgba(184, 106, 47, 0.08), transparent 55%),
    linear-gradient(180deg, var(--go-paper), #f3eee5 40%, var(--go-paper));
  min-height: 100vh;
}

a { color: var(--go-forest); text-underline-offset: 0.15em; }
a:hover { color: var(--go-accent); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(28, 42, 36, 0.08);
}

.navbar { padding-top: 0.85rem; padding-bottom: 0.85rem; }

.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--go-ink) !important;
  letter-spacing: -0.02em;
}

.nav-link {
  position: relative;
  font-weight: 500;
  color: rgba(28, 42, 36, 0.78) !important;
  padding: 0.4rem 0.75rem !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--go-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--go-white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 32, 26, 0.25) 0%, rgba(18, 32, 26, 0.72) 70%, rgba(18, 32, 26, 0.88) 100%),
    linear-gradient(120deg, #234536 0%, #3a6b54 45%, #8a5a32 100%);
  background-size: cover;
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.06) 0 1px, transparent 2px);
  background-size: 48px 48px, 32px 32px;
  opacity: 0.55;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.5rem;
  max-width: 920px;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 500;
  max-width: 34ch;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.hero__lead {
  max-width: 46ch;
  font-size: 1.05rem;
  opacity: 0.92;
  margin-bottom: 1.75rem;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn-primary {
  --bs-btn-bg: var(--go-accent);
  --bs-btn-border-color: var(--go-accent);
  --bs-btn-hover-bg: #9a5826;
  --bs-btn-hover-border-color: #9a5826;
  --bs-btn-active-bg: #9a5826;
  --bs-btn-active-border-color: #9a5826;
  font-weight: 600;
}

.btn-outline-light { font-weight: 600; }

.section { padding: 3.5rem 0; }
.section--soft { background: rgba(255,255,255,0.45); }

.page-hero { padding: 2.5rem 0 0.5rem; }

.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.page-lead {
  font-size: 1.1rem;
  color: rgba(28, 42, 36, 0.78);
  max-width: 60ch;
}

.page-meta {
  color: rgba(28, 42, 36, 0.55);
  font-size: 0.92rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
}

.content-body p,
.content-body li {
  font-size: 1.05rem;
  line-height: 1.7;
}

.content-body p { margin-bottom: 1.1rem; }

.callout {
  background: var(--go-mist);
  border-left: 4px solid var(--go-forest);
  padding: 1rem 1.15rem;
  margin: 1.5rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
}

.topic-tile,
.link-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  height: 100%;
  padding: 1.25rem 1.3rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(28, 42, 36, 0.08);
  border-radius: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.topic-tile:hover,
.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 93, 74, 0.35);
  box-shadow: 0 10px 28px rgba(28, 42, 36, 0.08);
  color: inherit;
}

.topic-tile__title,
.link-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.topic-tile__text,
.link-card__text {
  color: rgba(28, 42, 36, 0.68);
  font-size: 0.95rem;
}

.news-card {
  height: 100%;
  padding: 1.4rem;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(28, 42, 36, 0.08);
  border-radius: 0.75rem;
}

.news-card__date {
  display: block;
  font-size: 0.85rem;
  color: rgba(28, 42, 36, 0.55);
  margin-bottom: 0.4rem;
}

.news-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.news-card__title a { text-decoration: none; color: inherit; }
.news-card__title a:hover { color: var(--go-forest); }

.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 1.5rem;
  background: var(--go-ink);
  color: rgba(247, 243, 236, 0.88);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-tagline,
.footer-legal { color: rgba(247, 243, 236, 0.72); font-size: 0.95rem; }

.footer-parent a,
.footer-list a {
  color: #f0d2b0;
  text-decoration: none;
}
.footer-parent a:hover,
.footer-list a:hover { color: #fff; }

.footer-heading {
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(247, 243, 236, 0.55);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li { margin-bottom: 0.45rem; }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(247, 243, 236, 0.12);
  font-size: 0.88rem;
  color: rgba(247, 243, 236, 0.55);
}

.breadcrumb {
  --bs-breadcrumb-divider-color: rgba(28,42,36,0.35);
  font-size: 0.9rem;
}

.anim-fade { animation: fadeIn 0.7s ease both; }
.anim-rise { animation: riseIn 0.75s ease both; }
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.22s; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767.98px) {
  .hero { min-height: 78vh; align-items: center; }
  .hero__inner { padding: 5.5rem 0 2.5rem; }
}
