/* ============ Base ============ */
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink);
  background: var(--paper);
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest);
  line-height: 1.16;
  letter-spacing: -0.015em;
  font-weight: 800;
  overflow-wrap: break-word;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; }
p { color: var(--ink-soft); }
strong { color: var(--ink); }
a { text-decoration: none; }
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: calc(var(--section-y) * 0.62); }
.section--dark { background: var(--forest); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: #c9d6cd; }
.section--white { background: var(--white); }

/* Eyebrow label: green rule + red dot, echoing the emblem ring */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-tiny); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; background: var(--green); border-radius: 2px;
}
.eyebrow::after {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red);
}
.section--dark .eyebrow { color: var(--gold); }
.section--dark .eyebrow::before { background: var(--gold); }

.section-head { max-width: 640px; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { margin-top: 0.7rem; font-size: 1.05rem; }

/* Signature: cooperative tricolor stripe (green / gold / red, from the emblem) */
.stripe { height: 5px; display: flex; }
.stripe span:nth-child(1) { flex: 2; background: var(--green); }
.stripe span:nth-child(2) { flex: 1.2; background: var(--gold); }
.stripe span:nth-child(3) { flex: 0.5; background: var(--red); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 1.55rem; border-radius: 999px;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--gold { background: var(--gold); color: var(--forest); box-shadow: 0 6px 18px rgba(242, 183, 5, 0.35); }
.btn--gold:hover { background: var(--gold-hover); }
.btn--green { background: var(--green); color: var(--white); }
.btn--green:hover { background: var(--green-hover); }
.btn--outline { border: 2px solid var(--green); color: var(--green); }
.btn--outline:hover { background: var(--green); color: var(--white); }
.btn--outline-light { border: 2px solid rgba(255,255,255,0.7); color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--forest); }
.btn--lg { padding: 1rem 2rem; font-size: 1.02rem; }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn--block { width: 100%; }

.link-arrow {
  font-family: var(--font-display); font-weight: 700; color: var(--green);
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.link-arrow::after { content: "\2192"; transition: transform var(--dur) var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ============ Utilities ============ */
.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--forest); color: var(--white); padding: 0.6rem 1rem;
  border-radius: var(--radius-sm); transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }
.img-rounded { border-radius: var(--radius); box-shadow: var(--shadow); }
.note {
  font-size: var(--fs-tiny); color: var(--ink-soft);
  background: var(--gold-soft); border-left: 3px solid var(--gold);
  padding: 0.5rem 0.8rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
