
:root {
  --dark:   #1c2b1a;
  --green:  #2d5a27;
  --accent: #4a7c59;
  --gold:   #c8973a;
  --cream:  #faf8f3;
  --cream-dk:#f2ede3;
  --border: #ddd6c4;
  --ink:    #1a1a14;
  --ink2:   #2c2c20;
  --muted:  #6b6550;
  --white:  #ffffff;
  --r:      9px;
  --serif:  'Lora', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;
  --max:    1080px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { background: var(--cream); color: var(--ink); font-family: var(--sans); font-size: 17px; line-height: 1.75; }
img { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--dark); text-decoration: underline; }
sup { font-size: .62em; vertical-align: super; color: var(--muted); }

/* ── Header ── */
.site-header { background: var(--dark); border-bottom: 3px solid var(--gold); position: sticky; top: 0; z-index: 100; }
.hdr { max-width: var(--max); margin: 0 auto; padding: .75rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.brand-mark { background: var(--gold); width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.brand-mark svg { width: 22px; height: 22px; fill: var(--dark); }
.brand-name { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--white); line-height: 1; }
.brand-tag { font-size: .6rem; color: rgba(255,255,255,.38); letter-spacing: .1em; text-transform: uppercase; display: block; margin-top: .15rem; }
.nav { display: flex; gap: .15rem; align-items: center; }
.nav a { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.6); padding: .4rem .75rem; border-radius: 6px; transition: all .15s; }
.nav a:hover { color: var(--white); background: rgba(255,255,255,.08); text-decoration: none; }
.nav .cta-nav { background: var(--gold); color: var(--dark) !important; font-weight: 700; }
.nav .cta-nav:hover { opacity: .9; background: var(--gold); }
.hamburger { display: none; background: rgba(255,255,255,.08); border: none; width: 38px; height: 38px; border-radius: 7px; cursor: pointer; color: rgba(255,255,255,.7); font-size: .95rem; align-items: center; justify-content: center; }
.mnav { display: none; background: var(--dark); border-top: 1px solid rgba(255,255,255,.07); }
.mnav.open { display: block; }
.mnav a { display: block; padding: .85rem 1.5rem; font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.6); border-bottom: 1px solid rgba(255,255,255,.05); }
.mnav a:hover { color: var(--white); background: rgba(255,255,255,.04); text-decoration: none; }
@media (max-width: 780px) { .nav { display: none; } .hamburger { display: flex; } }

/* ── Hero ── */
.hero { background: var(--dark); overflow: hidden; }
.hero-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; align-items: stretch; }
@media (max-width: 800px) { .hero-inner { grid-template-columns: 1fr; } }
.hero-text { padding: 3.5rem 3rem 3.5rem 1.5rem; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hero-eyebrow::before { content: ''; display: block; width: 18px; height: 2px; background: var(--gold); border-radius: 2px; }
.hero h1 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--white); line-height: 1.15; letter-spacing: -.025em; margin-bottom: 1rem; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-deck { font-size: 1rem; color: rgba(255,255,255,.6); line-height: 1.72; max-width: 560px; margin-bottom: 1.75rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: .4rem 1.25rem; font-size: .74rem; color: rgba(255,255,255,.35); padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.09); }
.hero-meta span { display: flex; align-items: center; gap: .35rem; }
.hero-img-panel { position: relative; overflow: hidden; min-height: 320px; }
.hero-img-panel img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-panel::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--dark) 0%, transparent 30%); z-index: 1; }
@media (max-width: 800px) { .hero-img-panel { min-height: 200px; } .hero-img-panel::before { background: linear-gradient(0deg, var(--dark) 0%, transparent 50%); } }

/* ── Contents bar ── */
.cb-bar { background: var(--cream-dk); border-bottom: 1px solid var(--border); overflow-x: auto; white-space: nowrap; }
.cb-inner { max-width: var(--max); margin: 0 auto; padding: .62rem 1.5rem; display: flex; align-items: center; gap: 1.5rem; }
.cb-label { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); flex-shrink: 0; }
.cb-inner a { font-size: .78rem; font-weight: 600; color: var(--muted); border-left: 1px solid var(--border); padding-left: .9rem; text-decoration: none; transition: color .15s; }
.cb-inner a:first-of-type { border-left: none; padding-left: 0; }
.cb-inner a:hover { color: var(--accent); }

