:root {
  --bg: #faf7f2;
  --surface: #ffffff;
  --ink: #1a2e28;
  --muted: #5c6b66;
  --accent: #0d9488;
  --accent-dark: #0f766e;
  --accent-soft: #ccfbf1;
  --warm: #ea580c;
  --warm-soft: #ffedd5;
  --border: #e7e0d6;
  --header: #134e4a;
  --max: 1080px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Noto Serif SC", serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
}

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

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

.site-header {
  background: var(--header);
  color: #ecfdf5;
  border-bottom: 4px solid var(--warm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
  flex-wrap: wrap;
}
.logo {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.logo em {
  font-style: normal;
  color: #5eead4;
  font-weight: 600;
}
nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: "Segoe UI", system-ui, sans-serif;
}
nav a {
  color: #a7f3d0;
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
nav a.active, nav a:hover { color: #fff; text-decoration: none; }

.hero-editorial {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
}
.hero-editorial .eyebrow {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 12px;
}
.hero-editorial h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.12;
  margin: 0 0 16px;
  max-width: 18ch;
}
.hero-editorial .lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 24px;
}
.topic-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.topic-strip span {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 4px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: 1px solid #99f6e4;
}

.disclaimer {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.84rem;
  padding: 14px 16px;
  background: var(--warm-soft);
  border-left: 4px solid var(--warm);
  color: #7c2d12;
  max-width: 640px;
}

.section-head {
  font-family: "Segoe UI", system-ui, sans-serif;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 40px 0 16px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 0;
}
.section-head h2 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.section-head span { color: var(--muted); font-size: 0.9rem; }

.article-list { padding: 0 0 56px; }
.article-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.row-label {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--warm);
}
.article-row h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  line-height: 1.3;
}
.article-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}
.article-row .read-more {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  align-self: center;
}

.feature-band {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  margin: 32px 0 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature-band h3 {
  font-family: "Segoe UI", system-ui, sans-serif;
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.feature-band ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.article {
  padding: 44px 0 56px;
  max-width: 720px;
}
.article h1 { margin-top: 0; font-size: 2.1rem; line-height: 1.2; }
.article h2 {
  font-family: "Segoe UI", system-ui, sans-serif;
  margin-top: 32px;
  font-size: 1.15rem;
  color: var(--accent-dark);
}
.article p, .article li { color: #334155; }

.site-footer {
  background: var(--header);
  color: #99f6e4;
  padding: 40px 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.86rem;
}
.site-footer a { color: #fef3c7; }
.site-footer h4 { color: #fff; margin: 0 0 10px; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-disclaimer {
  font-size: 0.8rem;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #115e59;
  color: #5eead4;
}

.form-row { margin-bottom: 14px; }
.form-row label { display: block; margin-bottom: 6px; font-family: "Segoe UI", system-ui, sans-serif; }
.form-row input, .form-row textarea {
  width: 100%;
  max-width: 520px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
}

@media (max-width: 800px) {
  .article-row { grid-template-columns: 1fr; }
  .article-row .read-more { align-self: start; }
  .feature-band { grid-template-columns: 1fr; }
}
