:root {
  --ink: #1f2933;
  --muted: #5f6f7e;
  --line: #d9e1e8;
  --paper: #fbfcfd;
  --soft: #eef4f2;
  --accent: #0f7b6c;
  --accent-dark: #0a5f53;
  --warm: #f5b84b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 4vw, 56px);
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 252, 253, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  color: var(--accent-dark);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 15px;
}

.nav a,
.site-footer a {
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 36px;
  align-items: center;
  min-height: 72vh;
  padding: clamp(44px, 8vw, 96px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(15, 123, 108, 0.12), rgba(245, 184, 75, 0.18)),
    var(--white);
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(38px, 6vw, 74px);
  max-width: 900px;
}

h2 {
  font-size: clamp(27px, 3vw, 42px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.hero p:not(.eyebrow),
.two-column p,
.page-intro p {
  color: var(--muted);
  font-size: 18px;
  max-width: 740px;
  margin-top: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  color: var(--white);
}

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

.hero-visual,
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-visual {
  min-height: 420px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(31, 41, 51, 0.10);
}

.hero-visual img,
.wide-image img,
.page-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-image,
.page-image {
  margin: 0;
  overflow: hidden;
}

.wide-image {
  height: clamp(240px, 34vw, 430px);
  border-radius: 8px;
  margin-bottom: 34px;
}

.page-image {
  height: clamp(230px, 30vw, 390px);
  border-bottom: 1px solid var(--line);
}

.card p,
.directory-list span,
.site-footer {
  color: var(--muted);
}

.section {
  padding: clamp(44px, 7vw, 88px) clamp(18px, 4vw, 56px);
}

.band {
  background: var(--soft);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 28px;
}

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

.card {
  padding: 24px;
}

.card p {
  margin-top: 12px;
}

.directory-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.directory-list a {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--accent-dark);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.directory-list span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  margin-top: 10px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.page-intro {
  padding: clamp(42px, 7vw, 82px) clamp(18px, 4vw, 56px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-content {
  padding: clamp(36px, 6vw, 72px) clamp(18px, 4vw, 56px);
}

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

.article {
  padding: 26px;
  border-left: 4px solid var(--warm);
  background: var(--white);
}

.article p {
  color: var(--muted);
  margin-top: 12px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero,
  .content-grid,
  .directory-list,
  .two-column,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 280px;
  }
}
