:root {
  --flame: #e85f45;
  --flame-dark: #b83d2b;
  --flame-soft: #fff0eb;
  --ink: #211915;
  --muted: #6e625d;
  --paper: #fffaf7;
  --white: #ffffff;
  --sage: #3d5a4f;
  --sage-soft: #eaf2ed;
  --line: #eadbd4;
  --shadow: 0 22px 55px rgba(64, 38, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(25, 15, 12, 0.72), rgba(25, 15, 12, 0.12));
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.18rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--flame);
  box-shadow: 0 8px 24px rgba(232, 95, 69, 0.36);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta,
.hero-cta,
.button-light {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.nav-cta,
.hero-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--flame);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  margin-top: 2px;
  padding: 14px 28px;
  box-shadow: 0 18px 38px rgba(184, 61, 43, 0.34);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(18px, 4vw, 56px) 56px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(30, 19, 15, 0.86) 0%, rgba(30, 19, 15, 0.68) 38%, rgba(30, 19, 15, 0.16) 74%),
    linear-gradient(0deg, rgba(30, 19, 15, 0.6) 0%, rgba(30, 19, 15, 0.04) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: #ffd5ca;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--flame-dark);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

section:not(.hero) {
  padding: clamp(64px, 9vw, 112px) 0;
}

.band {
  background: var(--white);
}

.two-column,
.comparison-layout,
.safety-layout,
.final-layout,
.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.intro p:not(.eyebrow),
.comparison p,
.safety p,
.final-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.feature-grid article,
.step-list article,
.score-list,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-grid article {
  min-height: 260px;
  padding: 28px;
}

.feature-number {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--flame);
  font-weight: 900;
}

.feature-grid p,
.step-list p,
.faq p,
.check-list {
  margin: 0;
  color: var(--muted);
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
  counter-reset: steps;
}

.step-list article {
  position: relative;
  padding: 30px 28px 28px;
  background: linear-gradient(180deg, var(--flame-soft), var(--white));
}

.step-list article::before {
  counter-increment: steps;
  content: counter(steps);
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--sage);
  font-weight: 900;
}

.comparison {
  background: var(--sage-soft);
}

.score-list {
  display: grid;
  padding: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.score-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.score-list div:last-child {
  border-bottom: 0;
}

.score-list strong {
  color: var(--ink);
}

.score-list span {
  color: var(--muted);
  text-align: right;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--flame);
  border-bottom: 3px solid var(--flame);
  transform: rotate(-45deg);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.faq summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 850;
}

.faq details p {
  padding: 0 22px 22px;
}

.final-cta {
  color: var(--white);
  background: var(--flame-dark);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.button-light {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  color: var(--flame-dark);
  background: var(--white);
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #211915;
}

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

.footer-layout p {
  margin: 0;
}

.footer-layout div {
  display: flex;
  gap: 20px;
}

.inner-header {
  position: relative;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}

.inner-header .brand-mark {
  color: var(--white);
}

.inner-header .nav-links a[aria-current="page"] {
  color: var(--flame-dark);
  opacity: 1;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 104px 0 72px;
  color: var(--white);
  background: var(--ink);
}

.page-hero-media,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.page-hero-overlay {
  background: linear-gradient(90deg, rgba(33, 25, 21, 0.94), rgba(33, 25, 21, 0.6) 55%, rgba(33, 25, 21, 0.2));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
}

.page-hero h1,
.article-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
}

.page-hero p:not(.eyebrow),
.article-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.blog-section {
  background: var(--paper);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.post-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.post-card:first-child {
  grid-column: 1 / -1;
  min-height: 340px;
  color: var(--white);
  background: var(--sage);
}

.post-card:first-child .post-meta,
.post-card:first-child p {
  color: rgba(255, 255, 255, 0.78);
}

.post-card h2,
.post-card h3 {
  max-width: 700px;
  margin: 12px 0;
}

.post-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.post-card p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.post-meta {
  color: var(--flame-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--flame-dark);
  font-weight: 850;
}

.post-card:first-child .text-link {
  color: var(--white);
}

.text-link::after {
  content: "\2192";
}

.review-callout {
  color: var(--white);
  background: var(--flame-dark);
}

.review-callout .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}

.review-callout p {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.review-callout .button-light {
  white-space: nowrap;
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.review-copy h2 {
  margin-top: 56px;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.review-copy h2:first-child {
  margin-top: 0;
}

.review-copy p,
.review-copy li,
.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 1.06rem;
}

.review-copy ul,
.article-body ul,
.article-body ol {
  padding-left: 24px;
}

.review-summary {
  position: sticky;
  top: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.review-summary h2 {
  font-size: 1.5rem;
}

.rating-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.rating-row span {
  color: var(--muted);
}

.review-summary .hero-cta {
  width: 100%;
  margin-top: 24px;
}

.article-hero {
  padding: 92px 0 70px;
  color: var(--white);
  background: var(--sage);
}

.article-hero .section-inner {
  width: min(900px, calc(100% - 36px));
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(220px, 300px);
  gap: clamp(38px, 7vw, 86px);
  align-items: start;
}

.article-body h2 {
  margin: 54px 0 16px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.article-body h3 {
  margin-top: 30px;
}

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

.article-aside {
  padding: 24px;
  border-left: 4px solid var(--flame);
  background: var(--white);
}

.article-aside h2 {
  font-size: 1.3rem;
}

.article-aside a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--flame-dark);
  font-weight: 750;
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.article-nav a {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.article-nav a:last-child {
  text-align: right;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    width: min(520px, 100%);
    gap: 10px 18px;
    font-size: 0.88rem;
  }

  .brand {
    justify-self: center;
  }

  .hero {
    min-height: 880px;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(30, 19, 15, 0.88), rgba(30, 19, 15, 0.35)),
      linear-gradient(0deg, rgba(30, 19, 15, 0.75), rgba(30, 19, 15, 0.06));
  }

  .two-column,
  .comparison-layout,
  .safety-layout,
  .final-layout,
  .footer-layout,
  .review-layout,
  .article-shell,
  .review-callout .section-inner {
    grid-template-columns: 1fr;
  }

  .hero-cta,
  .button-light {
    width: 100%;
  }

  .button-light {
    justify-self: stretch;
  }

  .feature-grid,
  .step-list,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .post-card:first-child {
    grid-column: auto;
  }

  .review-summary {
    position: static;
  }

  .review-callout .button-light {
    justify-self: stretch;
  }

  .feature-grid article {
    min-height: 0;
  }

  .feature-number {
    margin-bottom: 18px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
    gap: 10px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 820px;
    padding: 104px 16px 32px;
  }

  .inner-header {
    position: relative;
  }

  .page-hero {
    min-height: 470px;
    padding: 62px 0 48px;
  }

  .article-hero {
    padding: 58px 0 48px;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 18px;
  }

  .post-card {
    min-height: 0;
    padding: 24px;
  }

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

  .article-nav a:last-child {
    text-align: left;
  }

  .hero-media img {
    object-position: 58% center;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.65rem);
  }

  section:not(.hero) {
    padding: 56px 0;
  }

  .score-list div {
    display: grid;
    gap: 4px;
  }

  .score-list span {
    text-align: left;
  }

  .footer-layout div {
    flex-wrap: wrap;
  }
}
