@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --near-black: #0e0f0c;
  --wise-green: #9fe870;
  --dark-green: #163300;
  --light-mint: #e2f6d5;
  --pastel-green: #cdffad;
  --warm-dark: #454745;
  --gray: #868685;
  --light-surface: #e8ebe6;
  --white: #ffffff;
  --danger: #d03238;
  --warning: #ffd11a;
  --positive: #054d28;
  --font-display: 'Inter', Helvetica, Arial, sans-serif;
  --font-body: 'Inter', Helvetica, Arial, sans-serif;
  --radius-pill: 9999px;
  --radius-card: 16px;
  --radius-card-md: 30px;
  --radius-card-lg: 40px;
  --shadow-ring: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.44;
  letter-spacing: 0.18px;
  color: var(--near-black);
  background: var(--white);
  font-feature-settings: "calt";
  -webkit-font-smoothing: antialiased;
}

a { color: var(--dark-green); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: normal;
  font-feature-settings: "calt";
  color: var(--near-black);
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  font-feature-settings: "calt";
  color: var(--near-black);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.108px;
  font-feature-settings: "calt";
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  transition: transform 0.15s ease;
  text-decoration: none;
}
.btn:hover { transform: scale(1.05); text-decoration: none; }
.btn:active { transform: scale(0.95); }

.btn--primary {
  background: var(--wise-green);
  color: var(--dark-green);
}
.btn--secondary {
  background: rgba(22, 51, 0, 0.08);
  color: var(--near-black);
}

.rh-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--light-surface);
}

.rh-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.rh-nav__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--near-black);
  font-feature-settings: "calt";
  text-decoration: none;
}
.rh-nav__logo span { color: var(--dark-green); }

.rh-nav__list {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}

.rh-nav__item a {
  display: block;
  padding: 6px 14px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--near-black);
  border-radius: var(--radius-pill);
  transition: background 0.15s, transform 0.15s;
  font-feature-settings: "calt";
  text-decoration: none;
}
.rh-nav__item a:hover { background: rgba(211,242,192,0.4); text-decoration: none; }
.rh-nav__item--active a { background: var(--light-mint); color: var(--dark-green); }

.rh-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.rh-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--near-black);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.hero {
  padding: 80px 0 64px;
  background: var(--white);
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__label {
  display: inline-block;
  background: var(--light-mint);
  color: var(--dark-green);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  font-feature-settings: "calt";
}
.hero__title {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.85;
  margin-bottom: 24px;
}
.hero__title span { color: var(--dark-green); }
.hero__desc {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--warm-dark);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__meta {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 600;
  font-feature-settings: "calt";
}
.hero__image {
  border-radius: var(--radius-card-md);
  overflow: hidden;
  box-shadow: var(--shadow-ring);
}
.hero__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.section { padding: 64px 0; }
.section--alt { background: #fafaf8; }

.section__header {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.section__label {
  display: inline-block;
  background: var(--light-mint);
  color: var(--dark-green);
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-feature-settings: "calt";
}
.section__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.9;
  margin-bottom: 12px;
}
.section__subtitle {
  font-size: 1.0625rem;
  color: var(--warm-dark);
  max-width: 640px;
  line-height: 1.6;
}

.grid-3 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-card-md);
  box-shadow: var(--shadow-ring);
  overflow: hidden;
  transition: transform 0.2s ease;
}
.card:hover { transform: translateY(-4px); }

.card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card__body { padding: 24px; }
.card__label {
  display: inline-block;
  background: var(--light-mint);
  color: var(--dark-green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  font-feature-settings: "calt";
}
.card__title {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.396px;
  margin-bottom: 10px;
  font-feature-settings: "calt";
  font-family: var(--font-body);
}
.card__title a { color: var(--near-black); }
.card__title a:hover { color: var(--dark-green); text-decoration: none; }
.card__excerpt {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--warm-dark);
  margin-bottom: 16px;
}
.card__footer {
  font-size: 0.8125rem;
  color: var(--gray);
  font-weight: 600;
  font-feature-settings: "calt";
}

.calendar-table {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.calendar-table table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  box-shadow: var(--shadow-ring);
}
.calendar-table th {
  background: var(--near-black);
  color: var(--white);
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 12px 16px;
  text-align: left;
  font-feature-settings: "calt";
}
.calendar-table td {
  padding: 10px 16px;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--light-surface);
  font-feature-settings: "calt";
}
.calendar-table tr:last-child td { border-bottom: none; }
.calendar-table tr:nth-child(even) td { background: #fafaf8; }

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-feature-settings: "calt";
}
.badge--green { background: var(--light-mint); color: var(--dark-green); }
.badge--yellow { background: #fff8d6; color: #7a5c00; }
.badge--gray { background: var(--light-surface); color: var(--warm-dark); }

.article-hero {
  padding: 64px 0 48px;
  background: var(--white);
  border-bottom: 1px solid var(--light-surface);
}
.article-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.article-hero__label {
  display: inline-block;
  background: var(--light-mint);
  color: var(--dark-green);
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  font-feature-settings: "calt";
}
.article-hero__title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 0.9;
  margin-bottom: 20px;
}
.article-hero__desc {
  font-size: 1.125rem;
  color: var(--warm-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}
.article-hero__meta {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 600;
  font-feature-settings: "calt";
}
.article-hero__image {
  margin-top: 36px;
  border-radius: var(--radius-card-md);
  overflow: hidden;
  box-shadow: var(--shadow-ring);
}
.article-hero__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.article-body h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 0.9;
  margin-top: 48px;
  margin-bottom: 16px;
}
.article-body h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1;
  margin-top: 32px;
  margin-bottom: 12px;
}
.article-body p { font-size: 1.0625rem; line-height: 1.65; color: var(--warm-dark); }
.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--warm-dark);
}
.article-body li { margin-bottom: 0.5rem; }
.article-body a { color: var(--dark-green); text-decoration: underline; }
.article-body a:hover { color: var(--near-black); }