/* ── Wrap ── */
.article-wrap { max-width: var(--max); margin: 0 auto; padding: 2.75rem 1.5rem 4rem; }

/* ── Disclaimer ── */
.disclaimer { background: var(--cream-dk); border-left: 3px solid var(--accent); border-radius: 0 6px 6px 0; padding: .8rem 1.1rem; margin-bottom: 2.25rem; font-size: .84rem; color: var(--muted); line-height: 1.65; }

/* ── Stat row ── */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-bottom: 2.25rem; }
.stat-cell { background: var(--white); padding: 1.1rem; text-align: center; }
.stat-n { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--accent); letter-spacing: -.04em; line-height: 1; }
.stat-l { font-size: .68rem; color: var(--muted); margin-top: .28rem; line-height: 1.4; }

/* ── Article sections ── */
.art-section { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.art-section:last-of-type { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.section-tag { font-size: .64rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--accent); margin-bottom: .6rem; display: flex; align-items: center; gap: .45rem; }
.section-tag::before { content: ''; display: block; width: 14px; height: 2px; background: var(--accent); border-radius: 2px; }
.art-section h2 { font-family: var(--serif); font-size: 1.6rem; color: var(--dark); line-height: 1.22; letter-spacing: -.02em; margin-bottom: .9rem; }
.art-section p { font-size: 1rem; color: var(--ink2); line-height: 1.88; margin-bottom: 1.1rem; }
.art-section p strong { color: var(--ink); }
.art-section img { border-radius: var(--r); margin: 1.5rem 0; width: 100%; box-shadow: 0 2px 8px rgba(0,0,0,.08); }

/* ── Callout box ── */
.callout { background: #f0f5ee; border: 1px solid #c2d6bc; border-left: 4px solid var(--green); border-radius: 0 var(--r) var(--r) 0; padding: 1rem 1.25rem; margin: 1.5rem 0; }
.callout p { font-size: .92rem; color: var(--ink2); margin: 0; line-height: 1.72; }
.callout strong { color: var(--dark); }

/* ── Pull quote ── */
.pullquote { border-left: 4px solid var(--gold); padding: .9rem 1.35rem; margin: 1.75rem 0; background: #fdf8ee; border-radius: 0 8px 8px 0; }
.pullquote p { font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: var(--dark); line-height: 1.6; margin: 0; }
.pullquote cite { display: block; font-size: .72rem; color: var(--muted); margin-top: .45rem; font-style: normal; }

/* ── Limits table ── */
.limits-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .9rem; }
.limits-table th { background: var(--dark); color: var(--white); font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .7rem .9rem; text-align: left; }
.limits-table td { padding: .72rem .9rem; border-bottom: 1px solid var(--border); color: var(--ink2); line-height: 1.55; }
.limits-table tr:nth-child(even) td { background: var(--cream-dk); }
.limits-table tr:last-child td { border-bottom: none; }
.badge { display: inline-block; font-size: .67rem; font-weight: 700; padding: .15rem .45rem; border-radius: 4px; }
.badge-ok { background: #d1fae5; color: #065f46; }
.badge-warn { background: #fef3c7; color: #92400e; }
.badge-bad { background: #fee2e2; color: #991b1b; }

/* ── Author ── */
.author-row { display: flex; gap: 1rem; border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 1.5rem; align-items: flex-start; }
.author-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-row h3 { font-family: var(--serif); font-size: .95rem; color: var(--dark); margin-bottom: .2rem; font-weight: 700; }
.author-row p { font-size: .84rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ── Capture ── */
.capture { background: var(--dark); padding: 3.75rem 1.5rem; }
.cap-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
@media (max-width: 860px) { .cap-inner { grid-template-columns: 1fr; } }
.cap-inner h2 { font-family: var(--serif); font-size: 1.7rem; color: var(--white); line-height: 1.2; margin-bottom: .6rem; }
.cap-inner > div:first-child p { font-size: .92rem; color: rgba(255,255,255,.58); line-height: 1.72; }
.cap-form { display: flex; flex-direction: column; gap: .6rem; }
.cap-row { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
@media (max-width: 500px) { .cap-row { grid-template-columns: 1fr; } }
.cap-label { font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.55); letter-spacing: .06em; text-transform: uppercase; display: block; margin-bottom: .2rem; }
.cap-input { width: 100%; padding: .62rem .9rem; border: 1.5px solid rgba(255,255,255,.2); border-radius: 7px; background: rgba(255,255,255,.08); color: var(--white); font-family: var(--sans); font-size: .9rem; }
.cap-input::placeholder { color: rgba(255,255,255,.3); }
.cap-input:focus { outline: none; border-color: var(--gold); }
.cap-consent { display: flex; gap: .5rem; align-items: flex-start; font-size: .75rem; color: rgba(255,255,255,.45); line-height: 1.55; }
.cap-consent input { flex-shrink: 0; margin-top: .2rem; }
.cap-consent a { color: rgba(255,255,255,.7); }
.cap-err { color: #fca5a5; font-size: .76rem; display: none; }
.cap-err.show { display: block; }
.cap-btn { background: var(--gold); color: var(--dark); border: none; padding: .78rem 1.4rem; border-radius: 7px; font-family: var(--sans); font-size: .9rem; font-weight: 700; cursor: pointer; transition: opacity .15s; }
.cap-btn:hover { opacity: .88; }
.cap-btn:disabled { opacity: .5; cursor: default; }
.cap-note { font-size: .69rem; color: rgba(255,255,255,.28); }
.cap-success { display: none; text-align: center; padding: 1rem 0; }
.cap-success.show { display: block; }
.cap-success-icon { font-size: 2.2rem; margin-bottom: .5rem; }
.cap-success h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--white); margin-bottom: .3rem; }
.cap-success p { font-size: .85rem; color: rgba(255,255,255,.5); }

/* ── FAQ ── */
.faq-section { background: var(--white); border-top: 1px solid var(--border); padding: 4rem 1.5rem; }
.faq-inner { max-width: var(--max); margin: 0 auto; }
.faq-inner h2 { font-family: var(--serif); font-size: 1.75rem; color: var(--dark); letter-spacing: -.02em; margin-bottom: .4rem; }
.faq-inner > p { font-size: .9rem; color: var(--muted); margin-bottom: 1.75rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.5rem; }
@media (max-width: 720px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item { border-top: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: .75rem; padding: .9rem 0; text-align: left; font-family: var(--sans); font-size: .9rem; font-weight: 700; color: var(--ink); line-height: 1.4; transition: color .15s; }
.faq-q:hover { color: var(--accent); }
.faq-q i { font-size: .62rem; color: var(--muted); flex-shrink: 0; margin-top: .28rem; transition: transform .2s; }
.faq-q.open i { transform: rotate(180deg); color: var(--accent); }
.faq-a { display: none; padding: 0 0 .9rem; font-size: .88rem; color: var(--muted); line-height: 1.78; }
.faq-a.show { display: block; }

/* ── Footer ── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.42); padding: 3rem 0 0; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
.footer-brand p { font-size: .82rem; color: rgba(255,255,255,.3); line-height: 1.7; margin-top: .55rem; max-width: 280px; }
.footer-brand address { font-style: normal; font-size: .76rem; color: rgba(255,255,255,.2); margin-top: .45rem; line-height: 1.65; }
.footer-brand address a { color: rgba(255,255,255,.2); }
.footer-col h3 { font-size: .63rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.22); margin-bottom: .65rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .35rem; }
.footer-col a { font-size: .82rem; color: rgba(255,255,255,.38); }
.footer-col a:hover { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-base { border-top: 1px solid rgba(255,255,255,.07); max-width: var(--max); margin: 0 auto; padding: .95rem 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .35rem; font-size: .7rem; color: rgba(255,255,255,.15); }
.footer-notice { background: rgba(0,0,0,.2); padding: .75rem 0; font-size: .68rem; color: rgba(255,255,255,.15); }
.footer-notice div { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
