/* ============================================================
   TULSA HOME INSIDER - "The Insider Column" preview redesign
   Self-contained. Do not reference live /insider.css.
   ============================================================ */

/* ---------- Fonts (self-hosted, absolute paths) ---------- */
@font-face {
  font-family: "DM Serif Display";
  src: url("/fonts/dm-serif-display-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("/fonts/nunito-sans-latin.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter";
  src: url("/fonts/bitter-latin.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --forest: #1A5632;
  --forest-dark: #134225;
  --amber: #D97706;
  --amber-soft: #FBBF24;
  --cream: #FFFBEB;
  --warm-white: #FFFEF7;
  --ink: #1C1917;
  --muted: #78716C;
  --rule: #E2DCC8;
  --rule-dark: #C9C0A4;

  --serif: "DM Serif Display", Georgia, serif;
  --deck: "Bitter", Georgia, serif;
  --sans: "Nunito Sans", system-ui, sans-serif;

  --wrap: 1200px;
  --gutter: clamp(18px, 4vw, 56px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 18px;
  /* faint ruled-paper texture */
  background-image:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 31px,
      rgba(26, 86, 50, 0.035) 32px
    );
  background-attachment: fixed;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }
.rule-heavy { border: 0; border-top: 3px solid var(--ink); margin: 0; }
.rule-double {
  border: 0; height: 6px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin: 0;
}

/* ---------- Kicker / eyebrow ---------- */
.kicker {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}
.kicker.plain::before { display: none; }
.kicker.green { color: var(--forest); }
.kicker.green::before { background: var(--forest); }

/* ---------- Highlighter / marker effect ---------- */
.mark {
  background: linear-gradient(180deg, transparent 58%, rgba(217, 119, 6, 0.38) 58%, rgba(251, 191, 36, 0.45) 100%);
  padding: 0 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* =========================================================
   MASTHEAD
   ========================================================= */
.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--warm-white);
  border-bottom: 1px solid var(--ink);
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}
.masthead-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px var(--gutter);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  background: var(--forest-dark);
  color: #E6F0E8;
  border-bottom: 1px solid var(--forest);
}
.masthead-top .dateline { color: var(--amber-soft); }
.masthead-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter) 14px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}
.brand .brand-name {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 46px);
  color: var(--forest);
  letter-spacing: -0.01em;
}
.brand .brand-name b { color: var(--amber); font-weight: 400; }
.brand .brand-tag {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
nav.mainnav { display: flex; gap: 4px; flex-wrap: wrap; align-items: center; }
nav.mainnav a {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 12px;
  position: relative;
}
nav.mainnav a::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 4px;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(.2,.7,.3,1);
}
nav.mainnav a:hover::after,
nav.mainnav a.is-active::after { transform: scaleX(1); }
nav.mainnav a.is-active { color: var(--forest); }

/* compact-on-scroll */
.masthead.compact .masthead-top { display: none; }
.masthead.compact .masthead-main { padding-top: 10px; padding-bottom: 10px; }
.masthead.compact .brand .brand-name { font-size: clamp(22px, 3.5vw, 30px); }
.masthead.compact .brand .brand-tag { display: none; }
.masthead.compact { box-shadow: 0 6px 24px -16px rgba(0,0,0,0.5); }

/* =========================================================
   STAGGERED LOAD REVEAL
   ========================================================= */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; animation: riseIn 0.7s cubic-bezier(.2,.7,.3,1) forwards; }
.reveal.d1 { animation-delay: 0.05s; }
.reveal.d2 { animation-delay: 0.15s; }
.reveal.d3 { animation-delay: 0.25s; }
.reveal.d4 { animation-delay: 0.35s; }
.reveal.d5 { animation-delay: 0.45s; }
.reveal.d6 { animation-delay: 0.55s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: clamp(28px, 5vw, 56px) 0 clamp(24px, 4vw, 44px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
}
.hero-lead .file-no {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1.5px solid var(--amber);
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 7.5vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--forest); }
.hero .standfirst {
  font-family: var(--deck);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.45;
  color: #44403C;
  font-weight: 400;
  max-width: 36ch;
  margin: 0 0 26px;
}
.byline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.byline .who { color: var(--ink); }
.byline .who b { color: var(--forest); font-weight: 800; }
.byline .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--amber); }

