:root {
  --blog-black: #090909;
  --blog-gold: #c5a46a;
  --blog-green: #1f5c3a;
  --blog-paper: #f4f1eb;
  --blog-ink: #191919;
  --blog-muted: #69645c;
  --blog-line: rgba(25, 25, 25, 0.16);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

.blog-body {
  margin: 0;
  background: var(--blog-paper);
  color: var(--blog-ink);
  font-family: "Inter", sans-serif;
  font-weight: 300;
}

.blog-body * {
  box-sizing: border-box;
}

.blog-body a {
  color: inherit;
}

.blog-header {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px clamp(24px, 5vw, 80px);
  background: var(--blog-black);
  color: #fff;
}

.blog-header__logo,
.blog-footer__logo {
  display: inline-flex;
}

.blog-header__logo img,
.blog-footer__logo img {
  width: 120px;
  height: auto;
}

.blog-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.blog-header__nav a {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.blog-header__nav a:hover,
.blog-header__nav a:focus-visible {
  color: var(--blog-gold);
}

.blog-hero {
  position: relative;
  min-height: min(820px, 84vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--blog-black);
  color: #fff;
}

.blog-hero__image,
.blog-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.blog-hero__image {
  object-fit: cover;
  object-position: center 50%;
}

.blog-hero__shade {
  background: linear-gradient(180deg, rgba(9, 9, 9, 0.24), rgba(9, 9, 9, 0.9));
}

.blog-hero__content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 68px;
}

.blog-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-breadcrumbs a {
  text-decoration: none;
}

.blog-hero .small-label,
.blog-final-cta .small-label {
  color: var(--blog-gold);
}

.blog-hero h1 {
  max-width: 980px;
  margin: 20px 0 28px;
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.blog-hero__intro {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.blog-hero__intro p {
  margin: 0 0 12px;
}

.blog-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-shell {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 780px);
  gap: clamp(48px, 8vw, 120px);
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0 120px;
}

.blog-toc {
  position: sticky;
  top: 24px;
  align-self: start;
  padding: 30px 0;
  border-top: 1px solid var(--blog-line);
  border-bottom: 1px solid var(--blog-line);
}

.blog-toc .small-label {
  color: var(--blog-muted);
}

.blog-toc ol {
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.blog-toc li + li {
  margin-top: 11px;
}

.blog-toc li a {
  color: var(--blog-muted);
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
}

.blog-toc li a:hover,
.blog-toc li a:focus-visible {
  color: var(--blog-green);
}

.blog-toc__cta,
.blog-final-cta > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: var(--blog-green);
  color: #fff !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-decoration: none !important;
  text-transform: uppercase;
}

.blog-content {
  min-width: 0;
}

.blog-section {
  padding: 0 0 64px;
  border-bottom: 1px solid var(--blog-line);
}

.blog-section + .blog-section {
  padding-top: 68px;
}

.blog-section h2,
.blog-final-cta h2 {
  margin: 0 0 28px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.blog-section h3 {
  margin: 42px 0 15px;
  color: var(--blog-green);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.blog-section p,
.blog-section li {
  font-size: 17px;
  line-height: 1.82;
}

.blog-section p {
  margin: 0 0 22px;
}

.blog-section ul,
.blog-section ol {
  margin: 26px 0;
  padding-left: 24px;
}

.blog-section li + li {
  margin-top: 12px;
}

.blog-section a {
  color: var(--blog-green);
  text-decoration-color: rgba(31, 92, 58, 0.4);
  text-underline-offset: 3px;
}

.blog-steps,
.blog-checklist {
  padding: 0 !important;
  counter-reset: noa-step;
  list-style: none;
}

.blog-steps li,
.blog-checklist li {
  position: relative;
  min-height: 58px;
  padding: 16px 14px 16px 64px;
  border-top: 1px solid var(--blog-line);
  counter-increment: noa-step;
}

.blog-steps li::before,
.blog-checklist li::before {
  position: absolute;
  top: 15px;
  left: 8px;
  color: var(--blog-gold);
  content: counter(noa-step, decimal-leading-zero);
  font-family: "Playfair Display", serif;
  font-size: 22px;
}

.blog-section--faq h3 {
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid var(--blog-line);
  color: var(--blog-ink);
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-transform: none;
}

.blog-section--faq h3 + p {
  padding-bottom: 26px;
}

.blog-section--cta {
  margin: 20px 0 70px;
  padding: 48px !important;
  border: 0;
  background: var(--blog-black);
  color: #fff;
}

.blog-section--cta h2 {
  color: var(--blog-gold);
}

.blog-section--sources {
  color: var(--blog-muted);
}

.blog-section--sources p,
.blog-section--sources li {
  font-size: 14px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.blog-final-cta {
  margin-top: 84px;
  padding: 54px;
  background: var(--blog-gold);
}

.blog-final-cta h2 {
  max-width: 600px;
}

.blog-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
  padding: 52px clamp(24px, 5vw, 80px);
  background: var(--blog-black);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.blog-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-footer__links a {
  text-decoration: none;
}

@media (max-width: 1280px) and (min-width: 901px) {
  .blog-header {
    padding-right: 28px;
    padding-left: 28px;
  }

  .blog-header__nav {
    gap: 22px;
  }

  .blog-header__nav a {
    font-size: 10px;
    letter-spacing: 0.09em;
  }
}

.blog-index {
  min-height: 74vh;
  padding: 100px clamp(24px, 7vw, 120px) 130px;
}

.blog-index__hero {
  max-width: 980px;
  padding-bottom: 76px;
  border-bottom: 1px solid var(--blog-line);
}

.blog-index__hero .small-label,
.blog-card .small-label {
  color: var(--blog-green);
}

.blog-index__hero h1 {
  max-width: 900px;
  margin: 22px 0 26px;
  font-family: "Playfair Display", serif;
  font-size: clamp(52px, 8vw, 106px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.blog-index__hero > p:last-child {
  max-width: 680px;
  color: var(--blog-muted);
  font-size: 19px;
  line-height: 1.7;
}

.blog-index__grid {
  padding-top: 74px;
}

.blog-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  max-width: 1180px;
  background: #fff;
}

.blog-card__image-link {
  min-height: 520px;
  overflow: hidden;
}

.blog-card__image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card__image-link:hover img {
  transform: scale(1.025);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 76px);
}

.blog-card h2 {
  margin: 20px 0 22px;
  font-family: "Playfair Display", serif;
  font-size: clamp(35px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.blog-card h2 a,
.blog-card__read {
  text-decoration: none;
}

.blog-card__body > p:not(.small-label) {
  color: var(--blog-muted);
  font-size: 16px;
  line-height: 1.7;
}

.blog-card__read {
  margin-top: 28px;
  color: var(--blog-green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .blog-header {
    min-height: 74px;
  }

  .blog-header__nav a:first-child {
    display: none;
  }

  .blog-shell {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-top: 64px;
  }

  .blog-toc {
    position: static;
    order: 0;
  }

  .blog-content {
    order: 1;
  }

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

  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card__image-link {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .blog-header__nav {
    gap: 16px;
  }

  .blog-header__nav a:nth-child(2) {
    display: none;
  }

  .blog-hero {
    min-height: 760px;
  }

  .blog-hero__content,
  .blog-shell {
    width: min(100% - 32px, 1200px);
  }

  .blog-hero h1 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .blog-section p,
  .blog-section li {
    font-size: 16px;
  }

  .blog-section--cta,
  .blog-final-cta {
    padding: 32px 24px !important;
  }
}