.article-body .info-box {
  background: var(--light-mint);
  border-left: 4px solid var(--wise-green);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.article-body .info-box p { color: var(--dark-green); margin: 0; font-weight: 600; }

.article-body .data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  box-shadow: var(--shadow-ring);
}
.article-body .data-table th {
  background: var(--near-black);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 12px 16px;
  text-align: left;
  font-feature-settings: "calt";
}
.article-body .data-table td {
  padding: 10px 16px;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--light-surface);
  color: var(--warm-dark);
}
.article-body .data-table tr:last-child td { border-bottom: none; }
.article-body .data-table tr:nth-child(even) td { background: #fafaf8; }

.article-nav {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 64px;
  border-top: 1px solid var(--light-surface);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.article-nav a {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--dark-green);
  font-feature-settings: "calt";
}

.contact-section {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 24px;
}
.contact-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.9;
  margin-bottom: 16px;
}
.contact-section p {
  font-size: 1rem;
  color: var(--warm-dark);
  margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 6px;
  font-feature-settings: "calt";
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(14,15,12,0.2);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--near-black);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  font-feature-settings: "calt";
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--wise-green);
  box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-message {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius-card);
  margin-top: 16px;
  font-weight: 600;
  font-feature-settings: "calt";
}
.form-message--success {
  background: var(--light-mint);
  color: var(--positive);
}
.form-loading {
  display: none;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--warm-dark);
  margin-top: 16px;
  font-feature-settings: "calt";
}
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--light-surface);
  border-top-color: var(--wise-green);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.page-hero {
  padding: 64px 0 48px;
  background: var(--white);
  border-bottom: 1px solid var(--light-surface);
}
.page-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.85;
  margin-bottom: 16px;
}
.page-hero__desc {
  font-size: 1.0625rem;
  color: var(--warm-dark);
  line-height: 1.6;
}
.page-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.page-body h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 0.9;
  margin-top: 40px;
  margin-bottom: 14px;
}
.page-body h3 {
  font-size: 1.25rem;
  line-height: 1.1;
  margin-top: 28px;
  margin-bottom: 10px;
}
.page-body p { font-size: 1rem; line-height: 1.65; color: var(--warm-dark); }
.page-body ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.page-body li { font-size: 1rem; line-height: 1.65; color: var(--warm-dark); margin-bottom: 0.4rem; }
.page-body a { color: var(--dark-green); text-decoration: underline; }
.page-body .updated {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 32px;
  display: block;
  font-feature-settings: "calt";
}

.rh-footer {
  background: var(--near-black);
  color: var(--white);
  padding: 56px 0 0;
}
.rh-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rh-footer__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--white);
  font-feature-settings: "calt";
  text-decoration: none;
  display: inline-block;
  margin-bottom: 14px;
}
.rh-footer__logo span { color: var(--wise-green); }
.rh-footer__brand p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 340px;
}
.rh-footer__links h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-feature-settings: "calt";
}
.rh-footer__links ul { list-style: none; }
.rh-footer__links li { margin-bottom: 10px; }
.rh-footer__links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-feature-settings: "calt";
}
.rh-footer__links a:hover { color: var(--wise-green); }
.rh-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
}
.rh-footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
  line-height: 1.5;
}
.rh-footer__disclaimer { font-style: italic; }

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 640px;
  background: var(--near-black);
  color: var(--white);
  border-radius: var(--radius-card-md);
  box-shadow: 0 8px 40px rgba(14,15,12,0.25);
  z-index: 999;
  padding: 20px 24px;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner__inner p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  line-height: 1.5;
}
.cookie-banner__inner a { color: var(--wise-green); }
.cookie-banner__actions { display: flex; gap: 10px; }

@media (max-width: 992px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .rh-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .rh-nav__list { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); padding: 16px 24px 24px; border-bottom: 1px solid var(--light-surface); gap: 4px; }
  .rh-nav__list.is-open { display: flex; }
  .rh-nav__toggle { display: flex; }
  .rh-nav { position: relative; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .rh-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .article-nav { flex-direction: column; }
}

@media (max-width: 576px) {
  .hero { padding: 48px 0 40px; }
  .section { padding: 40px 0; }
  .hero__title { font-size: 2.5rem; }
  .cookie-banner { bottom: 16px; left: 16px; right: 16px; }
}

.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px 0;
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 600;
  font-feature-settings: "calt";
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--dark-green); text-decoration: none; }
.breadcrumb__sep { margin: 0 8px; color: var(--light-surface); }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.tag {
  display: inline-block;
  background: var(--light-surface);
  color: var(--warm-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-feature-settings: "calt";
}

.sources-box {
  background: #fafaf8;
  border: 1px solid var(--light-surface);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin-top: 48px;
}
.sources-box h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
  margin-bottom: 12px;
  font-feature-settings: "calt";
}
.sources-box ul { list-style: none; padding: 0; margin: 0; }
.sources-box li { font-size: 0.875rem; margin-bottom: 6px; }
.sources-box a { color: var(--dark-green); text-decoration: underline; }