.hero-figure {
  position: relative;
  border: 1px solid var(--ink);
  background: var(--warm-white);
  padding: 10px;
}
.hero-figure img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}
.hero-figure figcaption {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  padding: 10px 4px 2px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.hero-figure .stamp {
  position: absolute;
  top: 22px; right: -8px;
  background: var(--amber);
  color: #fff;
  font-family: var(--sans);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 14px;
  transform: rotate(2deg);
  box-shadow: 0 6px 18px -8px rgba(0,0,0,0.5);
}

/* =========================================================
   SECTION SCAFFOLD
   ========================================================= */
.section { padding: clamp(40px, 6vw, 72px) 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  margin: 8px 0 0;
  letter-spacing: -0.01em;
}
.section-head .more {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 2px solid var(--amber);
  padding-bottom: 2px;
}

/* =========================================================
   DISPATCHES (ruled list)
   ========================================================= */
.dispatches { border-top: 3px solid var(--ink); }
.dispatch {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: clamp(14px, 3vw, 34px);
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  transition: background 0.2s ease;
}
.dispatch:hover { background: rgba(217,119,6,0.05); }
.dispatch .num {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--rule-dark);
  line-height: 1;
}
.dispatch .body .kicker { margin-bottom: 8px; }
.dispatch h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.05;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.dispatch h3 a { transition: color 0.2s ease; background-image: linear-gradient(var(--amber), var(--amber)); background-size: 0% 2px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size 0.3s ease; padding-bottom: 2px; }
.dispatch h3 a:hover { background-size: 100% 2px; color: var(--forest); }
.dispatch .deck {
  font-family: var(--deck);
  font-size: 16.5px;
  color: #57534E;
  margin: 0;
  max-width: 60ch;
}
.dispatch .meta {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
}

/* =========================================================
   INSIDER'S TAKE callout
   ========================================================= */
.insider-take {
  background: var(--forest-dark);
  color: #F4EFE2;
  border: 1px solid var(--forest);
  position: relative;
  padding: clamp(32px, 5vw, 56px);
  overflow: hidden;
}
.insider-take::before {
  content: "“";
  position: absolute;
  top: -40px; left: 18px;
  font-family: var(--serif);
  font-size: 240px;
  color: rgba(217,119,6,0.18);
  line-height: 1;
  pointer-events: none;
}
.insider-take .kicker { color: var(--amber-soft); position: relative; }
.insider-take .kicker::before { background: var(--amber-soft); }
.insider-take p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.12;
  margin: 18px 0 22px;
  position: relative;
  max-width: 26ch;
}
.insider-take p em { color: var(--amber-soft); font-style: italic; }
.insider-take .sign {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B9CFBE;
  position: relative;
}

/* =========================================================
   START HERE / Guides grid
   ========================================================= */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-dark);
  border: 1px solid var(--rule-dark);
}
.guide-card {
  background: var(--warm-white);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.22s ease, transform 0.22s ease;
}
.guide-card:hover { background: var(--cream); }
.guide-card .gnum {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--amber);
  letter-spacing: 0.1em;
}
.guide-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 25px;
  line-height: 1.05;
  margin: 0;
}
.guide-card p { font-size: 15.5px; color: #57534E; margin: 0; flex: 1; }
.guide-card .go {
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.guide-card .go .arr { transition: transform 0.25s ease; }
.guide-card:hover .go .arr { transform: translateX(5px); }

/* =========================================================
   NEIGHBORHOODS strip
   ========================================================= */
.hoods {
  background: var(--forest);
  color: var(--cream);
  border-top: 4px solid var(--amber);
}
.hoods .section-head h2 { color: var(--warm-white); }
.hoods .section-head .kicker { color: var(--amber-soft); }
.hoods .section-head .kicker::before { background: var(--amber-soft); }
.hood-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.16);
}
.hood {
  background: var(--forest);
  padding: 22px 22px 26px;
  transition: background 0.2s ease;
}
.hood:hover { background: var(--forest-dark); }
.hood .hname {
  font-family: var(--serif);
  font-size: 26px;
  margin: 0 0 6px;
  color: var(--warm-white);
}
.hood .hprice {
  font-weight: 900;
  color: var(--amber-soft);
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.hood .hnote { font-size: 14.5px; color: #D7E3D9; margin: 0; line-height: 1.5; }

/* =========================================================
   PULL STAT
   ========================================================= */
.pullstats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 32px);
}
.pullstat {
  border-top: 3px solid var(--amber);
  padding-top: 16px;
}
.pullstat .big {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 0.95;
  color: var(--forest);
}
.pullstat .lbl {
  font-size: 14px;
  color: #57534E;
  font-weight: 600;
  margin-top: 8px;
  max-width: 26ch;
}

/* =========================================================
   NEWSLETTER / footer CTA band
   ========================================================= */
