:root {
  --black: #111111;
  --gold: #d7a928;
  --gold-dark: #8a6508;
  --gold-light: #fff4d6;
  --red: #c81e2b;
  --gray: #f7f7f5;
  --muted: #4b5563;
  --border: #e5e1d7;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 16px; top: 16px; z-index: 100; padding: 12px 16px; background: var(--black); color: var(--white); }
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.article-width { width: min(780px, calc(100% - 32px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
}
.site-header .container { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: auto; height: 48px; }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-family: "Sora", system-ui, sans-serif; font-size: 20px; }
.brand-copy span { color: var(--muted); font-size: 13px; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { min-height: 44px; display: inline-flex; align-items: center; font-size: 15px; font-weight: 700; text-decoration: none; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--gold-dark); }
.call-link { padding: 10px 17px; border-radius: 8px; background: var(--gold); color: var(--black); }
.call-link:hover, .call-link:focus-visible { background: #c49318; color: var(--black) !important; }

.blog-hero { padding: 78px 0 48px; background: var(--gray); border-bottom: 1px solid var(--border); }
.breadcrumb { margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.breadcrumb a { color: var(--gold-dark); font-weight: 700; }
.eyebrow { margin: 0 0 12px; color: var(--gold-dark); font-size: 14px; font-weight: 800; text-transform: uppercase; }
h1, h2, h3 { font-family: "Sora", system-ui, sans-serif; line-height: 1.12; letter-spacing: 0; }
h1 { max-width: 920px; margin: 0; font-size: clamp(38px, 5.4vw, 66px); }
.dek { max-width: 780px; margin: 24px 0 0; color: var(--muted); font-size: clamp(18px, 2.2vw, 22px); line-height: 1.55; }
.post-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; color: var(--muted); font-size: 14px; }
.post-meta span { display: inline-flex; align-items: center; gap: 7px; }

.hero-media { margin: 40px auto 0; }
.hero-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 8px; }
.hero-media figcaption { margin-top: 10px; color: var(--muted); font-size: 13px; }
.article { padding: 52px 0 80px; }
.article h2 { margin: 52px 0 18px; font-size: clamp(27px, 3vw, 36px); }
.article h3 { margin: 34px 0 12px; font-size: 22px; }
.article p { margin: 0 0 20px; }
.article ul, .article ol { margin: 0 0 24px; padding-left: 24px; }
.article li { margin-bottom: 11px; }
.article a { color: #765600; font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article strong { font-weight: 800; }
.quick-answer { margin: 0 0 42px; padding: 26px; border-left: 5px solid var(--red); background: var(--gold-light); border-radius: 8px; }
.quick-answer h2 { margin: 0 0 10px; font-size: 24px; }
.quick-answer p:last-child { margin-bottom: 0; }
.checklist { margin: 24px 0 34px; padding: 0; list-style: none; counter-reset: checklist; }
.checklist li { position: relative; padding: 20px 18px 20px 62px; border-top: 1px solid var(--border); counter-increment: checklist; }
.checklist li:last-child { border-bottom: 1px solid var(--border); }
.checklist li::before {
  content: counter(checklist);
  position: absolute;
  left: 12px;
  top: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-weight: 800;
}
.note { margin: 28px 0; padding: 20px 22px; border: 1px solid var(--border); border-radius: 8px; background: var(--gray); }
.note strong { display: block; margin-bottom: 5px; }
.day-before { margin: 24px 0; padding: 26px; background: var(--black); color: var(--white); border-radius: 8px; }
.day-before h3 { margin-top: 0; color: var(--white); }
.day-before li::marker { color: var(--gold); }
.faq { border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary { min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-family: "Sora", system-ui, sans-serif; font-size: 18px; font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-dark); font-size: 26px; }
.faq details[open] summary::after { content: "-"; }
.faq details p { padding: 0 0 20px; color: var(--muted); }
.source-list { font-size: 15px; }
.article-cta { margin-top: 48px; padding: 30px; border-top: 5px solid var(--red); border-radius: 8px; background: var(--black); color: var(--white); }
.article-cta h2 { margin-top: 0; color: var(--white); }
.article-cta p { color: #d1d5db; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 20px; border-radius: 8px; background: var(--gold); color: var(--black) !important; font-weight: 800; text-decoration: none !important; }
.button:hover, .button:focus-visible { background: #c49318; }
.disclaimer { margin-top: 24px; color: var(--muted); font-size: 13px; }

.index-list { padding: 56px 0 88px; }
.article-row { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; overflow: hidden; border: 1px solid var(--border); border-radius: 8px; background: var(--gray); }
.article-row img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.article-row-copy { padding: 40px; }
.article-row h2 { margin: 12px 0 18px; font-size: clamp(28px, 3.4vw, 42px); }
.article-row p { color: var(--muted); }

.site-footer { padding: 48px 0 26px; background: var(--black); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer p, .site-footer a { color: #b7bec8; font-size: 14px; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #8f98a5; font-size: 12px; }

@media (max-width: 760px) {
  body { font-size: 16px; }
  .site-header .container { min-height: 66px; }
  .brand img { height: 42px; }
  .brand-copy strong { font-size: 18px; }
  .site-nav a:not(.call-link) { display: none; }
  .call-link { padding: 9px 13px; font-size: 14px !important; }
  .blog-hero { padding: 48px 0 32px; }
  .hero-media { margin-top: 28px; }
  .article { padding-top: 36px; }
  .quick-answer, .day-before, .article-cta { padding: 22px; }
  .article-row { grid-template-columns: 1fr; }
  .article-row img { min-height: 240px; }
  .article-row-copy { padding: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
}
