:root {
  --evergreen: #173b25;
  --forest: #245533;
  --leaf: #6b9d3d;
  --orange: #e86f25;
  --ink: #173321;
  --muted: #5e675f;
  --paper: #f5f6f2;
  --white: #ffffff;
  --rule: #d8ddd6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Open Sans", sans-serif;
  line-height: 1.7;
}

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

a {
  color: inherit;
}

.article-header {
  min-height: 82px;
  padding: 14px clamp(22px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--white);
  border-top: 4px solid #343c4c;
  border-bottom: 1px solid var(--rule);
}

.article-brand img {
  width: 212px;
  height: auto;
}

.article-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.article-header nav a {
  text-decoration: none;
}

.article-cta,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.article-cta,
.button-primary {
  color: var(--white);
  background: var(--orange);
}

.button-secondary {
  color: var(--evergreen);
  background: var(--white);
  border: 1px solid var(--evergreen);
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  align-items: stretch;
  min-height: 600px;
  background: var(--evergreen);
  color: var(--white);
}

.article-hero-copy {
  padding: clamp(64px, 8vw, 118px) clamp(28px, 7vw, 112px);
}

.article-eyebrow {
  margin: 0 0 18px;
  color: #95bf65;
  font-family: "Poppins", sans-serif;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
strong {
  font-family: "Poppins", sans-serif;
}

h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.6rem);
  line-height: 1.03;
}

.article-deck {
  max-width: 760px;
  margin: 32px 0 0;
  color: #d7ded8;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
}

.article-meta {
  display: flex;
  gap: 18px;
  margin-top: 30px;
  color: #b9c6bc;
  font-size: 0.92rem;
}

.article-meta span::before {
  content: "•";
  margin-right: 18px;
}

.article-hero figure {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

.article-hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-layout {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 120px;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(250px, 1fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.article-content {
  font-size: 1.08rem;
}

.article-content p,
.article-content li {
  color: #3f4b42;
}

.article-content h2 {
  margin: 58px 0 16px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.2;
}

.article-content h3 {
  margin: 34px 0 10px;
  font-size: 1.28rem;
}

.article-intro {
  margin-top: 0;
  color: var(--ink) !important;
  font-size: 1.25rem;
  font-weight: 600;
}

.article-content ul {
  padding-left: 22px;
}

.article-content li + li {
  margin-top: 10px;
}

.article-callout {
  margin: 44px 0;
  padding: 28px 30px;
  display: grid;
  gap: 8px;
  background: #eaf1e5;
  border-left: 5px solid var(--leaf);
}

.article-callout strong {
  font-size: 1.18rem;
}

.article-sidebar {
  position: sticky;
  top: 28px;
  padding: 28px;
  background: var(--white);
  border-top: 4px solid var(--orange);
  box-shadow: 0 16px 42px rgba(20, 54, 31, 0.1);
}

.article-sidebar strong {
  font-size: 1.25rem;
}

.article-sidebar p {
  color: var(--muted);
}

.article-sidebar a {
  color: var(--evergreen);
  font-weight: 700;
}

.article-final-cta {
  margin-top: 66px;
  padding: clamp(30px, 5vw, 52px);
  color: var(--white);
  background: var(--evergreen);
}

.article-final-cta h2 {
  margin-top: 0;
}

.article-final-cta p:not(.article-eyebrow) {
  color: #d7ded8;
}

.article-final-cta > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.article-footer {
  padding: 40px clamp(22px, 5vw, 76px) 100px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #d5ded7;
  background: #0d2617;
}

.article-footer > div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.article-footer a {
  font-weight: 700;
}

.call-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  min-height: 54px;
  padding: 14px 22px;
  color: var(--white);
  background: var(--orange);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(232, 111, 37, 0.32);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px) {
  .article-header nav a:not(.article-cta) {
    display: none;
  }

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

  .article-hero figure {
    min-height: 360px;
    max-height: 520px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 620px) {
  .article-header {
    min-height: 70px;
    padding: 10px 16px;
  }

  .article-brand img {
    width: 170px;
  }

  .article-cta {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.86rem;
  }

  .article-hero-copy {
    padding: 58px 22px;
  }

  .article-hero figure {
    min-height: 280px;
  }

  .article-layout {
    width: min(100% - 32px, 760px);
    padding: 58px 0 96px;
  }

  .article-content {
    font-size: 1rem;
  }

  .article-final-cta {
    padding: 28px 22px;
  }

  .article-final-cta > div {
    display: grid;
  }

  .article-footer {
    display: grid;
    padding: 34px 20px 110px;
  }

  .call-float {
    right: 12px;
    bottom: 12px;
    min-height: 50px;
    padding: 12px 16px;
    font-size: 0.92rem;
  }
}
