:root {
  --bg: #f6faf7;
  --surface: #ffffff;
  --text: #17211c;
  --muted: #4e5f54;
  --brand: #128a4c;
  --brand-dark: #0d6a3a;
  --border: #d8e4dc;
  --shadow: 0 10px 28px rgba(12, 39, 23, 0.08);
  --ok: #1e8f47;
  --warn: #d88a12;
  --no: #c4382f;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 250, 247, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.topbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf5ee;
  border: 1px solid #c2dacb;
}

.brand-logo {
  width: 34px;
  height: 34px;
  background-image: url("assets/logo-fresheatco.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--brand-dark);
}

.hero {
  padding: 4rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.kicker {
  display: inline-block;
  margin: 0;
  padding: 0.22rem 0.65rem;
  border: 1px solid #b6d3c1;
  border-radius: 999px;
  color: var(--brand-dark);
  font-size: 0.85rem;
  font-weight: 600;
  background: #eaf5ee;
}

h1 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.2;
  margin: 0.85rem 0 0.9rem;
}

.lead {
  margin: 0;
  max-width: 66ch;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 0.72rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-outline {
  border-color: var(--border);
  color: var(--brand-dark);
  background: #fff;
}

.btn-outline:hover {
  border-color: #b7cdc0;
}

.hero-card,
.card,
.info-box,
.status {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  font-size: 1.12rem;
}

.hero-card p {
  margin: 0 0 0.7rem;
  color: var(--muted);
}

.hero-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.section {
  padding: 1.7rem 0 2.35rem;
}

.section-alt {
  background: #eff6f1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

h3 {
  margin-top: 0;
}

.section p {
  color: var(--muted);
}

.pillars {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2,
.dual-audience {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}

.status-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.status h3 {
  margin-bottom: 0.45rem;
}

.status p {
  margin: 0;
}

.status-green {
  border-left: 6px solid var(--ok);
}

.status-orange {
  border-left: 6px solid var(--warn);
}

.status-red {
  border-left: 6px solid var(--no);
}

.plain-list {
  margin: 0;
  padding-left: 1.15rem;
}

.vision p {
  max-width: 76ch;
}

.compliance-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.policy-intro {
  margin: 0;
  max-width: 84ch;
}

.policy-columns {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.policy-card {
  margin-top: 0.9rem;
}

.policy-card h3 {
  margin-bottom: 0.45rem;
}

.refs-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.refs-list a {
  color: var(--brand-dark);
  font-weight: 600;
}

.compliance-note {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: #3f4f45;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1rem 0 1.35rem;
  background: #fff;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  justify-content: space-between;
  align-items: center;
  color: #425248;
  font-size: 0.93rem;
}

.footer-content p {
  margin: 0;
}

.footer-content a {
  color: var(--brand-dark);
}

@media (max-width: 980px) {
  .hero-grid,
  .pillars,
  .status-grid,
  .grid-2,
  .dual-audience,
  .compliance-grid,
  .policy-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2.4rem;
  }

  .main-nav {
    justify-content: flex-end;
    gap: 0.7rem;
  }

  .main-nav a {
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
  }
}
