:root {
  --lime: #b8e62e;
  --lime-soft: #d4f06a;
  --yellow-bright: #ffe566;
  --forest: #0f3d2c;
  --forest-light: #1a5c45;
  --mint: #a8f0c9;
  --paper: #f6faf4;
  --ink: #0c1f18;
  --white: #ffffff;
  --radius: 14px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  font-size: clamp(15px, 1.05vw + 12px, 18px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--forest) 10%, transparent);
}
.site-header-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header a.logo {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--forest);
  text-decoration: none;
}
.back-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--forest-light);
  text-decoration: none;
}
.back-link:hover { text-decoration: underline; }

.article-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.article-wrap header.article-head {
  margin-bottom: 2rem;
}

.article-wrap .kicker {
  font-family: Outfit, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--forest-light);
  margin: 0 0 0.5rem;
}

.article-wrap h1 {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.65rem, 3vw + 0.8rem, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--forest);
  margin: 0 0 0.75rem;
}

.article-wrap .lead {
  font-size: 1.08rem;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
  margin: 0 0 1.75rem;
}

.article-body h2 {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--forest);
  margin: 2rem 0 0.65rem;
}

.article-body p { margin: 0 0 1rem; }

.figure-grid {
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0;
}

@media (min-width: 560px) {
  .figure-grid { grid-template-columns: 1fr 1fr; }
  .figure-grid.figure-grid--single { grid-template-columns: 1fr; }
}
.figure-grid--single {
  grid-template-columns: 1fr;
  max-width: 640px;
}

.article-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 61, 44, 0.12);
  border: 1px solid color-mix(in srgb, var(--forest) 8%, transparent);
  background: var(--white);
}

.article-figure img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.article-figure figcaption {
  padding: 0.55rem 0.75rem;
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--ink) 68%, transparent);
  background: color-mix(in srgb, var(--mint) 12%, var(--white));
}

.article-footer-bar {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--forest) 12%, transparent);
}

.btn-home {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-soft) 50%, var(--yellow-bright) 100%);
  color: var(--forest);
  text-decoration: none;
  transition: transform 0.25s var(--ease-out);
}
.btn-home:hover { transform: translateY(-2px); }

.article-body ul {
  margin: 0 0 1rem 1.15rem;
  padding: 0;
}
.article-body li { margin-bottom: 0.4rem; }

.legal-nav-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--forest) 12%, transparent);
  font-size: 0.88rem;
}
.legal-nav-inline a {
  color: var(--forest-light);
  font-weight: 600;
  text-decoration: none;
}
.legal-nav-inline a:hover { text-decoration: underline; }

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid color-mix(in srgb, var(--forest) 10%, transparent);
  box-shadow: 0 8px 22px rgba(15, 61, 44, 0.08);
}
.contact-card h2 {
  margin-top: 0 !important;
}
.contact-email {
  font-size: clamp(1rem, 2vw + 0.85rem, 1.2rem);
  font-weight: 700;
  word-break: break-word;
}
.contact-email a {
  color: var(--forest-light);
}
