:root {
  --ink: #10251d;
  --muted: #5c6d65;
  --green: #20b85b;
  --green-dark: #0a5039;
  --green-soft: #e7f8eb;
  --cream: #f8fbf7;
  --white: #ffffff;
  --line: rgba(14, 62, 44, .12);
  --shadow: 0 24px 70px rgba(12, 72, 49, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
h1, h2, h3 {
  margin-top: 0;
  font-family: "Libre Franklin", sans-serif;
  letter-spacing: -.045em;
  line-height: 1.1;
}
h1 { max-width: 900px; margin-bottom: 26px; font-size: clamp(48px, 7vw, 86px); }
h2 { margin-bottom: 18px; font-size: clamp(36px, 4.4vw, 58px); }
h3 { margin-bottom: 12px; font-size: 27px; }
p { margin-top: 0; }
.accent { color: var(--green); }
.kicker {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(16,37,29,.07);
  background: white;
}
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { text-decoration: none; display: flex; align-items: center; flex-shrink: 0; }
.brand-mark { width: 146px; height: 60px; display: grid; place-items: center; overflow: hidden; background: white; flex-shrink: 0; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { color: #31473e; font-size: 15px; font-weight: 600; text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--green-dark); }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--green-dark);
  border-radius: 999px;
  background: var(--green-dark);
  color: white;
  font-weight: 700;
  text-decoration: none;
}
.button.secondary { background: transparent; color: var(--green-dark); }
.nav .button { min-height: 44px; padding: 9px 18px; font-size: 14px; }
.hero { position: relative; overflow: hidden; padding: 112px 0 96px; }
.hero::before {
  position: absolute;
  top: -340px;
  right: -180px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32,184,91,.16), rgba(32,184,91,0) 68%);
  content: "";
}
.hero .container { position: relative; }
.hero-copy { max-width: 760px; color: var(--muted); font-size: clamp(19px,2vw,23px); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.section { padding: 100px 0; }
.white { border-block: 1px solid var(--line); background: white; }
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.statement { margin: 0; font-size: clamp(25px,3vw,39px); font-weight: 600; letter-spacing: -.03em; line-height: 1.35; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.card { padding: 32px; border: 1px solid var(--line); border-radius: 26px; background: white; box-shadow: var(--shadow); }
.card p { margin-bottom: 0; color: var(--muted); }
.photo-panel { overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; border-radius: 34px; background: var(--green-dark); color: white; }
.photo-panel-copy { padding: 64px; }
.photo-panel-copy p { color: rgba(255,255,255,.72); }
.photo-panel img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.article-list { display: grid; gap: 24px; margin-top: 48px; }
.article {
  scroll-margin-top: 105px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 42px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
}
.article img { width: 100%; height: 100%; min-height: 320px; border-radius: 20px; object-fit: cover; }
.article-meta { margin-bottom: 10px; color: var(--green-dark); font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.article p, .article li { color: var(--muted); }
.article h4 { margin: 24px 0 8px; font-size: 18px; }
.article ul, .article ol { padding-left: 22px; }
.article li + li { margin-top: 8px; }
.notice { margin-top: 30px; padding: 18px 20px; border-left: 3px solid var(--green); background: var(--green-soft); color: var(--green-dark); }
.cta { padding-top: 0; }
.cta-panel { padding: 68px; border-radius: 34px; background: var(--green-dark); color: white; text-align: center; }
.cta-panel h2 { max-width: 760px; margin-inline: auto; }
.cta-panel p { max-width: 650px; margin-inline: auto; color: rgba(255,255,255,.72); }
.cta-panel .button-row { justify-content: center; }
.cta-panel .button { border-color: white; background: white; color: var(--green-dark); }
footer { padding: 34px 0; border-top: 1px solid var(--line); }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 14px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { text-decoration: none; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.blog-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-photo {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: 0;
  background: #eef2f0;
}
.blog-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-body { padding: 22px 22px 24px; }
.blog-card small { color: var(--green-dark); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.blog-card h3 { margin: 12px 0 10px; font-size: 22px; line-height: 1.25; }
.blog-card p { margin: 0; color: var(--muted); font-size: 15px; }
.contact-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow);
}
.contact-card h3 { margin-bottom: 8px; }
.contact-card .role { margin-bottom: 14px; color: var(--green-dark); font-size: 14px; font-weight: 700; }
.contact-card p { color: var(--muted); }
.region-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.region { padding: 8px 12px; border-radius: 999px; background: var(--green-soft); color: var(--green-dark); font-size: 13px; font-weight: 700; }
.timeline { margin-top: 28px; padding: 24px 28px; border-left: 3px solid var(--green); border-radius: 0 18px 18px 0; background: var(--green-soft); color: var(--green-dark); font-weight: 700; }
.login-shell { max-width: 520px; margin: 0 auto; padding: 42px; border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: var(--shadow); }
.login-shell h2 { margin-bottom: 10px; font-size: 34px; }
.login-note { margin-bottom: 28px; padding: 16px 18px; border-left: 3px solid var(--green); border-radius: 0 14px 14px 0; background: var(--green-soft); color: var(--green-dark); font-size: 15px; }
.login-form { display: grid; gap: 16px; }
.login-form label { display: grid; gap: 8px; font-size: 14px; font-weight: 700; color: #31473e; }
.login-form input {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgba(14,62,44,.18);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.login-form input:focus { outline: 2px solid rgba(32,184,91,.25); border-color: var(--green); }
.login-error { display: none; margin-top: 4px; padding: 12px 14px; border-radius: 12px; background: #fff0f0; color: #9b1c1c; font-size: 14px; font-weight: 600; }
.login-error.visible { display: block; }
.login-shell .button { width: 100%; margin-top: 8px; border: 0; cursor: pointer; }

@media (max-width: 900px) {
  .split, .photo-panel, .article { grid-template-columns: 1fr; }
  .card-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .card:last-child, .blog-grid .blog-card:last-child { grid-column: 1 / -1; }
  .article img { max-height: 430px; }
}
@media (max-width: 700px) {
  body { font-size: 16px; }
  .container { width: min(100% - 28px, 1120px); }
  .nav { min-height: 70px; }
  .brand-mark { width: 116px; height: 52px; }
  .hero { padding: 74px 0 68px; }
  .section { padding: 74px 0; }
  .split { gap: 28px; }
  .card-grid, .blog-grid { grid-template-columns: 1fr; }
  .card:last-child, .blog-grid .blog-card:last-child { grid-column: auto; }
  .photo-panel-copy, .cta-panel { padding: 40px 24px; }
  .photo-panel img { min-height: 320px; }
  .article { gap: 24px; padding: 22px; }
  .article img { min-height: 240px; }
  .footer-row { flex-direction: column; text-align: center; }
}
