/* =========================
   CSS RESET
========================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section,
summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =========================
   BASE
========================= */
:root {
  --bg-dark: #050505;
  --panel: rgba(12, 12, 14, 0.88);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text-main: #f2efe8;
  --text-soft: #c7c0b4;
  --text-muted: #948b7d;
  --accent: #d6b86a;
  --accent-soft: rgba(214, 184, 106, 0.18);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: "Source Serif 4", serif;
  color: var(--text-main);
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.82)),
    url("images/starfield.jpg") center/cover fixed no-repeat;
  padding: 3rem 1.25rem;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

/* =========================
   HEADER
========================= */
.site-header {
  padding: 4rem 4rem 2rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 4rem;
  bottom: 0;
  width: 120px;
  height: 3px;
  background: linear-gradient(to right, var(--accent), transparent);
}

.kicker {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 12ch;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.deck {
  margin-top: 1.35rem;
  max-width: 60ch;
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.byline-row {
  display: flex;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.byline,
.pubdate {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.byline {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* =========================
   ARTICLE
========================= */
.feature-story {
  padding: 2rem 4rem 4rem;
}

.hero-image,
.supporting-image {
  margin: 0 0 2.5rem;
}

.hero-image img,
.supporting-image img {
  width: 100%;
  border: 1px solid var(--panel-border);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

.hero-image figcaption,
.supporting-image figcaption {
  margin-top: 0.85rem;
  font-family: "Inter", sans-serif;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.intro-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.intro-text p,
.article-columns p,
.closing-section p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-main);
  margin-bottom: 1.3rem;
}

.lead {
  font-size: 1.28rem;
  color: #fff8e8;
}

.lead::first-letter {
  float: left;
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  line-height: 0.8;
  padding-right: 0.45rem;
  padding-top: 0.2rem;
  color: var(--accent);
}

.story-note {
  border-left: 1px solid var(--line);
  padding-left: 1.4rem;
  background: linear-gradient(to bottom, var(--accent-soft), transparent);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.story-note h2 {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.story-note p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.pull-quote {
  margin: 3rem auto;
  max-width: 18ch;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
  color: #fff6d8;
  padding: 2rem 1rem;
  position: relative;
}

.pull-quote::before,
.pull-quote::after {
  content: "";
  display: block;
  width: 90px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  margin: 0 auto 1.25rem;
}

.pull-quote::after {
  margin: 1.25rem auto 0;
}

.section-heading {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.35rem;
}

.article-columns {
  margin-bottom: 3rem;
  column-count: 2;
  column-gap: 2.75rem;
  column-rule: 1px solid rgba(255, 255, 255, 0.08);
}

.article-columns .section-heading {
  column-span: all;
}

.article-columns p {
  margin-bottom: 1.25rem;
  orphans: 3;
  widows: 3;
}

.closing-section {
  max-width: 75ch;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

/* =========================
   FOOTER
========================= */
.page-footer {
  padding: 1.5rem 4rem 2.5rem;
  border-top: 1px solid var(--line);
}

.page-footer p {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =========================
   INTERACTION / DETAIL
========================= */
.hero-image img:hover,
.supporting-image img:hover {
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

a {
  color: var(--accent);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1000px) {
  .site-header,
  .feature-story,
  .page-footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .site-header::after {
    left: 2rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .story-note {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 1.25rem;
  }
}

@media (max-width: 760px) {
  body {
    padding: 1rem;
  }

  .site-header {
    padding-top: 2.5rem;
  }

  h1 {
    max-width: none;
  }

  .deck {
    font-size: 1.02rem;
  }

  .feature-story {
    padding-top: 1.5rem;
  }

  .article-columns {
    column-count: 1;
  }

  .intro-text p,
  .article-columns p,
  .closing-section p {
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .pull-quote {
    padding-left: 0;
    padding-right: 0;
  }
}