:root {
  --bg: #fdfbf7;
  --paper: #fffaf1;
  --ink: #2c303a;
  --muted: #697079;
  --teal: #2a6f75;
  --mustard: #eca72c;
  --cta: #d95a40;
  --line: #e6d9c5;
  --soft: #f4eadc;
  --shadow: 0 24px 70px rgba(42, 111, 117, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.topline {
  border-bottom: 1px solid var(--line);
  background: rgba(253, 251, 247, 0.94);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}

.topline__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.sponsored {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  padding: clamp(38px, 7vw, 86px) 0 34px;
}

.kicker {
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  margin: 12px 0 18px;
  color: var(--teal);
  font-size: clamp(2.45rem, 6vw, 5.2rem);
  line-height: 0.98;
  max-width: 11ch;
}

h2 {
  color: var(--teal);
  font-size: clamp(1.72rem, 4vw, 2.55rem);
  line-height: 1.08;
  margin: 54px 0 18px;
}

h3 {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0 0 10px;
}

.lede {
  max-width: 58ch;
  color: #3d444b;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 24px;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  left: -22px;
  bottom: 24px;
  width: min(260px, 80%);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--mustard);
  padding: 16px 18px;
  box-shadow: 0 18px 38px rgba(44, 48, 58, 0.12);
  font-size: 0.94rem;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(240px, 310px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding-bottom: 80px;
}

.article-body {
  min-width: 0;
}

.article-body p {
  margin: 0 0 21px;
}

.article-body strong {
  color: #1f555a;
}

.article-body figure {
  margin: 38px 0;
}

.article-body figure img {
  border-radius: 8px;
  border: 1px solid var(--line);
}

figcaption {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 10px;
}

blockquote {
  margin: 34px 0;
  padding: 22px 24px;
  background: var(--soft);
  border-left: 5px solid var(--teal);
  color: #30424a;
  font-size: 1.1rem;
}

blockquote cite {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  margin-top: 10px;
}

.proof-box,
.comparison,
.cta-box {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: clamp(22px, 4vw, 32px);
  border-radius: 8px;
  margin: 38px 0;
}

.comparison table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.comparison th,
.comparison td {
  border-bottom: 1px solid var(--line);
  padding: 12px 8px;
  text-align: left;
  vertical-align: top;
}

.comparison th {
  color: var(--teal);
}

.side {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.side-panel {
  border-top: 3px solid var(--teal);
  background: #fffdf8;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(44, 48, 58, 0.08);
}

.source-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-box {
  text-align: left;
  border-color: rgba(217, 90, 64, 0.35);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 7px;
  background: var(--cta);
  color: #fffaf1;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
  box-shadow: 0 14px 30px rgba(217, 90, 64, 0.26);
}

.button:hover {
  transform: translateY(-1px);
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  background: rgba(253, 251, 247, 0.96);
  border-top: 1px solid var(--line);
  padding: 10px 16px;
  transform: translateY(110%);
  transition: transform 220ms ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  width: min(900px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta span {
  font-weight: 800;
  color: var(--teal);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 90px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  body {
    font-size: 17px;
  }

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

  h1 {
    max-width: 12ch;
  }

  .hero-note {
    position: static;
    width: auto;
    margin-top: -16px;
  }

  .side {
    position: static;
  }

  .sticky-cta__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .sticky-cta span {
    display: none;
  }
}