.band {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(40px, 6vw, 64px) 0;
}
.band-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
.band h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1;
  margin: 10px 0 0;
}
.band h2 em { font-style: italic; color: var(--amber-soft); }
.band .kicker { color: var(--amber-soft); }
.band .kicker::before { background: var(--amber-soft); }
.signup { display: flex; gap: 10px; flex-wrap: wrap; }
.signup input {
  flex: 1;
  min-width: 220px;
  border: 1px solid #57534E;
  background: #292524;
  color: var(--cream);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 16px;
}
.signup input::placeholder { color: #A8A29E; }
.signup button {
  background: var(--amber);
  color: #fff;
  border: none;
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 14px 26px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.signup button:hover { background: var(--amber-soft); color: var(--ink); }
.band small { color: #A8A29E; display: block; margin-top: 12px; font-size: 12.5px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-foot {
  background: var(--forest-dark);
  color: #C7D6CB;
  padding: 48px 0 36px;
  font-size: 14.5px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--forest);
}
.site-foot .brand-name {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--warm-white);
}
.site-foot .brand-name b { color: var(--amber-soft); font-weight: 400; }
.site-foot p { max-width: 40ch; color: #A9BCAE; }
.foot-col h4 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-soft);
  margin: 0 0 14px;
}
.foot-col a { display: block; padding: 4px 0; color: #C7D6CB; }
.foot-col a:hover { color: var(--warm-white); }
.foot-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #8FA593;
  letter-spacing: 0.03em;
}

/* =========================================================
   ARTICLE PAGE
   ========================================================= */
.article-head { padding: clamp(28px, 5vw, 56px) 0 0; }
.crumbs {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
}
.crumbs a { color: var(--forest); }
.crumbs span { color: var(--rule-dark); margin: 0 8px; }

.article-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 6.4vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 14px 0 22px;
  max-width: 18ch;
}
.article-standfirst {
  font-family: var(--deck);
  font-size: clamp(19px, 2.4vw, 25px);
  line-height: 1.45;
  color: #44403C;
  max-width: 50ch;
  margin: 0 0 28px;
}
.article-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--muted);
}
.article-byline .who b { color: var(--forest); font-weight: 900; }
.article-byline .cat {
  background: var(--amber);
  color: #fff;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-figure {
  margin: 30px 0 8px;
  border: 1px solid var(--ink);
  padding: 10px;
  background: var(--warm-white);
}
.article-figure img { width: 100%; max-height: 460px; object-fit: cover; filter: saturate(0.92) contrast(1.03); }
.article-figure figcaption {
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  padding: 10px 4px 2px;
}

/* article body grid: text + margin */
.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  padding: clamp(30px, 4vw, 48px) 0 0;
}
.prose { max-width: 680px; }
.prose > .dropcap-p:first-of-type::first-letter {
  font-family: var(--serif);
  float: left;
  font-size: 78px;
  line-height: 0.72;
  padding: 8px 12px 0 0;
  color: var(--forest);
}
.prose p {
  font-size: 19px;
  line-height: 1.72;
  margin: 0 0 22px;
  color: #292524;
}
.prose h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 40px 0 16px;
}
.prose h3 {
  font-family: var(--deck);
  font-weight: 700;
  font-size: 21px;
  margin: 30px 0 10px;
  color: var(--forest-dark);
}
.prose a.inline { color: var(--forest); border-bottom: 2px solid var(--amber); font-weight: 700; }

/* numbered report points */
.report-list { list-style: none; counter-reset: rpt; margin: 28px 0; padding: 0; }
.report-list li {
  counter-increment: rpt;
  position: relative;
  padding: 0 0 22px 64px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}
