:root {
  color-scheme: light dark;
  --bg: #fff;
  --surface: #f2f2f0;
  --text: #1a1a1a;
  --muted: #66645f;
  --line: #d9d8d4;
  --inverse-bg: #1a1a1a;
  --inverse-text: #fff;
  --veil: rgba(255,255,255,.52);
  --featured-veil: rgba(255,255,255,.52);
  --bar-bg: #1a1a1a;
  --bar-text: #fff;
  --bar-muted: rgba(255,255,255,.72);
  --bar-line: #1a1a1a;
  --bar-control-bg: #fff;
  --bar-control-text: #1a1a1a;
  --max: 1600px;
  --reading: 720px;
  --wide: 1180px;
  --radius: 2px;
  --grid-gap: clamp(.65rem, 1vw, 1rem);
  --shadow: 0 24px 70px rgba(0,0,0,.08);
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: ui-serif, Georgia, Cambria, "Times New Roman", serif;
}

html[data-theme="dark"] {
  --bg: #1a1a1a;
  --surface: #242424;
  --text: #fff;
  --muted: #b3b1ab;
  --line: #3c3b39;
  --inverse-bg: #fff;
  --inverse-text: #1a1a1a;
  --veil: rgba(26,26,26,.54);
  --featured-veil: rgba(26,26,26,.60);
  --bar-bg: #1a1a1a;
  --bar-text: #fff;
  --bar-muted: rgba(255,255,255,.72);
  --bar-line: #1a1a1a;
  --bar-control-bg: #fff;
  --bar-control-text: #1a1a1a;
  --shadow: 0 24px 70px rgba(0,0,0,.25);
}
@media (prefers-color-scheme: dark) {
  html[data-theme="auto"] {
    --bg: #1a1a1a; --surface: #242424; --text: #fff; --muted: #b3b1ab;
    --line: #3c3b39; --inverse-bg: #fff; --inverse-text: #1a1a1a;
    --veil: rgba(26,26,26,.54); --featured-veil: rgba(26,26,26,.60); --bar-bg: #1a1a1a; --bar-text: #fff;
    --bar-muted: rgba(255,255,255,.72); --bar-line: #1a1a1a; --bar-control-bg: #fff;
    --bar-control-text: #1a1a1a; --shadow: 0 24px 70px rgba(0,0,0,.25);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); max-width: 100%; overflow-x: clip; }
body { margin: 0; max-width: 100%; overflow-x: clip; background: var(--bg); color: var(--text); font-family: var(--sans); line-height: 1.5; text-rendering: optimizeLegibility; }
h1, h2, h3, h4 { text-wrap: balance; overflow-wrap: normal; word-break: normal; hyphens: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .2em; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
::selection { background: var(--text); color: var(--bg); }
.skip-link { position: fixed; z-index: 999; left: 1rem; top: 1rem; padding: .75rem 1rem; background: var(--inverse-bg); color: var(--inverse-text); transform: translateY(-200%); }
.skip-link:focus { transform: none; }

.site-header { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; height: 74px; padding: 0 clamp(1rem,3vw,3rem); border-bottom: 1px solid var(--bar-line); background: var(--bar-bg); color: var(--bar-text); box-shadow: 0 1px 0 color-mix(in srgb,var(--bar-line) 70%,transparent); }
.brand { text-decoration: none; font-weight: 900; font-size: 1.02rem; letter-spacing: .16em; }
.brand-lockup { display: inline-flex; align-items: center; gap: .6rem; min-width: 0; color: inherit; line-height: 1; overflow: visible; }
.brand-lockup__text { min-width: 0; }
.brand-mark { display: block; flex: 0 0 auto; width: 1em; height: auto; aspect-ratio: 135.4286 / 145.22414; overflow: visible; }
.brand-lockup--header { gap: .55rem; }
.brand-mark--header { width: 1.08rem; color: #fff; }
.brand-mark--hero, .brand-mark--footer { color: var(--text); }
.brand-mark path { fill: currentColor; }
.main-nav { display: flex; align-items: center; gap: clamp(.65rem,2vw,1.7rem); font-size: .88rem; }
.main-nav a { text-decoration: none; }
.main-nav a:hover, .main-nav a:focus-visible { text-decoration: underline; }
.language-switcher { display: inline-flex; align-items: center; gap: .15rem; padding: .18rem; border: 0; border-radius: 999px; background: var(--bar-control-bg); color: var(--bar-control-text); }
.language-switcher__option { min-width: 2.05rem; padding: .28rem .45rem; border-radius: 999px; text-align: center; text-decoration: none; font-size: .64rem; line-height: 1; font-weight: 850; letter-spacing: .07em; color: color-mix(in srgb,var(--bar-control-text) 68%,transparent); }
.language-switcher__option[href]:hover, .language-switcher__option[href]:focus-visible { color: var(--bar-control-text); text-decoration: none; outline-offset: 2px; }
.language-switcher__option.is-active { background: var(--bar-bg); color: var(--bar-text); }
.language-switcher__option.is-unavailable { opacity: .38; cursor: not-allowed; }
.theme-toggle { width: 44px; height: 30px; border: 0; background: var(--bar-control-bg); color: var(--bar-control-text); display: inline-flex; align-items: center; justify-content: space-around; cursor: pointer; border-radius: 20px; }
.theme-toggle:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid currentColor; outline-offset: 3px; }
.theme-toggle__moon { opacity: .35; }
html[data-theme="dark"] .theme-toggle__sun { opacity: .35; }
html[data-theme="dark"] .theme-toggle__moon { opacity: 1; }

.home-intro { max-width: var(--max); margin: 0 auto; padding: clamp(4rem,9vw,9rem) clamp(1rem,3vw,3rem) clamp(2.5rem,5vw,5rem); border-bottom: 1px solid var(--line); }
.eyebrow, .article-kicker { margin: 0 0 .8rem; text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 800; color: var(--muted); }
.home-intro__identity { display: grid; width: fit-content; max-width: 100%; --hero-mark-width: clamp(3.4rem,9vw,9rem); --hero-lockup-gap: .6rem; }
.home-intro h1 { width: fit-content; margin: 0; max-width: min(100%,12ch); overflow-wrap: normal; font-size: clamp(3.4rem,9vw,9rem); line-height: .85; letter-spacing: -.07em; font-weight: 900; }
.brand-lockup--hero { gap: var(--hero-lockup-gap); }
.brand-lockup--hero .brand-mark--hero { width: var(--hero-mark-width); }
.home-intro__tagline { justify-self: start; display: inline-block; width: fit-content; max-width: min(650px,100%); margin: 1.34rem 0 0; padding: .55em .82em .58em; background: var(--inverse-bg); color: var(--inverse-text); text-align: left; font-size: clamp(1.4rem,2.66vw,1.86rem); font-weight: 800; line-height: 1.08; }

/* Cover focal-position classes: discrete values keep style-src-attr disabled. */
.cover-focus-x-0{--cover-focus-x:0%}
.cover-focus-x-1{--cover-focus-x:1%}
.cover-focus-x-2{--cover-focus-x:2%}
.cover-focus-x-3{--cover-focus-x:3%}
.cover-focus-x-4{--cover-focus-x:4%}
.cover-focus-x-5{--cover-focus-x:5%}
.cover-focus-x-6{--cover-focus-x:6%}
.cover-focus-x-7{--cover-focus-x:7%}
.cover-focus-x-8{--cover-focus-x:8%}
.cover-focus-x-9{--cover-focus-x:9%}
.cover-focus-x-10{--cover-focus-x:10%}
.cover-focus-x-11{--cover-focus-x:11%}
.cover-focus-x-12{--cover-focus-x:12%}
.cover-focus-x-13{--cover-focus-x:13%}
.cover-focus-x-14{--cover-focus-x:14%}
.cover-focus-x-15{--cover-focus-x:15%}
.cover-focus-x-16{--cover-focus-x:16%}
.cover-focus-x-17{--cover-focus-x:17%}
.cover-focus-x-18{--cover-focus-x:18%}
.cover-focus-x-19{--cover-focus-x:19%}
.cover-focus-x-20{--cover-focus-x:20%}
.cover-focus-x-21{--cover-focus-x:21%}
.cover-focus-x-22{--cover-focus-x:22%}
.cover-focus-x-23{--cover-focus-x:23%}
.cover-focus-x-24{--cover-focus-x:24%}
.cover-focus-x-25{--cover-focus-x:25%}
.cover-focus-x-26{--cover-focus-x:26%}
.cover-focus-x-27{--cover-focus-x:27%}
.cover-focus-x-28{--cover-focus-x:28%}
.cover-focus-x-29{--cover-focus-x:29%}
.cover-focus-x-30{--cover-focus-x:30%}
.cover-focus-x-31{--cover-focus-x:31%}
.cover-focus-x-32{--cover-focus-x:32%}
.cover-focus-x-33{--cover-focus-x:33%}
.cover-focus-x-34{--cover-focus-x:34%}
.cover-focus-x-35{--cover-focus-x:35%}
.cover-focus-x-36{--cover-focus-x:36%}
.cover-focus-x-37{--cover-focus-x:37%}
.cover-focus-x-38{--cover-focus-x:38%}
.cover-focus-x-39{--cover-focus-x:39%}
.cover-focus-x-40{--cover-focus-x:40%}
.cover-focus-x-41{--cover-focus-x:41%}
.cover-focus-x-42{--cover-focus-x:42%}
.cover-focus-x-43{--cover-focus-x:43%}
.cover-focus-x-44{--cover-focus-x:44%}
.cover-focus-x-45{--cover-focus-x:45%}
.cover-focus-x-46{--cover-focus-x:46%}
.cover-focus-x-47{--cover-focus-x:47%}
.cover-focus-x-48{--cover-focus-x:48%}
.cover-focus-x-49{--cover-focus-x:49%}
.cover-focus-x-50{--cover-focus-x:50%}
.cover-focus-x-51{--cover-focus-x:51%}
.cover-focus-x-52{--cover-focus-x:52%}
.cover-focus-x-53{--cover-focus-x:53%}
.cover-focus-x-54{--cover-focus-x:54%}
.cover-focus-x-55{--cover-focus-x:55%}
.cover-focus-x-56{--cover-focus-x:56%}
.cover-focus-x-57{--cover-focus-x:57%}
.cover-focus-x-58{--cover-focus-x:58%}
.cover-focus-x-59{--cover-focus-x:59%}
.cover-focus-x-60{--cover-focus-x:60%}
.cover-focus-x-61{--cover-focus-x:61%}
.cover-focus-x-62{--cover-focus-x:62%}
.cover-focus-x-63{--cover-focus-x:63%}
.cover-focus-x-64{--cover-focus-x:64%}
.cover-focus-x-65{--cover-focus-x:65%}
.cover-focus-x-66{--cover-focus-x:66%}
.cover-focus-x-67{--cover-focus-x:67%}
.cover-focus-x-68{--cover-focus-x:68%}
.cover-focus-x-69{--cover-focus-x:69%}
.cover-focus-x-70{--cover-focus-x:70%}
.cover-focus-x-71{--cover-focus-x:71%}
.cover-focus-x-72{--cover-focus-x:72%}
.cover-focus-x-73{--cover-focus-x:73%}
.cover-focus-x-74{--cover-focus-x:74%}
.cover-focus-x-75{--cover-focus-x:75%}
.cover-focus-x-76{--cover-focus-x:76%}
.cover-focus-x-77{--cover-focus-x:77%}
.cover-focus-x-78{--cover-focus-x:78%}
.cover-focus-x-79{--cover-focus-x:79%}
.cover-focus-x-80{--cover-focus-x:80%}
.cover-focus-x-81{--cover-focus-x:81%}
.cover-focus-x-82{--cover-focus-x:82%}
.cover-focus-x-83{--cover-focus-x:83%}
.cover-focus-x-84{--cover-focus-x:84%}
.cover-focus-x-85{--cover-focus-x:85%}
.cover-focus-x-86{--cover-focus-x:86%}
.cover-focus-x-87{--cover-focus-x:87%}
.cover-focus-x-88{--cover-focus-x:88%}
.cover-focus-x-89{--cover-focus-x:89%}
.cover-focus-x-90{--cover-focus-x:90%}
.cover-focus-x-91{--cover-focus-x:91%}
.cover-focus-x-92{--cover-focus-x:92%}
.cover-focus-x-93{--cover-focus-x:93%}
.cover-focus-x-94{--cover-focus-x:94%}
.cover-focus-x-95{--cover-focus-x:95%}
.cover-focus-x-96{--cover-focus-x:96%}
.cover-focus-x-97{--cover-focus-x:97%}
.cover-focus-x-98{--cover-focus-x:98%}
.cover-focus-x-99{--cover-focus-x:99%}
.cover-focus-x-100{--cover-focus-x:100%}
.cover-focus-y-0{--cover-focus-y:0%}
.cover-focus-y-1{--cover-focus-y:1%}
.cover-focus-y-2{--cover-focus-y:2%}
.cover-focus-y-3{--cover-focus-y:3%}
.cover-focus-y-4{--cover-focus-y:4%}
.cover-focus-y-5{--cover-focus-y:5%}
.cover-focus-y-6{--cover-focus-y:6%}
.cover-focus-y-7{--cover-focus-y:7%}
.cover-focus-y-8{--cover-focus-y:8%}
.cover-focus-y-9{--cover-focus-y:9%}
.cover-focus-y-10{--cover-focus-y:10%}
.cover-focus-y-11{--cover-focus-y:11%}
.cover-focus-y-12{--cover-focus-y:12%}
.cover-focus-y-13{--cover-focus-y:13%}
.cover-focus-y-14{--cover-focus-y:14%}
.cover-focus-y-15{--cover-focus-y:15%}
.cover-focus-y-16{--cover-focus-y:16%}
.cover-focus-y-17{--cover-focus-y:17%}
.cover-focus-y-18{--cover-focus-y:18%}
.cover-focus-y-19{--cover-focus-y:19%}
.cover-focus-y-20{--cover-focus-y:20%}
.cover-focus-y-21{--cover-focus-y:21%}
.cover-focus-y-22{--cover-focus-y:22%}
.cover-focus-y-23{--cover-focus-y:23%}
.cover-focus-y-24{--cover-focus-y:24%}
.cover-focus-y-25{--cover-focus-y:25%}
.cover-focus-y-26{--cover-focus-y:26%}
.cover-focus-y-27{--cover-focus-y:27%}
.cover-focus-y-28{--cover-focus-y:28%}
.cover-focus-y-29{--cover-focus-y:29%}
.cover-focus-y-30{--cover-focus-y:30%}
.cover-focus-y-31{--cover-focus-y:31%}
.cover-focus-y-32{--cover-focus-y:32%}
.cover-focus-y-33{--cover-focus-y:33%}
.cover-focus-y-34{--cover-focus-y:34%}
.cover-focus-y-35{--cover-focus-y:35%}
.cover-focus-y-36{--cover-focus-y:36%}
.cover-focus-y-37{--cover-focus-y:37%}
.cover-focus-y-38{--cover-focus-y:38%}
.cover-focus-y-39{--cover-focus-y:39%}
.cover-focus-y-40{--cover-focus-y:40%}
.cover-focus-y-41{--cover-focus-y:41%}
.cover-focus-y-42{--cover-focus-y:42%}
.cover-focus-y-43{--cover-focus-y:43%}
.cover-focus-y-44{--cover-focus-y:44%}
.cover-focus-y-45{--cover-focus-y:45%}
.cover-focus-y-46{--cover-focus-y:46%}
.cover-focus-y-47{--cover-focus-y:47%}
.cover-focus-y-48{--cover-focus-y:48%}
.cover-focus-y-49{--cover-focus-y:49%}
.cover-focus-y-50{--cover-focus-y:50%}
.cover-focus-y-51{--cover-focus-y:51%}
.cover-focus-y-52{--cover-focus-y:52%}
.cover-focus-y-53{--cover-focus-y:53%}
.cover-focus-y-54{--cover-focus-y:54%}
.cover-focus-y-55{--cover-focus-y:55%}
.cover-focus-y-56{--cover-focus-y:56%}
.cover-focus-y-57{--cover-focus-y:57%}
.cover-focus-y-58{--cover-focus-y:58%}
.cover-focus-y-59{--cover-focus-y:59%}
.cover-focus-y-60{--cover-focus-y:60%}
.cover-focus-y-61{--cover-focus-y:61%}
.cover-focus-y-62{--cover-focus-y:62%}
.cover-focus-y-63{--cover-focus-y:63%}
.cover-focus-y-64{--cover-focus-y:64%}
.cover-focus-y-65{--cover-focus-y:65%}
.cover-focus-y-66{--cover-focus-y:66%}
.cover-focus-y-67{--cover-focus-y:67%}
.cover-focus-y-68{--cover-focus-y:68%}
.cover-focus-y-69{--cover-focus-y:69%}
.cover-focus-y-70{--cover-focus-y:70%}
.cover-focus-y-71{--cover-focus-y:71%}
.cover-focus-y-72{--cover-focus-y:72%}
.cover-focus-y-73{--cover-focus-y:73%}
.cover-focus-y-74{--cover-focus-y:74%}
.cover-focus-y-75{--cover-focus-y:75%}
.cover-focus-y-76{--cover-focus-y:76%}
.cover-focus-y-77{--cover-focus-y:77%}
.cover-focus-y-78{--cover-focus-y:78%}
.cover-focus-y-79{--cover-focus-y:79%}
.cover-focus-y-80{--cover-focus-y:80%}
.cover-focus-y-81{--cover-focus-y:81%}
.cover-focus-y-82{--cover-focus-y:82%}
.cover-focus-y-83{--cover-focus-y:83%}
.cover-focus-y-84{--cover-focus-y:84%}
.cover-focus-y-85{--cover-focus-y:85%}
.cover-focus-y-86{--cover-focus-y:86%}
.cover-focus-y-87{--cover-focus-y:87%}
.cover-focus-y-88{--cover-focus-y:88%}
.cover-focus-y-89{--cover-focus-y:89%}
.cover-focus-y-90{--cover-focus-y:90%}
.cover-focus-y-91{--cover-focus-y:91%}
.cover-focus-y-92{--cover-focus-y:92%}
.cover-focus-y-93{--cover-focus-y:93%}
.cover-focus-y-94{--cover-focus-y:94%}
.cover-focus-y-95{--cover-focus-y:95%}
.cover-focus-y-96{--cover-focus-y:96%}
.cover-focus-y-97{--cover-focus-y:97%}
.cover-focus-y-98{--cover-focus-y:98%}
.cover-focus-y-99{--cover-focus-y:99%}
.cover-focus-y-100{--cover-focus-y:100%}

/* Featured story: one deliberate lead item before the chronological grid. */
.featured-story { max-width: var(--max); margin: var(--grid-gap) auto var(--grid-gap); padding: 0; }
.featured-card { position: relative; min-height: clamp(360px,34vw,520px); overflow: hidden; background: var(--surface); }
.featured-card__link { position: absolute; inset: 0; isolation: isolate; display: block; color: var(--text); text-decoration: none; overflow: hidden; }
.featured-card__image, .featured-card__fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--cover-focus-x,50%) var(--cover-focus-y,50%); transition: transform .8s cubic-bezier(.2,.7,.2,1), opacity .35s ease; }
.featured-card__fallback { background: linear-gradient(120deg,#d8d7d2,#8e8b84); }
.featured-card__veil { position: absolute; inset: 0; z-index: 1; background: var(--featured-veil); }
.featured-card__content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: space-between; width: 100%; min-height: 100%; padding: clamp(1.35rem,3vw,3rem); }
.featured-card__meta, .featured-card__copy { position: relative; }
.featured-card__meta { display: flex; justify-content: space-between; gap: 1rem; text-transform: uppercase; letter-spacing: .12em; font-size: .66rem; font-weight: 800; }
.featured-card__copy { width: 100%; }
.featured-card__copy h2 { max-width: 100%; margin: 0; color: var(--text); font-size: clamp(2.45rem,5.25vw,5.8rem); line-height: .9; letter-spacing: -.055em; overflow-wrap: normal; word-break: normal; hyphens: manual; }
.featured-card__copy p { max-width: 100%; max-height: 4.2em; margin: 1rem 0 0; overflow: hidden; font-size: clamp(1rem,1.6vw,1.35rem); -webkit-mask-image: linear-gradient(to bottom,#000 0%,#000 45%,rgba(0,0,0,.72) 68%,transparent 100%); mask-image: linear-gradient(to bottom,#000 0%,#000 45%,rgba(0,0,0,.72) 68%,transparent 100%); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; }
.featured-card__copy h2, .featured-card__copy p, .featured-card__action { color: var(--text); }
.featured-card__action { display: inline-block; margin-top: 1.5rem; font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
@media (hover:hover) and (pointer:fine) {
  .featured-card__link:hover .featured-card__image { transform: scale(1.025); }
  .featured-card__link:hover .featured-card__action { text-decoration: underline; text-underline-offset: .25em; }
}
.featured-card__link:focus-visible { outline: 3px solid var(--text); outline-offset: -6px; }

/* Commercial-content disclosure stays visible without overpowering the editorial card. */
.advertisement-badge {
  position: absolute;
  z-index: 5;
  --advertisement-edge-gap: clamp(.8rem,1.6vw,1.5rem);
  --advertisement-bottom-gap: clamp(1.2rem,2.4vw,2.25rem);
  right: var(--advertisement-edge-gap);
  bottom: var(--advertisement-bottom-gap);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: min(48%, 17rem);
  padding: .48rem .62rem .5rem;
  border: 0;
  background: #1a1a1a;
  color: #fff;
  text-align: right;
  line-height: 1.15;
  backdrop-filter: none;
  box-shadow: none;
}
.advertisement-badge__label { color: #fff; font-size: .6rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.advertisement-badge__party { margin-top: .18rem; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .62rem; color: #fff; }
.article-card:has(.advertisement-badge) .article-card__copy { padding-right: min(35%, 9rem); }
.featured-card:has(.advertisement-badge) .featured-card__copy { padding-right: min(20%, 8rem); }

.article-card { position: relative; }
/* Authenticated homepage focal-point editor. The canvas is created only for an
   image the current Wagtail user is allowed to edit; anonymous markup is unchanged. */
.cover-reframe__toggle {
  position: absolute;
  z-index: 9;
  top: .7rem;
  right: .7rem;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  padding: .48rem .7rem;
  background: rgba(26,26,26,.88);
  color: #fff;
  font: 800 .66rem/1 var(--sans);
  letter-spacing: .05em;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,.22);
}
.cover-reframe__toggle:hover, .cover-reframe__toggle:focus-visible { background: #000; }
.cover-reframe__toggle[aria-pressed="true"] { background: #fff; color: #1a1a1a; border-color: #1a1a1a; }
.cover-reframe__status {
  position: absolute;
  z-index: 9;
  left: .7rem;
  bottom: .7rem;
  display: none;
  max-width: calc(100% - 1.4rem);
  padding: .48rem .62rem;
  background: rgba(26,26,26,.9);
  color: #fff;
  font: 700 .68rem/1.25 var(--sans);
  pointer-events: none;
}
.is-cover-reframing .cover-reframe__status { display: block; }
.cover-reframe__canvas {
  position: absolute;
  z-index: 8;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
  user-select: none;
}
.cover-reframe__canvas.is-dragging { cursor: grabbing; }
.is-cover-reframing .article-card__link,
.is-cover-reframing .featured-card__link { pointer-events: none; }
.is-cover-reframing .advertisement-badge,
.is-cover-reframing .cover-ai-signature { visibility: hidden; }


.article-grid { max-width: var(--max); margin: 0 auto var(--grid-gap); display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: var(--grid-gap); }
.article-card { min-width: 0; aspect-ratio: 4/3; overflow: hidden; background: var(--surface); }
.article-card__link { position: relative; isolation: isolate; display: block; width: 100%; height: 100%; overflow: hidden; text-decoration: none; color: var(--text); }
.article-card__image, .article-card__fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--cover-focus-x,50%) var(--cover-focus-y,50%); transform: scale(1.001); transition: opacity .45s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.article-card__fallback { background: linear-gradient(135deg,#deddd8,#a6a39b); }
.article-card__veil { position: absolute; inset: 0; z-index: 1; background: var(--veil); transition: background .35s ease; }
.article-card__front { position: relative; z-index: 2; height: 100%; padding: clamp(1.15rem,2.3vw,2.15rem); display: flex; flex-direction: column; justify-content: space-between; transition: opacity .28s ease, transform .4s ease; }
.article-card__meta { display: flex; justify-content: space-between; gap: 1rem; text-transform: uppercase; font-size: .65rem; letter-spacing: .12em; font-weight: 700; }
.article-card h2 { margin: 0; max-width: 100%; font-size: clamp(1.45rem,2.25vw,2.75rem); line-height: .98; letter-spacing: -.045em; overflow-wrap: normal; word-break: normal; hyphens: manual; }
.article-card__front p { margin: .8rem 0 0; max-width: 36ch; max-height: 5.15em; padding-bottom: .2rem; overflow: hidden; font-size: clamp(.84rem,1.2vw,1.05rem); -webkit-mask-image: linear-gradient(to bottom,#000 0%,#000 46%,rgba(0,0,0,.72) 68%,rgba(0,0,0,.28) 86%,transparent 100%); mask-image: linear-gradient(to bottom,#000 0%,#000 46%,rgba(0,0,0,.72) 68%,rgba(0,0,0,.28) 86%,transparent 100%); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; }
.preview-subtitle { font-weight: 600; }
.preview-excerpt-continuation { font-weight: 400; }
.article-card__preview { position: absolute; z-index: 3; inset: 0; padding: clamp(1.25rem,2.3vw,2.2rem); opacity: 0; transform: translateY(14px); transition: opacity .3s ease, transform .4s ease; overflow: hidden; scrollbar-width: none; background: color-mix(in srgb,var(--bg) 90%,transparent); display: flex; flex-direction: column; }
.article-card__preview-label { margin: 0 0 1.5rem; text-transform: uppercase; letter-spacing: .14em; font-size: .67rem; font-weight: 800; }
.article-card__preview-copy { margin: 0; max-width: 32ch; max-height: min(11rem, calc(100% - 5.9rem)); overflow: hidden; font-family: var(--serif); font-size: clamp(1.05rem,1.45vw,1.45rem); line-height: 1.42; -webkit-mask-image: linear-gradient(to bottom,#000 0%,#000 42%,rgba(0,0,0,.72) 64%,rgba(0,0,0,.24) 84%,transparent 100%); mask-image: linear-gradient(to bottom,#000 0%,#000 42%,rgba(0,0,0,.72) 64%,rgba(0,0,0,.24) 84%,transparent 100%); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; }
.article-card__read { display: inline-block; margin-top: 1.5rem; font-family: var(--sans); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

/* `.is-previewing` exists for deterministic visual QA; production interaction uses hover/focus. */
.article-card.is-previewing .article-card__image { opacity: .08; transform: scale(1.04); }
.article-card.is-previewing .article-card__front { opacity: 0; transform: translateY(-8px); }
.article-card.is-previewing .article-card__preview { opacity: 1; transform: none; }

@media (hover:hover) and (pointer:fine) {
  .article-card__link:hover .article-card__image { opacity: .08; transform: scale(1.04); }
  .article-card__link:hover .article-card__front { opacity: 0; transform: translateY(-8px); }
  .article-card__link:hover .article-card__preview { opacity: 1; transform: none; }
}
@media (min-width: 651px) {
  .article-card__link:focus-visible .article-card__image { opacity: .08; transform: scale(1.04); }
  .article-card__link:focus-visible .article-card__front { opacity: 0; transform: translateY(-8px); }
  .article-card__link:focus-visible .article-card__preview { opacity: 1; transform: none; }
}

.article-shell { padding-bottom: 7rem; }
.article-header { max-width: 980px; margin: 0 auto; padding: clamp(3.5rem,9vw,8.5rem) clamp(1rem,4vw,3rem) clamp(2.5rem,5vw,5rem); }
.back-link { display: inline-block; margin-bottom: clamp(3rem,6vw,6rem); color: var(--muted); font-size: .82rem; }
.article-header h1 { max-width: min(100%, 16ch); margin: 0; font-size: clamp(2.75rem,6.3vw,6rem); line-height: .92; letter-spacing: -.058em; overflow-wrap: break-word; }
.advertisement-disclosure,
.ai-transparency-disclosure {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  max-width: 760px;
  margin: -2rem 0 clamp(2rem,4vw,3.5rem);
  padding: .7rem 0;
  border-top: 1px solid var(--text);
  border-bottom: 1px solid var(--line);
  font-size: .78rem;
}
.advertisement-disclosure__label,
.ai-transparency-disclosure__label { flex: 0 0 auto; font-weight: 900; text-transform: uppercase; letter-spacing: .11em; }
.advertisement-disclosure__text,
.ai-transparency-disclosure__text { color: var(--muted); }
.advertisement-disclosure__text strong { color: var(--text); font-weight: 750; }
.advertisement-disclosure__text a { color: inherit; text-decoration-thickness: .06em; text-underline-offset: .16em; }
.article-deck { max-width: 760px; margin: 1.5rem 0 0; font-family: var(--serif); color: var(--muted); font-size: clamp(1.25rem,2.4vw,2rem); line-height: 1.35; }
.article-meta { display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; margin-top: 2.2rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.hero-figure { max-width: var(--wide); margin: 0 auto clamp(4rem,8vw,8rem); padding: 0 clamp(1rem,3vw,2rem); }
.hero-figure img { width: 100%; height: auto; max-height: none; object-fit: contain; box-shadow: var(--shadow); }
.article-body { max-width: var(--reading); margin: 0 auto; padding: 0 1.25rem; flow-root; }
.prose-block, .lead-block { font-family: var(--serif); font-size: clamp(1.12rem,1.3vw,1.27rem); line-height: 1.72; }
.prose-block + .prose-block { margin-top: 1.6rem; }
.prose-block p, .lead-block p { margin: 0 0 1.45em; }
.prose-block a { text-decoration-thickness: .06em; }
.lead-block { margin: 0 0 3.2rem; font-size: clamp(1.3rem,1.8vw,1.65rem); line-height: 1.55; }
.section-heading { clear: both; margin: 4.8rem 0 1.4rem; font-size: clamp(1.9rem,3.5vw,3.05rem); line-height: 1.04; letter-spacing: -.04em; }
.subsection-heading { clear: both; margin: 3.2rem 0 1.1rem; font-size: clamp(1.5rem,2.4vw,2rem); letter-spacing: -.03em; }
.quote-block { clear: both; margin: 4rem -7vw; padding: 2.3rem 0 2rem; border-top: 1px solid var(--text); border-bottom: 1px solid var(--text); }
.quote-block blockquote { margin: 0; font-family: var(--serif); font-size: clamp(1.65rem,3.45vw,3.15rem); line-height: 1.14; }
.quote-block figcaption { margin-top: 1.4rem; color: var(--muted); font-size: .82rem; }
.code-block { clear: both; margin: 3rem 0; background: #111; color: #f4f4f1; border-radius: var(--radius); overflow: hidden; }
.code-block figcaption { padding: .8rem 1rem; border-bottom: 1px solid #383838; color: #bdbdb7; font: 700 .72rem var(--sans); letter-spacing: .06em; }
.code-block pre { margin: 0; padding: 1.35rem; overflow-x: auto; font: .92rem/1.6 ui-monospace,SFMono-Regular,Consolas,monospace; tab-size: 2; }
.content-image { margin-top: 3.3rem; margin-bottom: 3.3rem; }
.content-image--full { clear: both; width: 100%; margin-left: 0; transform: none; }
.content-image img { width: 100%; }
.content-image figcaption, .gallery-block figcaption { margin-top: .6rem; color: var(--muted); font-size: .72rem; }
.content-image figcaption > span { min-width: 0; }
.content-image--float { margin-top: .5rem; }
.content-image--left { float: left; margin-left: min(-7vw,-2rem); margin-right: 2rem; }
.content-image--right { float: right; margin-right: min(-7vw,-2rem); margin-left: 2rem; }
.content-image--small { width: min(30%,220px); }.content-image--medium { width: min(43%,340px); }.content-image--large { width: min(54%,450px); }
/* Transparent PNGs use their alpha channel as a progressive-enhancement float shape. */
.content-image--contour { shape-image-threshold: .08; shape-margin: 1.15rem; }
.content-image--contour img { object-fit: contain; }
.icon-text { clear: both; display: grid; grid-template-columns: 44px 1fr; gap: 1rem; margin: 3rem 0; padding: 1.2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.icon-text__mark { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--text); color: var(--bg); font-weight: 900; }
.icon-text p { margin: .3rem 0; }
.gallery-block { clear: both; width: 100%; margin: 4rem 0; transform: none; display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.gallery-block figure { margin: 0; }
.gallery-block img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.related-card { clear: both; margin: 4rem 0; padding: 1.4rem; background: var(--surface); }
.related-card > p { margin: 0 0 .6rem; text-transform: uppercase; letter-spacing: .12em; font: 800 .66rem var(--sans); color: var(--muted); }
.related-card a { display: flex; flex-direction: column; text-decoration: none; }.related-card strong { font-size: 1.4rem; }.related-card span { margin-top: .35rem; color: var(--muted); }
.article-divider { clear: both; margin: 4rem 0; border: 0; border-top: 1px solid var(--line); }
.article-topics { max-width: var(--reading); margin: 5rem auto 0; padding: 1.5rem 1.25rem 0; border-top: 1px solid var(--line); display: flex; gap: .5rem; flex-wrap: wrap; }
.article-topics span { padding: .35rem .6rem; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .72rem; }

.article-recommendations {
  scroll-margin-top: 96px;
  max-width: var(--max);
  margin: clamp(5rem,10vw,9rem) auto 0;
  padding: 0;
}
.article-recommendations__header {
  max-width: var(--reading);
  margin: 0 auto 1.25rem;
  padding: 1rem 1.25rem 0;
  border-top: 1px solid var(--line);
}
.article-recommendations__header .eyebrow { margin: 0 0 .25rem; }
.article-recommendations__header h2 {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.1;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.article-recommendations__grid.article-grid { margin-bottom: 0; }
@media (max-width: 650px) {
  .article-recommendations { padding: 0; }
  .article-recommendations__header { margin-bottom: 1rem; padding-inline: 1.1rem; }
}

.standard-page, .utility-page, .error-page { max-width: 980px; min-height: 65vh; margin: 0 auto; padding: clamp(4rem,9vw,9rem) clamp(1rem,4vw,3rem); }
.standard-page > header h1, .utility-page > h1, .error-page h1 { margin: 0 0 3rem; font-size: clamp(2.65rem,6.4vw,5.65rem); line-height: .94; letter-spacing: -.055em; overflow-wrap: break-word; }
.search-form { margin: 3rem 0 4rem; }.search-form label { display: block; margin-bottom: .6rem; font-weight: 700; }.search-form > div { display: flex; }.search-form input { flex: 1; min-width: 0; padding: .9rem 1rem; border: 1px solid var(--line); background: var(--bg); color: var(--text); }.search-form button { padding: .9rem 1.3rem; border: 1px solid var(--text); background: var(--text); color: var(--bg); cursor: pointer; }
.result-list { border-top: 1px solid var(--line); }.result-list a { display: block; padding: 1.4rem 0; border-bottom: 1px solid var(--line); text-decoration: none; }.result-list a > span { display: block; color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; }.result-list strong { display: block; margin: .25rem 0; font-size: 1.4rem; }.result-list p { max-width: 70ch; margin: .3rem 0 0; color: var(--muted); }
.archive-list { border-top: 1px solid var(--line); }.archive-list a { display: grid; grid-template-columns: 110px minmax(0,1fr) 140px; gap: 1rem; align-items: baseline; padding: 1rem 0; border-bottom: 1px solid var(--line); text-decoration: none; }.archive-list time,.archive-list span { color: var(--muted); font-size: .78rem; }
.commercial-list-label { display: inline-block; margin-left: .55rem; vertical-align: .12em; color: var(--muted); font-size: .58rem !important; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.ai-preview-label { font: inherit; letter-spacing: inherit; text-transform: inherit; }
.ai-list-label { display: inline-block; margin-left: .55rem; vertical-align: .12em; color: var(--muted); font-size: .58rem !important; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.button-link { display: inline-block; margin-top: 1.2rem; padding: .8rem 1rem; background: var(--text); color: var(--bg); text-decoration: none; }

.site-footer { max-width: var(--max); margin: 0 auto; padding: clamp(3rem,6vw,6rem) clamp(1rem,3vw,3rem); display: grid; grid-template-columns: minmax(0,1.6fr) minmax(220px,.8fr); gap: 3rem; }
.site-footer__brand { display: flex; flex-direction: column; gap: .9rem; }
.site-footer__brand > a { width: fit-content; text-decoration: none; }
.brand-lockup--footer { gap: .7rem; }
.brand-mark--footer { width: 1.3rem; }
.site-footer strong { letter-spacing: .14em; }
.site-footer p { max-width: 42ch; color: var(--muted); }
.site-footer nav { display: grid; grid-template-columns: repeat(2,max-content); gap: .6rem 1.5rem; align-content: start; }
.site-footer nav a { color: var(--muted); text-decoration-color: color-mix(in srgb,var(--muted) 65%,transparent); }
.site-footer nav a:hover, .site-footer nav a:focus-visible { color: var(--text); }

.site-legal-footer { max-width: none; margin: 0; padding: clamp(1.15rem,2vw,1.6rem) clamp(1rem,3vw,3rem); background: var(--bar-bg); color: var(--bar-text); display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; font-size: .72rem; font-weight: 800; letter-spacing: .03em; }
.site-legal-footer p { margin: 0; color: inherit; }
.empty-state { padding: 3rem; }

@media (max-width: 1050px) {
  .article-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .article-card h2 { font-size: clamp(1.7rem,4vw,3rem); }
  .quote-block { margin-left: 0; margin-right: 0; }
  .content-image--left { margin-left: 0; }.content-image--right { margin-right: 0; }
}

@media (max-width: 650px) {
  .site-header { height: 64px; }.main-nav > a:first-child { display: none; }
  .main-nav { gap: .32rem; }
  .language-switcher { gap: .05rem; padding: .15rem; }
  .language-switcher__option.is-active { display: none; }
  .language-switcher__option { min-width: 1.45rem; padding: .28rem .2rem; font-size: .54rem; }
  .brand-lockup--header { gap: .45rem; }
  .brand-mark--header { width: .94rem; }
  .home-intro { padding-top: 4.5rem; }
  .home-intro h1 { font-size: clamp(2.35rem,11.4vw,4.2rem); line-height: .9; max-width: 100%; }
  .home-intro__identity { --hero-mark-width: clamp(2.05rem,7.8vw,3rem); --hero-lockup-gap: clamp(.46rem,2.2vw,.75rem); }
  .brand-lockup--hero { gap: var(--hero-lockup-gap); max-width: 100%; white-space: nowrap; }
  .brand-lockup--hero .brand-lockup__text { overflow-wrap: normal; word-break: normal; }
  .brand-mark--hero { width: var(--hero-mark-width); }
  .featured-story { padding: 0; margin: var(--grid-gap) 0 var(--grid-gap); }
  .featured-card { min-height: clamp(430px,112vw,520px); }
  .featured-card__content { width: 100%; padding: 1.15rem; }
  .featured-card__copy h2 { max-width: 100%; font-size: clamp(2rem,9.2vw,3.25rem); line-height: .94; letter-spacing: -.048em; }
  .featured-card__copy p { font-size: clamp(.98rem,4vw,1.15rem); line-height: 1.35; }
  .featured-card__meta { flex-direction: row; gap: .5rem; }
  .featured-card__meta time { margin-left: auto; text-align: right; flex-shrink: 0; }
  .advertisement-badge { --advertisement-edge-gap: .8rem; --advertisement-bottom-gap: 1.2rem; max-width: 58%; }
  .article-card:has(.advertisement-badge) .article-card__copy { padding-right: 0; padding-bottom: 0; margin-bottom: 3.4rem; }
  .featured-card:has(.advertisement-badge) .featured-card__copy { padding-right: 0; padding-bottom: 3.4rem; }
  .advertisement-disclosure,
  .ai-transparency-disclosure { flex-direction: column; gap: .3rem; margin-top: -1.6rem; }
  .article-grid { grid-template-columns: 1fr; }.article-card { aspect-ratio: auto; min-height: clamp(410px,118vw,500px); }
  .article-card__front { min-height: clamp(410px,118vw,500px); }.article-card h2 { max-width: 100%; font-size: clamp(1.65rem,7.2vw,2.65rem); line-height: 1; overflow-wrap: normal; word-break: normal; hyphens: manual; }
  .article-card__preview { display: none; }
  .article-header { padding-top: 3.5rem; }.back-link { margin-bottom: 3rem; }.article-header h1 { font-size: clamp(2.35rem,10.5vw,3.85rem); line-height: .96; max-width: 100%; }
  .hero-figure { padding: 0; }
  .article-body { padding: 0 1.1rem; }
  .content-image--float { float: none; width: 100%; margin: 2.5rem 0; shape-outside: none !important; }
  .gallery-block { grid-template-columns: 1fr; gap: 1.5rem; }
  .site-footer { grid-template-columns: 1fr; gap: 2rem; }
  .archive-list a { grid-template-columns: 1fr; gap: .2rem; }
}

@media (max-width: 360px) {
  .main-nav > a { display: none; }
  .brand { font-size: .92rem; letter-spacing: .14em; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

.source-block { clear: both; margin: 2.5rem 0; padding: 1rem 0 1rem 1.15rem; border-left: 3px solid var(--text); }
.source-block__label { margin: 0 0 .35rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font: 800 .65rem var(--sans); }
.source-block > p:not(.source-block__label) { margin: .35rem 0; color: var(--muted); font-size: .88rem; }
.source-block time { color: var(--muted); font-size: .72rem; }
.correction-note { max-width: var(--reading); margin: 5rem auto 0; padding: 1.4rem 1.25rem; border-top: 2px solid var(--text); border-bottom: 1px solid var(--line); }
.correction-note time { display: block; margin: -.35rem 0 .8rem; color: var(--muted); font-size: .72rem; }
.correction-note > p:last-child { margin-bottom: 0; font-family: var(--serif); }
.pagination { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; padding: 1.4rem clamp(1rem,3vw,3rem); border-left: 0; border-right: 0; font-size: .78rem; }
.pagination > :last-child { justify-self: end; }
.pagination > span { color: var(--muted); }
@media (max-width: 650px) { .pagination { border-left: 0; border-right: 0; } .pagination > span:nth-child(2) { font-size: .68rem; } }

/* Iteration 0.2: managed taxonomy, author archives and accessible tabular data. */
.collection-header, .author-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem,9vw,8rem) clamp(1rem,3vw,3rem) clamp(3rem,6vw,5rem);
  border-bottom: 1px solid var(--line);
}
.collection-header h1, .author-header h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(3rem,8vw,7.5rem);
  line-height: .88;
  letter-spacing: -.065em;
}
.collection-header > p:last-child, .author-bio {
  max-width: 720px;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.05rem,2vw,1.4rem);
}
.author-role { margin: 1rem 0 0; color: var(--muted); font-weight: 700; }
.article-grid--collection { border-top: 0; }
.article-kicker a { text-decoration: none; }
.article-kicker a:hover, .article-kicker a:focus-visible { text-decoration: underline; }
.article-meta a { color: inherit; }
.hero-figure figcaption { margin-top: .65rem; color: var(--muted); font-size: .72rem; }
.article-topics a { padding: .35rem .6rem; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .72rem; text-decoration: none; }
.article-topics a:hover, .article-topics a:focus-visible { color: var(--text); border-color: var(--text); }
.gallery-block figcaption > span { min-width: 0; }

.table-region {
  clear: both;
  width: min(var(--wide), calc(100vw - 2rem));
  margin: 3.5rem 50%;
  transform: translateX(-50%);
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}
.table-region:focus-visible { outline: 3px solid var(--text); outline-offset: 4px; }
.table-region table { width: 100%; border-collapse: collapse; min-width: 620px; }
.table-region caption { padding: 1rem 0; text-align: left; color: var(--muted); font-weight: 700; }
.table-region th, .table-region td { padding: .8rem 1rem; border-top: 1px solid var(--line); text-align: left; vertical-align: top; }
.table-region th { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }

@media (max-width: 650px) {
  .collection-header, .author-header { padding-top: 4rem; }
  .collection-header h1, .author-header h1 { font-size: clamp(2.35rem,10.5vw,3.9rem); max-width: 100%; line-height: .96; }
  .table-region { width: calc(100vw - 2rem); }
}

/* Iteration 0.3: privacy-preserving external media. */
.privacy-video {
  clear: both;
  width: min(var(--wide), calc(100vw - 2rem));
  margin: 4rem 50%;
  transform: translateX(-50%);
}
.privacy-video__stage {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  color: #fff;
}
.privacy-video__poster,
.privacy-video__placeholder,
.privacy-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.privacy-video__poster { object-fit: cover; opacity: .42; }
.privacy-video__placeholder { background: linear-gradient(135deg, #252525, #090909); }
.privacy-video__consent {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 100%;
  max-width: 720px;
  padding: clamp(1.4rem, 5vw, 4rem);
}
.privacy-video__consent .eyebrow { color: #c7c7c2; }
.privacy-video__consent strong { font-size: clamp(1.5rem, 3vw, 2.6rem); line-height: 1.05; }
.privacy-video__consent p:not(.eyebrow) { max-width: 60ch; margin: .8rem 0 1.4rem; color: #d6d6d1; }
.privacy-video__button {
  min-height: 44px;
  padding: .75rem 1rem;
  border: 1px solid #fff;
  background: #fff;
  color: #111;
  font: 800 .82rem var(--sans);
  cursor: pointer;
}
.privacy-video__button:focus-visible { outline-color: #fff; }
.privacy-video figcaption { margin-top: .6rem; color: var(--muted); font-size: .72rem; }
.preview-studio-note > p { max-width: 68ch; font-size: 1.05rem; }
.preview-command { max-width: 720px; margin: 2rem 0; padding: 1.2rem; border: 1px solid var(--line); background: var(--surface); }
.preview-command strong { display: block; margin-bottom: .5rem; }
.preview-command code { overflow-wrap: anywhere; }

.correction-history {
  max-width: var(--reading);
  margin: 5rem auto 0;
  padding: 1.4rem 1.25rem 0;
  border-top: 2px solid var(--text);
}
.correction-entry { padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.correction-entry__meta { display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); font-size: .72rem; }
.correction-entry__meta strong { color: var(--text); text-transform: uppercase; letter-spacing: .1em; }
.correction-entry > p { margin: .65rem 0 0; font-family: var(--serif); }
.correction-entry--legacy { opacity: .92; }
.pagination--utility { border: 0; padding-left: 0; padding-right: 0; }

/* Structured public image attribution. */
.content-image figcaption,
.gallery-block figcaption,
.hero-figure figcaption,
.privacy-video figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: .45rem 1rem;
  align-items: baseline;
}
.figure-credit {
  display: inline-flex;
  flex-wrap: wrap;
  width: 100%;
  gap: .35rem .7rem;
  margin-left: 0;
  justify-content: flex-start;
  text-align: left;
  color: var(--muted);
  font: 700 .68rem/1.4 var(--sans);
  letter-spacing: .02em;
}
.figure-credit a { color: inherit; text-underline-offset: .16em; }
.figure-source { display: inline-flex; gap: .22rem; align-items: baseline; }
@media (max-width: 650px) {
  .figure-credit { width: 100%; margin-left: 0; }
}

/* Iteration 0.4: structured legal and policy pages. */
.legal-page { max-width: var(--max); margin: 0 auto; }
.legal-page__header {
  padding: clamp(4rem, 8vw, 7.5rem) clamp(1rem, 3vw, 3rem) clamp(2.5rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line);
}
.legal-page__header h1 {
  max-width: min(100%, 14ch);
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 6.4rem);
  line-height: .92;
  letter-spacing: -.05em;
  overflow-wrap: break-word;
}
.legal-page__deck {
  max-width: 760px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font: clamp(1.1rem, 2.2vw, 1.5rem)/1.5 var(--serif);
}
.legal-page__status { display: flex; flex-wrap: wrap; gap: .65rem 1.2rem; margin-top: 1.5rem; color: var(--muted); font-size: .72rem; }
.legal-page__status strong { padding: .25rem .5rem; border: 1px solid var(--line); color: var(--text); }
.legal-page__layout { display: grid; grid-template-columns: minmax(180px, 260px) minmax(0, 1fr); }
.legal-page__nav { align-self: start; position: sticky; top: 76px; padding: 2rem clamp(1rem, 2.5vw, 2rem); border-right: 1px solid var(--line); }
.legal-page__nav > p { margin: 0 0 .8rem; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.legal-page__nav nav { display: grid; gap: .6rem; }
.legal-page__nav a { color: var(--muted); font-size: .82rem; text-decoration: none; }
.legal-page__nav a:hover, .legal-page__nav a:focus-visible { color: var(--text); text-decoration: underline; text-underline-offset: .2em; }
.legal-page__content { min-width: 0; padding: 1rem clamp(1rem, 5vw, 5.5rem) 6rem; }
.legal-section { max-width: 820px; padding: 3.1rem 0; border-bottom: 1px solid var(--line); scroll-margin-top: 90px; }
.legal-section:last-child { border-bottom: 0; }
.legal-section h2 { margin: 0 0 1.35rem; font-size: clamp(1.7rem, 3vw, 2.65rem); letter-spacing: -.035em; }
.legal-section > p { max-width: 70ch; font: 1.05rem/1.75 var(--serif); }
.legal-facts { margin: 0; }
.legal-facts > div { display: grid; grid-template-columns: minmax(135px, .35fr) minmax(0, 1fr); gap: 1rem; padding: .9rem 0; border-top: 1px solid var(--line); }
.legal-facts > div:last-child { border-bottom: 1px solid var(--line); }
.legal-facts dt { color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.legal-facts dd { margin: 0; overflow-wrap: anywhere; font-family: var(--serif); }
.email-reveal { display: flex; flex-wrap: wrap; align-items: baseline; gap: .55rem; }
.email-reveal__button { padding: .45rem .7rem; border: 1px solid var(--text); background: var(--text); color: var(--bg); cursor: pointer; }
.email-reveal__button:disabled { cursor: wait; opacity: .62; }
.email-reveal__status { color: var(--muted); font: .72rem var(--sans); }
.legal-note { padding-left: 1rem; border-left: 2px solid var(--line); color: var(--muted); }
.article-body--policy { padding: 0; }
.article-body--policy > *:first-child { margin-top: 0; }
@media (max-width: 760px) {
  .legal-page__header { padding-top: 4rem; }
  .legal-page__header h1 { font-size: clamp(2.25rem, 9.8vw, 3.8rem); max-width: 100%; line-height: .96; }
  .legal-page__layout { grid-template-columns: 1fr; }
  .legal-page__nav { position: static; padding: 1.2rem 1rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .legal-page__nav nav { display: flex; flex-wrap: wrap; gap: .5rem 1rem; }
  .legal-page__content { padding: 0 1rem 4rem; }
  .legal-facts > div { grid-template-columns: 1fr; gap: .3rem; }
}

/* v0.6: structured citations and collapsible article bibliography. */
.source-citation {
  margin-inline: .08em .03em;
  font: 700 .62em/1 var(--sans);
  vertical-align: super;
}
.source-citation a {
  color: color-mix(in srgb, var(--muted) 72%, var(--bg));
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .16s ease, border-color .16s ease;
}
.source-citation a:hover,
.source-citation a:focus-visible {
  color: var(--text);
  border-bottom-color: currentColor;
}
.source-citation a:focus-visible { outline: 2px solid var(--text); outline-offset: 2px; }

.article-source-note {
  max-width: var(--reading);
  margin: 2.25rem auto 0;
  padding: 0 1.25rem;
}
.article-source-note__body > *:first-child { margin-top: 0; }
.article-source-note__body > *:last-child { margin-bottom: 0; }

.article-sources {
  max-width: var(--reading);
  margin: 5rem auto 0;
  padding: 0 1.25rem;
  clear: both;
}
.article-sources__details { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.article-sources__summary {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: .85rem;
  align-items: center;
  padding: 1.05rem 0;
  cursor: pointer;
  list-style: none;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.article-sources__summary::-webkit-details-marker { display: none; }
.article-sources__summary::marker { content: ""; }
.article-sources__summary:focus-visible { outline: 3px solid var(--text); outline-offset: 5px; }
.article-sources__count {
  color: var(--muted);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .06em;
}
.article-sources__chevron {
  display: inline-grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform .18s ease, color .18s ease;
}
.article-sources__details[open] .article-sources__chevron { transform: rotate(180deg); color: var(--text); }
.article-sources__list {
  margin: 0;
  padding: .25rem 0 1.25rem 2.2rem;
  border-top: 1px solid var(--line);
}
.article-source {
  padding: 1.15rem 0 1.1rem .35rem;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 6rem;
  font-family: var(--serif);
  line-height: 1.55;
}
.article-source:last-child { border-bottom: 0; }
.article-source::marker { color: var(--muted); font: 700 .76rem var(--sans); }
.article-source--verbatim::marker { content: ""; }
.article-source__verbatim { white-space: normal; }
.article-source:target {
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  box-shadow: -10px 0 0 color-mix(in srgb, var(--surface) 70%, transparent), 10px 0 0 color-mix(in srgb, var(--surface) 70%, transparent);
}
.article-source__author { font-weight: 700; }
.article-source cite { font-style: italic; }
.article-source__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .8rem;
  margin-top: .45rem;
  color: var(--muted);
  font: 600 .68rem/1.45 var(--sans);
  letter-spacing: .035em;
}
.article-source__meta a { color: inherit; }
.article-source__note { margin: .55rem 0 0; color: var(--muted); font-size: .88rem; }

@media (max-width: 650px) {
  .article-source-note { padding: 0 1.1rem; }
  .article-sources { margin-top: 4rem; padding: 0 1.1rem; }
  .article-sources__summary { grid-template-columns: 1fr auto; }
  .article-sources__count { display: none; }
  .article-sources__list { padding-left: 1.7rem; }
}

@media (max-width: 650px) {
  .standard-page > header h1, .utility-page > h1, .error-page h1 { font-size: clamp(2.25rem, 10vw, 3.55rem); line-height: .98; max-width: 100%; }
  .section-heading { font-size: clamp(1.75rem, 8vw, 2.55rem); line-height: 1.08; }
  .subsection-heading { font-size: clamp(1.35rem, 6.5vw, 1.85rem); line-height: 1.12; }
  .quote-block { margin-left: 0; margin-right: 0; }
  .quote-block blockquote { font-size: clamp(1.45rem, 7vw, 2.25rem); line-height: 1.18; }
  .article-card__meta, .featured-card__meta { overflow-wrap: anywhere; }
  .site-footer nav { grid-template-columns: 1fr; }
}

/* Starred TO DO: subtle cover provenance signature without mutating source pixels. */
.cover-ai-signature {
  position: absolute; right: clamp(.55rem,1.6vw,1rem); bottom: clamp(.225rem,.65vw,.425rem); z-index: 4;
  color: rgba(255,255,255,.82); font-family: "Segoe Script", "Bradley Hand", cursive;
  font-size: clamp(.78rem,1.2vw,1.02rem); font-weight: 600; letter-spacing: .015em; line-height: 1;
  text-shadow: none; transform: none; pointer-events: none; user-select: none;
}
.hero-figure { position: relative; }
.hero-figure .cover-ai-signature { right: clamp(1.4rem,4vw,2.7rem); bottom: clamp(.35rem,.85vw,.625rem); }
