:root {
  --bg: #f7f4ee;
  --paper: #fffdf8;
  --ink: #18201d;
  --muted: #5e6962;
  --line: #d9d2c6;
  --green: #1f6f52;
  --green-dark: #164d3b;
  --sun: #d9902d;
  --blue: #244c6f;
  --shadow: 0 18px 45px rgba(24, 32, 29, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: var(--green-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.92);
}

.nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 18px 24px;
}

.brand {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  margin: 0 auto;
  max-width: 1120px;
  min-height: 520px;
  padding: 56px 24px 34px;
}

.hero-copy {
  align-self: center;
  padding-right: 34px;
}

.eyebrow {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2.55rem, 7vw, 5.4rem);
  letter-spacing: 0;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.12rem;
  margin: 20px 0 28px;
  max-width: 650px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  min-height: 44px;
  padding: 10px 16px;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--green-dark);
}

.hero-media {
  align-self: center;
}

.hero-media img {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.band {
  border-top: 1px solid var(--line);
}

.wrap {
  margin: 0 auto;
  max-width: 1120px;
  padding: 42px 24px;
}

.section-head {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 22px;
}

.section-head p {
  color: var(--muted);
  margin: 8px 0 0;
  max-width: 680px;
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px;
}

.card .label {
  color: var(--sun);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card h3 {
  font-size: 1.2rem;
  margin-top: 9px;
}

.card p {
  color: var(--muted);
  margin: 12px 0 18px;
}

.card a:last-child {
  font-weight: 800;
  margin-top: auto;
}

.content {
  background: var(--paper);
}

.article {
  margin: 0 auto;
  max-width: 800px;
  padding: 50px 24px;
}

.article h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.article h2 {
  font-size: 1.55rem;
  margin-top: 34px;
}

.article p,
.article li {
  color: #33413a;
}

.article .meta {
  color: var(--muted);
  font-weight: 700;
  margin: 14px 0 24px;
}

.note {
  background: #f1eee6;
  border-left: 4px solid var(--sun);
  border-radius: 6px;
  margin: 24px 0;
  padding: 16px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 28px 24px;
}

.footer-inner a {
  color: var(--muted);
  font-weight: 700;
  margin-left: 14px;
  text-decoration: none;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    gap: 12px;
    justify-content: flex-start;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero {
    min-height: auto;
  }
}
