:root {
  --ink: #17241d;
  --green: #1e3a2f;
  --paper: #f5efe3;
  --cream: #fbf8f1;
  --gold: #c97e3e;
  --muted: #6f6b5f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Golos Text", sans-serif; -webkit-font-smoothing: antialiased; }
a { color: var(--green); }
img { max-width: 100%; }
.article-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(30,58,47,.12); background: rgba(245,239,227,.94); backdrop-filter: blur(12px); }
.article-header__inner { max-width: 1240px; margin: auto; padding: 12px clamp(16px,4vw,32px); display: flex; align-items: center; gap: 20px; }
.article-logo { width: auto; height: clamp(68px,7vw,88px); }
.article-nav { margin-left: auto; display: flex; gap: clamp(12px,2vw,24px); flex-wrap: wrap; align-items: center; font-size: 14px; font-weight: 600; }
.article-nav a { text-decoration: none; }
.article-hero { background: var(--green); color: var(--paper); }
.article-hero__inner { max-width: 1240px; margin: auto; padding: clamp(48px,7vw,92px) clamp(16px,4vw,32px); display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.82fr); gap: clamp(28px,5vw,70px); align-items: center; }
.article-kicker { margin: 0 0 16px; color: #e4a263; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.article-hero h1 { max-width: 16ch; margin: 0; font-family: "Cormorant Garamond",serif; font-size: clamp(42px,6vw,76px); font-weight: 600; line-height: .98; }
.article-deck { max-width: 58ch; margin: 22px 0 0; color: rgba(245,239,227,.76); font-size: clamp(16px,1.6vw,20px); line-height: 1.65; }
.article-meta { margin: 24px 0 0; color: rgba(245,239,227,.62); font-size: 13px; }
.article-hero figure { margin: 0; padding: 18px; border-radius: 28px; background: rgba(245,239,227,.07); }
.article-hero img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: contain; border-radius: 18px; background: #f8f2e8; }
.article-hero figcaption { margin-top: 12px; color: rgba(245,239,227,.66); font-size: 12px; line-height: 1.5; }
.article-shell { width: min(100% - 32px, 880px); margin: auto; padding: clamp(42px,6vw,78px) 0; }
.answer-box { padding: clamp(24px,4vw,38px); border: 1px solid rgba(201,126,62,.35); border-radius: 22px; background: var(--cream); box-shadow: 0 20px 50px rgba(30,58,47,.07); }
.answer-box strong { display: block; color: var(--gold); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.answer-box p { margin: 14px 0 0; font-family: "Cormorant Garamond",serif; font-size: clamp(22px,2.8vw,29px); line-height: 1.42; }
.fact-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; margin: 32px 0 0; }
.fact-card { padding: 20px; border: 1px solid rgba(30,58,47,.11); border-radius: 16px; background: var(--cream); }
.fact-card b { display: block; color: var(--gold); font-family: "Cormorant Garamond",serif; font-size: 28px; }
.fact-card span { display: block; margin-top: 7px; color: #4a5449; font-size: 13px; line-height: 1.55; }
.article-body { margin-top: 54px; }
.article-body h2 { margin: 56px 0 16px; color: var(--green); font-family: "Cormorant Garamond",serif; font-size: clamp(30px,4vw,43px); font-weight: 600; line-height: 1.08; }
.article-body h3 { margin: 34px 0 12px; color: var(--green); font-family: "Cormorant Garamond",serif; font-size: 28px; }
.article-body p, .article-body li { color: #33403a; font-size: 16px; line-height: 1.82; }
.article-body a { text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-body blockquote { margin: 30px 0; padding: 20px 24px; border-left: 3px solid var(--gold); border-radius: 0 14px 14px 0; background: #efe4d3; color: #33403a; }
.article-figure { margin: 34px 0; }
.article-figure img { display: block; width: 100%; max-height: 700px; object-fit: contain; border-radius: 20px; background: var(--green); }
.article-figure figcaption { margin: 10px 4px 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.note { padding: 22px 24px; border-radius: 16px; background: #dce5d9; color: #33403a; font-size: 14px; line-height: 1.7; }
.post-gallery { margin: 34px 0; }
.post-gallery__viewport { position: relative; overflow: hidden; border-radius: 22px; background: var(--green); }
.post-gallery__track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.post-gallery__track::-webkit-scrollbar { display: none; }
.post-gallery__slide { min-width: 100%; scroll-snap-align: start; }
.post-gallery__slide a { display: grid; place-items: center; min-height: min(68vw,620px); padding: 14px; }
.post-gallery__slide img { width: 100%; height: min(64vw,590px); object-fit: contain; }
.post-gallery__arrow { position: absolute; top: 50%; z-index: 2; width: 46px; height: 46px; border: 0; border-radius: 50%; color: white; background: rgba(20,35,28,.78); font-size: 28px; cursor: pointer; transform: translateY(-50%); }
.post-gallery__arrow--prev { left: 14px; }
.post-gallery__arrow--next { right: 14px; }
.post-gallery__nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 12px; }
.post-gallery__counter { color: var(--muted); font-size: 13px; }
.post-gallery__dots { display: flex; gap: 7px; flex-wrap: wrap; justify-content: flex-end; }
.post-gallery__dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(30,58,47,.25); }
.post-gallery__dot[aria-current="true"] { background: var(--gold); }
.caption { margin: 10px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.faq details { margin: 12px 0; border: 1px solid rgba(30,58,47,.12); border-radius: 15px; background: var(--cream); }
.faq summary { cursor: pointer; padding: 18px 20px; color: var(--green); font-weight: 700; }
.faq details p { margin: 0; padding: 0 20px 20px; font-size: 14px; }
.sources { margin-top: 56px; padding: 26px; border-radius: 18px; background: var(--cream); }
.sources h2 { margin-top: 0; }
.sources li { font-size: 14px; }
.article-cta { margin-top: 50px; padding: clamp(28px,4vw,44px); border-radius: 24px; color: var(--paper); background: var(--green); }
.article-cta h2 { margin: 0; color: var(--paper); }
.article-cta p { color: rgba(245,239,227,.74); }
.article-cta a { display: inline-flex; margin: 8px 8px 0 0; padding: 12px 19px; border-radius: 999px; color: white; background: var(--gold); font-size: 14px; font-weight: 700; text-decoration: none; }
.article-cta a + a { border: 1px solid rgba(245,239,227,.3); background: transparent; }
.article-footer { padding: 34px 16px; color: rgba(245,239,227,.65); background: #14231c; text-align: center; font-size: 13px; }

@media (max-width: 760px) {
  .article-header__inner { align-items: flex-start; }
  .article-nav { gap: 10px 14px; font-size: 12px; }
  .article-nav a:nth-child(n+4) { display: none; }
  .article-hero__inner { grid-template-columns: 1fr; }
  .article-hero h1 { max-width: none; }
  .fact-grid { grid-template-columns: 1fr; }
  .post-gallery__slide a { min-height: 76vw; padding: 8px; }
  .post-gallery__slide img { height: 72vw; }
  .post-gallery__arrow { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
