:root {
  --forest-950: #142019;
  --forest-900: #16261c;
  --forest-800: #1f3627;
  --forest-700: #2e4f39;
  --sage-300: #b7c4a4;
  --sage-100: #e3e9d6;
  --beige-200: #ece3cc;
  --beige-100: #f5f0e1;
  --offwhite: #faf7f0;
  --gold-500: #c9a050;
  --gold-400: #dcb464;
  --ink: #26321f;
  --ink-soft: #5f6d56;
  --line: #e4dcc6;
  --font-display: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--offwhite);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.78;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--gold-400);
  color: var(--forest-950);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus { top: 12px; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.site-nav { background: var(--forest-950); color: var(--beige-100); }
.site-nav__inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-700);
  color: var(--beige-100);
  font-size: 18px;
}
.brand b { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.brand small { display: block; color: var(--gold-400); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: none; }
.site-nav nav { display: flex; align-items: center; gap: 18px; }
.site-nav nav a { color: var(--beige-100); font-size: 0.86rem; font-weight: 600; text-decoration: none; }
.site-nav nav a:hover { color: var(--gold-400); }
.site-nav .nav-cta { border: 1px solid var(--gold-400); border-radius: 999px; color: var(--gold-400); padding: 8px 15px; }

.breadcrumb { padding: 20px 0; color: var(--ink-soft); font-size: 0.79rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; }
.breadcrumb li + li::before { content: '›'; margin-right: 7px; color: var(--gold-500); }
.breadcrumb a { text-decoration-color: var(--sage-300); text-underline-offset: 3px; }

.guide-hero { padding: 26px 0 42px; }
.guide-hero__grid { display: grid; gap: 30px; align-items: center; }
.eyebrow { color: #85662e; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
h1, h2, h3 { color: var(--forest-800); font-family: var(--font-display); font-weight: 600; text-wrap: balance; }
h1 { max-width: 16ch; margin-top: 12px; font-size: clamp(2.3rem, 5.4vw, 4.15rem); letter-spacing: -0.035em; line-height: 1.08; }
.guide-hero__lead { max-width: 58ch; margin-top: 22px; color: var(--ink-soft); font-size: 1.04rem; line-height: 1.75; }
.guide-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; color: var(--ink-soft); font-size: 0.72rem; font-weight: 600; }
.guide-meta span { border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, 0.7); padding: 5px 10px; }
.guide-hero figure { overflow: hidden; border: 1px solid rgba(201, 160, 80, 0.22); border-radius: 26px; box-shadow: 0 20px 55px rgba(31, 54, 39, 0.14); }
.guide-hero img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.article-shell { display: grid; gap: 34px; padding-bottom: 72px; align-items: start; }
.article {
  min-width: 0;
  border: 1px solid rgba(228, 220, 198, 0.88);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  padding: clamp(24px, 4vw, 46px);
  box-shadow: 0 16px 45px rgba(31, 54, 39, 0.055);
}
.article > p, .article > ul, .article > ol { max-width: 66ch; }
.article > p { margin-top: 19px; }
.article h2 { max-width: 23ch; margin-top: 48px; font-size: clamp(1.65rem, 3vw, 2.08rem); letter-spacing: -0.025em; line-height: 1.24; }
.article h2:first-of-type { margin-top: 38px; }
.article h3 { margin-top: 32px; font-size: 1.32rem; line-height: 1.3; }
.article ul, .article ol { margin: 16px 0 0 22px; }
.article li { margin-top: 10px; padding-left: 6px; }
.article li::marker { color: var(--gold-500); font-weight: 800; }
.article a { color: var(--forest-700); font-weight: 600; text-underline-offset: 3px; }
.article strong { color: var(--forest-800); }
.lede { color: var(--forest-800); font-size: 1.09rem; font-weight: 500; line-height: 1.82; }
.note, .source-box {
  margin-top: 30px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold-400);
  border-radius: 0 16px 16px 0;
  background: var(--beige-100);
  padding: 21px 23px;
}
.note p, .source-box p { margin: 0; }
.note p + p, .source-box p + p { margin-top: 9px; }
.checklist { list-style: none; margin-left: 0 !important; }
.checklist li { position: relative; padding-left: 30px; }
.checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--forest-700); font-weight: 900; }

.article-aside {
  background: var(--forest-800);
  color: var(--beige-100);
  border-radius: 22px;
  padding: 25px 23px;
}
.article-aside h2 { color: var(--beige-100); font-size: 1.55rem; line-height: 1.2; }
.article-aside p { margin-top: 10px; color: #d6dfce; font-size: 0.9rem; }
.article-aside ul { margin: 16px 0 0 18px; color: #d6dfce; font-size: 0.86rem; }
.article-aside a.btn { display: block; margin-top: 19px; border-radius: 999px; background: var(--gold-400); color: #241c08; padding: 12px 18px; text-align: center; text-decoration: none; font-weight: 800; }
.article-aside a.secondary { display: block; margin-top: 13px; color: var(--beige-100); text-align: center; font-size: 0.82rem; }

.index-hero { padding: 64px 0 40px; text-align: center; }
.index-hero h1 { max-width: 17ch; margin-inline: auto; }
.index-hero p { max-width: 66ch; margin: 18px auto 0; color: var(--ink-soft); }
.guide-grid { display: grid; gap: 20px; padding: 22px 0 76px; }
.guide-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: 0 9px 30px rgba(31, 54, 39, 0.07); transition: transform 180ms ease, box-shadow 180ms ease; }
.guide-card:hover { transform: translateY(-4px); box-shadow: 0 17px 42px rgba(31, 54, 39, 0.12); }
.guide-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 300ms ease; }
.guide-card:hover img { transform: scale(1.025); }
.guide-card__body { padding: 24px; }
.guide-card__body span { color: #85662e; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.guide-card h2 { margin-top: 8px; font-size: 1.42rem; letter-spacing: -0.02em; line-height: 1.3; }
.guide-card h2 a { text-decoration: none; }
.guide-card p { margin-top: 10px; color: var(--ink-soft); font-size: 0.9rem; }
.guide-card .read-more { display: inline-block; margin-top: 15px; color: var(--forest-700); font-size: 0.86rem; font-weight: 800; text-underline-offset: 3px; }

.guide-footer { background: var(--forest-950); color: var(--sage-300); padding: 42px 0; text-align: center; }
.guide-footer p { color: var(--beige-100); font-family: var(--font-display); font-size: 1.16rem; }
.guide-footer small { display: block; margin-top: 7px; }
.guide-footer a { color: var(--gold-400); }

@media (min-width: 760px) {
  .guide-hero__grid { grid-template-columns: 1.08fr 0.92fr; }
  .guide-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 960px) {
  .article-shell { grid-template-columns: minmax(0, 1fr) 310px; gap: 70px; }
  .article-aside { position: sticky; top: 24px; }
}

@media (max-width: 650px) {
  .site-nav__inner { min-height: 64px; }
  .site-nav nav a:not(.nav-cta) { display: none; }
  .brand b { font-size: 1rem; }
  .guide-hero { padding-top: 12px; }
  .guide-hero__lead { font-size: 1rem; }
  .guide-meta span { width: fit-content; }
  .article { border-radius: 18px; padding: 24px 20px; }
  .article h2 { margin-top: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .guide-card, .guide-card img { transition: none; }
}
