:root {
  --ink: #12302f;
  --muted: #607171;
  --teal-950: #063c3b;
  --teal-900: #074b4a;
  --teal-800: #0c615f;
  --teal-700: #147471;
  --mint-50: #f5faf7;
  --mint-100: #edf6f1;
  --mint-200: #dbece4;
  --ivory: #fbfaf6;
  --paper: #ffffff;
  --line: rgba(18, 48, 47, 0.12);
  --shadow: 0 18px 46px rgba(7, 75, 74, 0.1);
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(195, 218, 208, 0.5), transparent 25rem),
    linear-gradient(180deg, #fbfaf6 0%, #f5faf7 48%, #fbfaf6 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1220px, calc(100% - 56px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid rgba(18, 48, 47, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--teal-900);
  flex: 0 0 auto;
}

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

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: 34px;
  font-weight: 500;
}

.brand-text span {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 24px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a {
  opacity: 0.84;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  opacity: 1;
  color: var(--teal-800);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.lang {
  font-size: 13px;
  font-weight: 800;
  color: var(--teal-900);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--teal-900);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.button:hover,
.button:focus-visible {
  background: #fff;
  color: var(--teal-900);
  border-color: var(--teal-900);
}

.button.outline {
  background: #fff;
  color: var(--teal-900);
  border-color: rgba(7, 75, 74, 0.34);
}

.button.outline:hover,
.button.outline:focus-visible {
  background: var(--teal-900);
  color: #fff;
  border-color: var(--teal-900);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
}

.icon {
  width: 25px;
  height: 25px;
  color: var(--teal-800);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-hero {
  padding: 70px 0 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--mint-200);
  color: var(--teal-900);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--teal-950);
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.3;
}

h1 {
  max-width: 680px;
  margin-top: 18px;
  font-size: clamp(42px, 4.5vw, 74px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 2.6vw, 44px);
}

h3 {
  margin: 0 0 12px;
  color: var(--teal-950);
  font-size: 20px;
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  max-width: 650px;
  margin-top: 22px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--mint-100);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.section {
  padding: 60px 0;
}

.panel {
  border: 1px solid rgba(18, 48, 47, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 34px rgba(7, 75, 74, 0.07);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 22px;
  align-items: stretch;
}

.content-panel {
  padding: 34px;
}

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

.card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.card .icon {
  margin-bottom: 16px;
}

.list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  color: #344f4d;
  font-weight: 750;
}

.list li::before {
  content: "✓";
  color: var(--teal-800);
  font-weight: 900;
}

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

.metric {
  padding: 22px;
  text-align: center;
}

.metric strong {
  display: block;
  color: var(--teal-900);
  font-size: 34px;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.program-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.program-card {
  overflow: hidden;
}

.program-card img {
  width: 100%;
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
}

.program-card div {
  padding: 22px;
}

.program-card a {
  display: block;
  height: 100%;
}

.read-more {
  display: inline-flex;
  margin-top: 16px;
  color: var(--teal-900);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
  align-items: start;
}

.article {
  overflow: hidden;
}

.article-cover {
  width: 100%;
  aspect-ratio: 1.85 / 1;
  object-fit: cover;
}

.article-body {
  padding: clamp(28px, 4vw, 54px);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.article-body h2 {
  margin-top: 34px;
}

.article-body p {
  margin-top: 18px;
  font-size: 18px;
}

.article-body blockquote {
  margin: 34px 0;
  padding: 26px;
  border-left: 4px solid var(--teal-800);
  border-radius: 8px;
  background: var(--mint-50);
  color: var(--teal-950);
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.28;
}

.article-sidebar {
  position: sticky;
  top: 112px;
  padding: 26px;
}

.article-sidebar .button {
  width: 100%;
  margin-top: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tag {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--mint-100);
  color: var(--teal-900);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: var(--teal-950);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.footer {
  margin-top: 42px;
  background: #f5f1ea;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links.is-open {
    position: absolute;
    top: 82px;
    left: 28px;
    right: 28px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open a {
    padding: 12px;
    border-bottom: 1px solid rgba(18, 48, 47, 0.07);
  }

  .hero-grid,
  .split,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .cards,
  .program-grid,
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 620px);
  }

  .nav-actions .button,
  .lang {
    display: none;
  }

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

  .brand-text strong {
    font-size: 26px;
  }

  .page-hero {
    padding-top: 44px;
  }

  h1 {
    font-size: 42px;
  }

  .cards,
  .program-grid,
  .post-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
  }
}
