:root {
  --brand-green: #0f766e;
  --brand-green-dark: #0c5f58;
  --brand-cream: #f7f1e9;
  --text-dark: #0c1b1b;
  --text-muted: #4c5454;
  --bg: #fdfdfd;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.7;
}

.hero {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
  color: white;
  padding: 5rem 1.5rem;
}

.hero__content {
  max-width: 720px;
  margin: 0 auto;
}

.hero__eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.hero__title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin: 0 0 0.75rem;
}

.hero__subtitle {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  background: white;
  color: var(--brand-green);
  font-weight: 600;
  text-decoration: none;
}

.section {
  padding: 3rem 1.5rem;
}

.section--alt {
  background: var(--brand-cream);
}

.section__header {
  max-width: 720px;
  margin: 0 auto 2rem;
}

.section__title {
  margin: 0 0 0.25rem;
}

.section__summary {
  color: var(--text-muted);
  margin: 0;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.info-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 118, 110, 0.08);
}

.info-card__title {
  margin-top: 0;
}

.grid-two {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.page {
  background: white;
  min-height: 100vh;
}

.page__header {
  padding: 2.5rem 1.5rem 1rem;
  text-align: center;
  background: var(--brand-cream);
}

.page__back {
  text-decoration: none;
  color: var(--brand-green);
  font-weight: 600;
}

.page__content {
  padding: 2rem 1.5rem 3rem;
  display: grid;
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}
