:root {
  --bg: #f4f6f5;
  --bg-accent: #e8eeec;
  --surface: #ffffff;
  --text: #1a2e28;
  --muted: #5a6d66;
  --accent: #0f766e;
  --accent-dark: #115e59;
  --accent-soft: #ccfbf1;
  --line: #c9d9d4;
  --max: 1080px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
}

a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent); text-decoration: underline; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.site-header {
  background: var(--surface);
  border-bottom: 3px solid var(--accent);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
  flex-wrap: wrap;
}
.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.logo span { color: var(--accent); }

nav { display: flex; gap: 20px; flex-wrap: wrap; }
nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}
nav a.active, nav a:hover { color: var(--accent-dark); text-decoration: none; }

.hero-panel {
  padding: 52px 0 40px;
  background: linear-gradient(135deg, #e0f2f1 0%, var(--bg) 60%);
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
  padding: 5px 11px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.hero-panel h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.95rem, 4.2vw, 2.85rem);
  line-height: 1.22;
  margin: 0 0 16px;
  max-width: 800px;
}
.hero-panel .lead {
  color: var(--muted);
  max-width: 700px;
  font-size: 1.03rem;
  margin: 0;
}

.disclaimer {
  margin-top: 22px;
  padding: 14px 16px;
  border-left: 4px solid var(--accent);
  background: #f0fdfa;
  border-radius: 0 6px 6px 0;
  color: #2d4a44;
  font-size: 0.88rem;
  max-width: 800px;
}

.article-list { padding: 32px 0 54px; }
.article-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px dashed var(--line);
  align-items: start;
}
.article-row:first-child { border-top: 1px dashed var(--line); }
.row-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  padding-top: 5px;
}
.article-row h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  margin: 0 0 7px;
  line-height: 1.35;
}
.article-row p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.93rem;
}
.read-more {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  padding: 12px 0 52px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}
.tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 4px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.article {
  padding: 48px 0 60px;
  max-width: 760px;
}
.article h1 {
  font-family: Georgia, "Times New Roman", serif;
  margin-top: 0;
  font-size: 2rem;
  line-height: 1.25;
}
.article h2 {
  margin-top: 32px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}
.article p, .article li { color: #3d4f4a; }
.article ul { padding-left: 22px; }

.site-footer {
  border-top: 3px solid var(--accent);
  padding: 36px 0;
  color: var(--muted);
  font-size: 0.88rem;
  background: var(--surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.site-footer h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  margin: 0 0 10px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 6px 0; }

.form-row { margin-bottom: 14px; }
.form-row label { display: block; margin-bottom: 6px; color: #3d4f4a; }
.form-row input, .form-row textarea {
  width: 100%;
  max-width: 520px;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .article-row { grid-template-columns: 1fr; gap: 6px; }
  .hero-panel { padding-top: 32px; }
  nav { gap: 12px; }
}