.report-list li:last-child { border-bottom: none; }
.report-list li::before {
  content: counter(rpt, decimal-leading-zero);
  position: absolute;
  left: 0; top: -4px;
  font-family: var(--serif);
  font-size: 36px;
  color: var(--amber);
  line-height: 1;
}
.report-list li strong {
  display: block;
  font-family: var(--deck);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 4px;
}
.report-list li span { font-size: 17px; color: #44403C; line-height: 1.6; }

/* pull stat inline block */
.pull-inline {
  border-top: 3px solid var(--amber);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  margin: 30px 0;
}
.pull-inline .big {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 68px);
  line-height: 0.95;
  color: var(--forest);
}
.pull-inline .lbl { font-size: 15px; color: #57534E; font-weight: 600; margin-top: 6px; }

/* in-article insider take box */
.take-box {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-left: 8px solid var(--amber);
  padding: 26px 28px;
  margin: 34px 0;
}
.take-box .kicker { margin-bottom: 10px; }
.take-box p {
  font-family: var(--serif);
  font-size: clamp(21px, 2.8vw, 27px);
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.take-box p em { color: var(--forest); font-style: italic; }

/* big pull quote */
.bigquote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.12;
  color: var(--forest);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 26px 0;
  margin: 36px 0;
  letter-spacing: -0.01em;
}

/* margin rail */
.rail { position: sticky; top: 120px; }
.rail .rail-block { border-top: 3px solid var(--ink); padding-top: 14px; margin-bottom: 30px; }
.rail .rail-block h4 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 12px;
}
.rail .rail-block a {
  display: block;
  font-family: var(--deck);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  color: var(--ink);
  padding: 9px 0;
  border-bottom: 1px solid var(--rule);
}
.rail .rail-block a:hover { color: var(--forest); }
.rail .fact {
  background: var(--forest-dark);
  color: #E6F0E8;
  padding: 20px;
}
.rail .fact .kicker { color: var(--amber-soft); }
.rail .fact .kicker::before { background: var(--amber-soft); }
.rail .fact p { font-size: 15px; line-height: 1.55; margin: 12px 0 0; color: #D7E3D9; }

.article-foot {
  border-top: 3px solid var(--ink);
  margin-top: 44px;
  padding: 26px 0 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.article-foot .signoff { font-family: var(--deck); font-style: italic; font-size: 17px; color: var(--muted); }
.btn-back {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  border: 1.5px solid var(--forest);
  padding: 10px 18px;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-back:hover { background: var(--forest); color: var(--warm-white); }

/* =========================================================
   ARTICLES INDEX
   ========================================================= */
.index-hero { padding: clamp(30px, 5vw, 56px) 0 clamp(20px, 3vw, 36px); }
.index-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 14px 0 16px;
}
.index-hero h1 em { font-style: italic; color: var(--forest); }
.index-hero .standfirst {
  font-family: var(--deck);
  font-size: clamp(18px, 2.2vw, 23px);
  color: #44403C;
  max-width: 54ch;
  margin: 0;
}

.filterbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 18px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin-bottom: 8px;
}
.filterbar a {
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 7px 14px;
  border: 1px solid var(--rule-dark);
  transition: all 0.18s ease;
}
.filterbar a:hover { color: var(--ink); border-color: var(--ink); }
.filterbar a.is-active { background: var(--forest); color: var(--warm-white); border-color: var(--forest); }

.idx-list { border-top: 3px solid var(--ink); }
.idx-item {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: clamp(18px, 3vw, 36px);
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.idx-item:hover .idx-thumb img { filter: saturate(1) contrast(1.05); transform: scale(1.03); }
.idx-thumb { overflow: hidden; border: 1px solid var(--ink); background: var(--warm-white); padding: 6px; }
.idx-thumb img { width: 100%; height: 150px; object-fit: cover; filter: saturate(0.9) contrast(1.02); transition: transform 0.4s ease, filter 0.3s ease; }
.idx-body .kicker { margin-bottom: 10px; }
.idx-body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3.2vw, 33px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.idx-body h2 a {
  background-image: linear-gradient(var(--amber), var(--amber));
  background-size: 0% 2px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size 0.3s ease; padding-bottom: 2px;
}
.idx-body h2 a:hover { background-size: 100% 2px; color: var(--forest); }
.idx-body .deck { font-family: var(--deck); font-size: 16.5px; color: #57534E; margin: 0; max-width: 62ch; }
.idx-meta {
  text-align: right;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.idx-meta .read { color: var(--forest); display: block; margin-top: 6px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .guide-grid { grid-template-columns: 1fr 1fr; }
  .hood-row { grid-template-columns: 1fr 1fr; }
  .pullstats { grid-template-columns: 1fr; gap: 24px; }
  .band-grid { grid-template-columns: 1fr; }
  .article-shell { grid-template-columns: 1fr; }
  .rail { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .idx-item { grid-template-columns: 160px 1fr; }
  .idx-meta { grid-column: 1 / -1; text-align: left; }
}
@media (max-width: 640px) {
  body { font-size: 17px; }
  .masthead-main { flex-direction: column; align-items: flex-start; gap: 12px; }
  nav.mainnav { width: 100%; overflow-x: auto; }
  nav.mainnav a { padding: 6px 10px; font-size: 13px; }
  .dispatch { grid-template-columns: 1fr; gap: 6px; }
  .dispatch .num { display: none; }
  .dispatch .meta { text-align: left; }
  .guide-grid { grid-template-columns: 1fr; }
  .hood-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .idx-item { grid-template-columns: 1fr; }
  .idx-thumb { max-width: 100%; }
  .rail { grid-template-columns: 1fr; }
  .prose > .dropcap-p:first-of-type::first-letter { font-size: 62px; }
}
@media (max-width: 480px) {
  :root { --gutter: 16px; }
  .hero h1 { font-size: clamp(34px, 11vw, 48px); }
  .article-title { font-size: clamp(30px, 9vw, 44px); }
  .insider-take::before { font-size: 160px; }
}
