:root {
  --ink: #16232b;
  --text: #31424d;
  --muted: #64747e;
  --paper: #ffffff;
  --soft: #f5f8f7;
  --line: #dce6e2;
  --green: #2d765d;
  --blue: #244f7c;
  --amber: #b8782f;
  --red: #93413f;
  --shadow: 0 18px 44px rgba(22, 35, 43, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #f7f8f5;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.58;
}
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -5rem;
  z-index: 30;
  padding: .8rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: .5rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}
.header-kicker,
.header-main,
main,
.site-footer {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}
.header-kicker {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: .5rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .875rem;
  white-space: nowrap;
}
.header-kicker span:first-child { color: var(--red); font-weight: 800; }
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: .5rem;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}
.brand strong { display: block; font-size: 1.25rem; line-height: 1; }
.brand small { color: var(--muted); font-size: .875rem; }
.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .35rem;
}
.main-nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  padding: 0 .75rem;
  text-decoration: none;
  color: var(--muted);
  border-radius: .375rem;
  font-weight: 700;
}
.main-nav a:hover,
.main-nav a:focus-visible { background: var(--soft); color: var(--ink); outline: none; }

main { padding-top: 2rem; }
.hero-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(25rem, 1.08fr);
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 0 2.5rem;
}
.eyebrow,
.section-label {
  margin: 0 0 .75rem;
  color: var(--green);
  font-size: .875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1,
h2,
h3,
p { margin-top: 0; }
h1 {
  max-width: 13ch;
  margin-bottom: 2rem;
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  line-height: 1;
  text-wrap: balance;
}
.lead {
  max-width: 58ch;
  color: var(--text);
  font-size: clamp(1.0625rem, .55vw + .95rem, 1.25rem);
}
.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.25rem;
}
.meta-list span {
  padding: .42rem .75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: .875rem;
  font-weight: 700;
}
.hero-image,
.wide-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: .5rem;
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-image figcaption {
  padding: .85rem 1rem;
  color: var(--muted);
  font-size: .9375rem;
}

.topic-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .875rem;
  margin: 0 0 2rem;
}
.topic-strip article,
.article-content,
.side-note,
.feedback-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: .5rem;
  box-shadow: 0 10px 28px rgba(22, 35, 43, .045);
}
.topic-strip article { padding: 1.25rem; }
.topic-strip span { display: inline-block; margin-bottom: .5rem; color: var(--amber); font-weight: 900; }
.topic-strip h2 { margin-bottom: .45rem; font-size: 1.25rem; line-height: 1.18; }
.topic-strip p,
.article-content p,
.side-note p,
.feedback-copy p { color: var(--text); }

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 46rem) minmax(17rem, 21rem);
  gap: 1.75rem;
  align-items: start;
}
.article-content { padding: clamp(1.25rem, 2.4vw, 2.25rem); }
.article-content h2 {
  margin-bottom: 2rem;
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  line-height: 1;
  text-wrap: balance;
}
.article-content h3 {
  margin-bottom: .45rem;
  font-size: 1.2rem;
  line-height: 1.18;
}
.article-content p {
  max-width: 65ch;
  font-size: 1.0625rem;
  text-wrap: pretty;
}
blockquote {
  margin: 1.75rem 0;
  padding: 1.35rem 1.5rem;
  border-inline-start: .35rem solid var(--amber);
  border-radius: 0 .5rem .5rem 0;
  background: #fff8ec;
}
blockquote p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.15rem, 1vw + .95rem, 1.45rem);
  font-weight: 800;
  line-height: 1.32;
}
.reason-list { display: grid; gap: .9rem; margin: 1rem 0 1.75rem; }
.reason-list section {
  padding: 1rem 1.1rem;
  border: 1px solid #dde9e4;
  border-radius: .5rem;
  background: #f7faf8;
}
.reason-list p { margin-bottom: 0; }
.wide-media { margin: 1.75rem 0; box-shadow: none; }
.clean-list {
  display: grid;
  gap: .65rem;
  margin: 1rem 0 1.75rem;
  padding: 0;
  list-style: none;
}
.clean-list li {
  position: relative;
  padding: .85rem 1rem .85rem 2.35rem;
  border: 1px solid #dcebe3;
  border-radius: .5rem;
  background: #f8fbf9;
  color: var(--text);
}
.clean-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 1rem;
  top: 1.35rem;
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: var(--green);
}
.sidebar {
  position: sticky;
  top: 7rem;
  display: grid;
  gap: 1rem;
}
.side-note { padding: 1.15rem; }
.side-note h2 { margin-bottom: .55rem; font-size: 1.35rem; line-height: 1.1; }
.compact-links { display: grid; }
.compact-links a {
  padding: .9rem 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.35;
}
.compact-links a:hover,
.compact-links a:focus-visible { color: var(--green); outline: none; }

.feedback-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(20rem, 1fr);
  gap: 1.75rem;
  align-items: center;
  margin: 2rem 0 2.75rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: .5rem;
  background: #13242c;
  color: #f5f7f6;
}
.feedback-section h2 {
  margin-bottom: 2rem;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 1;
  text-wrap: balance;
}
.feedback-copy p { color: #d4dfdc; max-width: 46ch; }
.feedback-form {
  display: grid;
  gap: .75rem;
  padding: 1.25rem;
}
.feedback-form label { color: var(--ink); font-weight: 800; }
.feedback-form input,
.feedback-form textarea {
  width: 100%;
  min-height: 2.9rem;
  padding: .78rem .9rem;
  border: 1px solid #b9c9c4;
  border-radius: .5rem;
  background: #fbfcfb;
  color: var(--ink);
  font: inherit;
}
.feedback-form textarea { resize: vertical; }
.feedback-form input:focus,
.feedback-form textarea:focus,
.feedback-form button:focus-visible {
  outline: .2rem solid rgba(45, 118, 93, .25);
  outline-offset: .15rem;
  border-color: var(--green);
}
.feedback-form button {
  min-height: 3rem;
  justify-self: start;
  padding: 0 1.15rem;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font: inherit;
  font-weight: 900;
  white-space: nowrap;
  cursor: default;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0 2.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.site-footer span:first-child { color: var(--ink); font-weight: 900; }

@media (max-width: 940px) {
  .header-main,
  .site-footer { flex-direction: column; align-items: flex-start; }
  .main-nav { justify-content: flex-start; }
  .hero-section,
  .page-grid,
  .feedback-section { grid-template-columns: 1fr; }
  .topic-strip { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  h1 { max-width: 16ch; }
}
@media (max-width: 560px) {
  .header-kicker,
  .header-main,
  main,
  .site-footer { width: min(100% - 1.25rem, 1160px); }
  .brand strong { font-size: 1.1rem; }
  .brand small { display: none; }
  .main-nav a { padding-inline: .6rem; font-size: .95rem; }
  .hero-section { padding-top: 1rem; }
  .article-content { padding: 1.1rem; }
  .feedback-section { padding: 1.1rem; }
  .feedback-form button { width: 100%; }
}