:root {
  --bg: #0A0908;
  --bg-2: #110F0D;
  --ink: #E8DFCE;
  --ink-2: #F4ECDA;
  --gold: #F0C800;
  --rim: rgba(240, 200, 0, 0.85);
  --gold-soft: rgba(240, 200, 0, 0.18);
  --dim: rgba(232, 223, 206, 0.55);
  --dimmer: rgba(232, 223, 206, 0.32);
  --rule: rgba(232, 223, 206, 0.13);
  --rule-strong: rgba(232, 223, 206, 0.36);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.skip-link {
  position: absolute; top: -40px; left: 8px;
  background: var(--gold); color: var(--bg);
  padding: 8px 12px; z-index: 999;
  font-family: 'Geist Mono', monospace; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
}
.skip-link:focus { top: 8px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 200; mix-blend-mode: overlay; opacity: 0.45;
}
body::after {
  content: ''; position: fixed; inset: 0;
  background: radial-gradient(circle at center, transparent 25%, rgba(0,0,0,0.45) 100%);
  pointer-events: none; z-index: 199; animation: vignette 8s ease-in-out infinite;
}
@keyframes vignette { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 1px;
  background: var(--gold); z-index: 300; width: 0%;
  transition: width .1s linear; box-shadow: 0 0 12px rgba(240,200,0,0.6);
}

.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

nav {
  padding: 24px 0; position: sticky; top: 0;
  background: linear-gradient(to bottom, var(--bg) 60%, rgba(10,9,8,0.5) 90%, transparent);
  backdrop-filter: blur(2px); z-index: 50;
}
nav .row { display: flex; justify-content: space-between; align-items: baseline; }
nav .brand {
  font-family: 'Newsreader', serif; font-style: italic; font-weight: 400;
  font-size: 22px; letter-spacing: -0.012em;
  color: var(--ink-2); text-decoration: none;
  position: relative; padding-left: 14px; display: inline-block; line-height: 1;
  transition: color .6s ease;
}
nav .brand::before {
  content: ''; position: absolute; left: 0; top: 2px; bottom: 2px;
  width: 1px; background: var(--gold); box-shadow: 0 0 8px rgba(240,200,0,0.5);
}
nav .brand:hover { color: var(--gold); }
nav .lang {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
}
nav .lang a {
  color: var(--ink); padding: 0 6px; text-decoration: none;
  opacity: 0.4; transition: opacity .6s ease, color .6s ease;
}
nav .lang a.active { opacity: 1; color: var(--gold); }
nav .lang a:hover { opacity: 1; }

main { padding-bottom: 60px; }

.article-header {
  max-width: 880px;
  margin: 0 auto;
  padding: 140px 32px 80px;
}
.article-header .meta {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  display: flex; align-items: center; gap: 14px;
}
.article-header .meta::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.article-header h1 {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  color: var(--ink-2);
}
.article-header .subtitle {
  font-family: 'Newsreader', serif;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.45;
  color: var(--dim);
  font-style: italic;
  max-width: 64ch;
}
.article-header .byline {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex; gap: 32px; align-items: baseline;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
}
.article-header .byline strong { color: var(--ink); font-weight: 400; }

.article-hero {
  max-width: 880px;
  margin: 0 auto 60px;
  padding: 0 32px;
}
.article-hero picture { display: block; }
.article-hero img {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
  border: 1px solid var(--rule);
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 32px 120px;
  font-family: 'Newsreader', serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink);
}
.article-body p { margin-bottom: 28px; }
.article-body p:first-of-type::first-letter {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 5em;
  line-height: 0.85;
  float: left;
  margin: 6px 16px 0 -2px;
  color: var(--gold);
}
.article-body em { color: var(--gold); font-style: italic; }
.article-body h2 {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  margin: 80px 0 28px;
  letter-spacing: -0.018em;
  color: var(--ink-2);
  line-height: 1.15;
}
.article-body h3 {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  margin: 56px 0 20px;
  color: var(--ink-2);
  line-height: 1.2;
}
.article-body hr {
  border: none;
  height: 1px;
  background: var(--rule-strong);
  margin: 64px 0;
  position: relative;
}
.article-body hr::after {
  content: '·';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  background: var(--bg);
  padding: 0 14px;
  font-size: 24px;
  font-style: normal;
}
.article-body .pull-quote {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.012em;
  margin: 64px -40px;
  padding: 40px 56px;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  color: var(--ink-2);
  position: relative;
}
.article-body .pull-quote::before {
  content: '"';
  position: absolute;
  top: -20px; left: 32px;
  font-size: 96px;
  line-height: 1;
  color: var(--gold);
}
.article-body .compliance-note {
  margin-top: 80px;
  padding: 32px 40px;
  border: 1px dashed rgba(240,200,0,0.4);
  background: rgba(240,200,0,0.02);
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--dim);
}

.article-footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 32px 120px;
  border-top: 1px solid var(--rule);
}
.article-footer .back {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: gap .4s ease;
}
.article-footer .back:hover { gap: 18px; }
.article-footer .next-block {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.article-footer .next-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 20px;
  display: block;
}
.article-footer .next-title {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink-2);
  text-decoration: none;
  display: block;
  transition: color .6s ease;
}
.article-footer .next-title:hover { color: var(--gold); }

footer.site-footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--rule);
}
footer.site-footer .row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 32px;
}
footer.site-footer .copy {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--dim);
}
footer.site-footer .center {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--dim);
}
footer.site-footer .socials { display: flex; gap: 28px; }
footer.site-footer .socials a {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity .6s ease, color .6s ease;
}
footer.site-footer .socials a:hover { opacity: 1; color: var(--gold); }
footer.site-footer .legal {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: center; gap: 32px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
footer.site-footer .legal a {
  color: var(--dim); text-decoration: none; transition: color .6s ease;
}
footer.site-footer .legal a:hover { color: var(--gold); }

@media (max-width: 700px) {
  .container { padding: 0 24px; }
  nav { padding: 16px 0; }
  .article-header { padding: 100px 24px 48px; }
  .article-header h1 { font-size: 36px; }
  .article-header .byline { flex-direction: column; gap: 8px; align-items: flex-start; }
  .article-hero { padding: 0 20px; margin-bottom: 40px; }
  .article-body { font-size: 17px; padding: 40px 20px 80px; line-height: 1.7; }
  .article-body h2 { font-size: 26px; margin-top: 56px; }
  .article-body h3 { font-size: 20px; margin-top: 40px; }
  .article-body .pull-quote { margin: 40px -8px; padding: 24px 24px; font-size: 22px; }
  .article-footer { padding: 40px 20px 80px; }
  .article-footer .next-title { font-size: 28px; }
  footer.site-footer .row { flex-direction: column; gap: 16px; align-items: flex-start; }
  footer.site-footer .legal { flex-wrap: wrap; gap: 16px; justify-content: flex-start; }
}
