/* ============================================================
   GREAT SALT LAKE SITE, STYLES
   Color palette inspired by the lake itself:
   - Salt white / bone (#f4efe6), background
   - Deep brine blue (#0c2a3a), headlines, dark sections
   - Alkali teal (#2a7080), accents
   - Rust / alarm (#c45a3a), danger, callouts
   - Alfalfa green (#5a7a3a), agricultural data
   - Dust ochre (#c79a4a), toxic dust section
   ============================================================ */

:root {
  --salt: #f4efe6;
  --salt-deep: #ebe2d3;
  --bone: #faf6ef;
  --ink: #0c2a3a;
  --ink-soft: #2a4555;
  --brine: #14536a;
  --teal: #2a7080;
  --teal-light: #5a98a8;
  --rust: #c45a3a;
  --rust-deep: #8a3a22;
  --alfalfa: #5a7a3a;
  --alfalfa-deep: #3a5520;
  --ochre: #c79a4a;
  --mute: #6b7a82;
  --rule: rgba(12, 42, 58, 0.12);
  --shadow: 0 4px 24px rgba(12, 42, 58, 0.08);

  --max: 1100px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7rem);

  --display: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --serif: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --mono: "SF Mono", "Menlo", "Consolas", monospace;
}

/* ------------------------------------------------------------
   RESET / BASE
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--salt);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--brine); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--rust); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
}
h1 { font-weight: 900; letter-spacing: -0.035em; }
h2 { font-weight: 800; letter-spacing: -0.025em; }
h3 { font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }

/* ------------------------------------------------------------
   BREAKING NEWS BAR
   ------------------------------------------------------------ */
.breaking {
  background: var(--rust);
  color: var(--bone);
  padding: 0.7rem var(--gutter);
  font-size: 0.92rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.breaking__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.breaking__pill {
  display: inline-block;
  background: rgba(0,0,0,0.25);
  color: var(--bone);
  padding: 0.22rem 0.6rem;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.breaking__text { flex: 1; min-width: 0; }
.breaking__text a {
  color: var(--bone);
  text-decoration: underline;
  font-weight: 600;
  white-space: nowrap;
  margin-left: 0.25rem;
}
.breaking__text a:hover { color: var(--ochre); }
/* Show the long version on desktop, the short version on mobile */
.breaking__text--short { display: none; }
.breaking__pill--inline { display: none; }
@media (max-width: 720px) {
  .breaking { font-size: 0.82rem; padding: 0.45rem var(--gutter); line-height: 1.4; }
  .breaking__inner { gap: 0; }
  .breaking__text--long { display: none; }
  .breaking__pill { display: none; }
  .breaking__pill--inline {
    display: inline-block;
    background: rgba(0,0,0,0.28);
    color: var(--bone);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-right: 0.4rem;
    white-space: nowrap;
    vertical-align: middle;
  }
  .breaking__text--short { display: inline; }
  .breaking__text a { white-space: normal; margin-left: 0.2rem; }
}

/* ------------------------------------------------------------
   NAV
   ------------------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem var(--gutter);
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav__brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.015em;
  white-space: nowrap;
}
@media (max-width: 980px) {
  .nav__brand { font-size: 0.92rem; }
}
.nav__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
}
.nav__links a {
  color: var(--ink-soft);
  text-decoration: none;
}
.nav__links a:hover { color: var(--rust); }
.nav__cta {
  background: var(--ink);
  color: var(--bone) !important;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
}
.nav__cta:hover { background: var(--rust); color: var(--bone) !important; }
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__links li:last-child { display: block; }
  .nav { gap: 1rem; }
}

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
  background:
    radial-gradient(ellipse at top right, rgba(42, 112, 128, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(196, 90, 58, 0.10), transparent 55%),
    linear-gradient(180deg, var(--salt) 0%, var(--salt-deep) 100%);
  padding: clamp(3rem, 8vw, 6rem) var(--gutter) clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid var(--rule);
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.hero__inner--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 880px) {
  .hero__inner--split {
    grid-template-columns: minmax(0, 2.4fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
  }
}
.hero__copy { min-width: 0; }
.hero__art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  max-width: 240px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 879px) {
  .hero__art { display: none; }
}
@media (min-width: 880px) {
  .hero__art { max-width: 230px; }
}
.utah-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(12, 42, 58, 0.18));
}
.hero__kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 1.2rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--rust);
  border-radius: 999px;
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  max-width: none;
  text-transform: none;
}
.hero__title-accent {
  color: var(--rust);
}
.hero__jump {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--rust);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 90, 58, 0.4);
  padding-bottom: 0.15rem;
  margin: 0 0 1.5rem;
  transition: color 120ms ease, border-color 120ms ease, gap 120ms ease;
}
.hero__jump:hover {
  color: var(--rust-deep);
  border-bottom-color: var(--rust-deep);
  gap: 0.55rem;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 2rem;
}
.hero__sub strong { color: var(--ink); font-weight: 600; }
.hero__ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero__source {
  font-size: 0.82rem;
  color: var(--mute);
  margin-top: 1rem;
}
.hero__source a { color: var(--mute); }

/* Lake elevation chart (replaces simple lake bar) */
.lake-chart {
  max-width: var(--max);
  margin: 3rem auto 0;
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 1.5rem 1.25rem 1.25rem;
  box-shadow: var(--shadow);
}
.lake-chart__caption {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.lake-chart__title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}
.lake-chart__sub {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.lake-chart__svg-wrap { width: 100%; }
.lake-chart__svg {
  width: 100%;
  height: auto;
  display: block;
}
.lake-chart__source {
  font-size: 0.78rem;
  color: var(--mute);
  margin-top: 0.5rem;
  text-align: right;
}
.lake-chart__source a { color: var(--mute); }
@media (max-width: 600px) {
  .lake-chart { padding: 1.25rem 0.85rem 0.85rem; }
  .lake-chart__title { font-size: 1rem; }
}

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-block;
  padding: 0.85rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 80ms ease, background 120ms ease, color 120ms ease, border-color 120ms ease;
}
.btn--primary {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.btn--primary:hover { background: var(--rust); border-color: var(--rust); color: var(--bone); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bone); transform: translateY(-1px); }
.btn--alert {
  background: var(--rust);
  color: var(--bone);
  border-color: var(--rust);
}
.btn--alert:hover { background: var(--rust-deep); border-color: var(--rust-deep); color: var(--bone); transform: translateY(-1px); }

/* ------------------------------------------------------------
   SECTION SHELL
   ------------------------------------------------------------ */
.section {
  padding: var(--section-y) var(--gutter);
  border-bottom: 1px solid var(--rule);
}
.section--dark {
  background: var(--ink);
  color: var(--bone);
}
.section--dark .section__title,
.section--dark .eyebrow,
.section--dark a { color: var(--bone); }
.section--dark .stat__source a,
.section--dark .stat__source { color: rgba(250, 246, 239, 0.6); }
.section--alarm {
  background: linear-gradient(180deg, #fdf6ec 0%, #fbeede 100%);
}
.section--accuse {
  background: var(--bone);
}
.section--act {
  background: linear-gradient(180deg, var(--salt-deep) 0%, var(--salt) 100%);
}
.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 700;
  margin: 0 0 0.6rem;
}
.section__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  max-width: 24ch;
}
.section__title-accent { color: var(--rust); }
.section__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 3rem;
}
.section--dark .section__lead { color: rgba(250, 246, 239, 0.75); }
.section__source {
  font-size: 0.85rem;
  color: var(--mute);
  margin-top: 2rem;
  max-width: 70ch;
}

/* ------------------------------------------------------------
   STAT GRID (Crisis section)
   ------------------------------------------------------------ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
}
@media (max-width: 900px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .stat-grid { grid-template-columns: 1fr; }
}
.stat {
  padding: 1.5rem;
  background: rgba(250, 246, 239, 0.04);
  border: 1px solid rgba(250, 246, 239, 0.1);
  border-radius: 6px;
}
.stat__big {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--ochre);
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}

/* Headline stat variant: red number, bold label. Used for the 73% loss stat. */
.stat--headline {
  border-color: rgba(255, 145, 110, 0.35);
  background: rgba(196, 90, 58, 0.08);
}
.stat--headline .stat__big {
  color: #ff8158;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 800;
}
.stat--headline .stat__label {
  font-weight: 700;
  color: var(--bone);
}
.stat__label {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(250, 246, 239, 0.85);
  margin-bottom: 0.8rem;
}
.stat__source {
  font-size: 0.78rem;
  color: rgba(250, 246, 239, 0.5);
}
.stat__source a {
  color: rgba(250, 246, 239, 0.6);
  text-decoration: underline;
}

/* ------------------------------------------------------------
   CALLOUT
   ------------------------------------------------------------ */
.callout {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--ochre);
  background: rgba(199, 154, 74, 0.08);
  font-size: 1.05rem;
  line-height: 1.6;
  border-radius: 0 4px 4px 0;
}
.section--dark .callout {
  background: rgba(199, 154, 74, 0.12);
}
.callout--alarm {
  border-left-color: var(--rust);
  background: rgba(196, 90, 58, 0.08);
}

/* ------------------------------------------------------------
   BAR CHART (Where the water goes)
   ------------------------------------------------------------ */
.bar-chart {
  margin: 2rem 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.bar-row { display: flex; flex-direction: column; gap: 0.5rem; }
.bar-row__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.bar-row__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}
.bar-row__num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
}
.bar-row__track {
  height: 36px;
  background: rgba(12, 42, 58, 0.06);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.bar-row__fill {
  height: 100%;
  border-radius: 4px;
  transition: width 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bar-row__fill--ag { background: linear-gradient(90deg, var(--alfalfa-deep), var(--alfalfa)); }
.bar-row__fill--ind { background: linear-gradient(90deg, var(--brine), var(--teal-light)); }
.bar-row__fill--mun { background: linear-gradient(90deg, var(--ochre), #e0b870); }
.bar-row__fill--other { background: linear-gradient(90deg, var(--mute), #a8b3b9); }
.bar-row__note {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ------------------------------------------------------------
   CONTRAST CARD (Showers vs alfalfa)
   ------------------------------------------------------------ */
.contrast-card {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.contrast-card__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 1.75rem;
}
.contrast-card__col {
  text-align: center;
  padding: 0 0.5rem;
}
.contrast-card__icon {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
  filter: grayscale(0.2);
}
.contrast-card__big {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.contrast-card__col:first-child .contrast-card__big { color: var(--teal); }
.contrast-card__col:last-child .contrast-card__big { color: var(--alfalfa); }
.contrast-card__label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  max-width: 30ch;
  margin: 0 auto;
}
.contrast-card__ref {
  color: var(--rust);
  font-weight: 700;
  margin-left: 0.1em;
  font-size: 0.85em;
  vertical-align: super;
  line-height: 0;
  text-decoration: none !important;
  border-bottom: none !important;
}
.contrast-card__vs {
  font-family: var(--display);
  font-style: normal;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--rust);
  padding: 0 0.5rem;
  text-align: center;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}
.contrast-card__caption {
  text-align: center;
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--rust);
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
  margin: 0 auto;
  max-width: 60ch;
  text-wrap: balance;
}
.contrast-card { position: relative; }
.contrast-card__footnote {
  position: absolute;
  bottom: 0.6rem;
  right: 1rem;
  margin: 0;
  font-size: 0.68rem;
  color: var(--mute);
  opacity: 0.65;
  line-height: 1.3;
  font-style: italic;
}
.contrast-card__footnote a {
  color: var(--mute);
  text-decoration: underline;
  text-decoration-color: rgba(107, 122, 130, 0.4);
  text-underline-offset: 2px;
}
.contrast-card__footnote a:hover { color: var(--rust); opacity: 1; }
.contrast-card__footnote:hover { opacity: 1; }
@media (max-width: 600px) {
  .contrast-card__footnote {
    position: static;
    margin-top: 1.5rem;
    text-align: left;
    opacity: 0.8;
  }
  .contrast-card { padding-bottom: 1.5rem; }
}
@media (min-width: 601px) {
  .contrast-card { padding-bottom: 2.5rem; }
}
@media (max-width: 600px) {
  .contrast-card__row { grid-template-columns: 1fr; gap: 1.25rem; }
  .contrast-card__vs {
    margin: 0.1rem auto;
    text-align: center;
    color: var(--rust);
    font-weight: 700;
    font-style: normal;
  }
}

/* ------------------------------------------------------------
   SECTION BANNERS (full-width imagery at top of a section)
   ------------------------------------------------------------ */
.section--has-banner { padding-top: 0; }
.section-banner {
  margin: 0 0 var(--section-y);
  position: relative;
  overflow: hidden;
  max-height: 360px;
}
.section-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 360px;
}
.section-banner__credit {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(12, 42, 58, 0.65);
  color: var(--bone);
  padding: 0.4rem 0.85rem;
  font-size: 0.72rem;
  border-top-left-radius: 4px;
}
.section-banner--dramatic { max-height: 420px; }
.section-banner--dramatic img { max-height: 420px; }
@media (max-width: 600px) {
  .section-banner, .section-banner img { max-height: 220px; }
}

/* ------------------------------------------------------------
   SATELLITE BEFORE / AFTER (inside Crisis section)
   ------------------------------------------------------------ */
.satellite {
  margin: 2.5rem 0 0;
  padding: 0;
}
.satellite__caption {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.satellite__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bone);
}
.satellite__sub {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(250, 246, 239, 0.78);
  max-width: 70ch;
}
.satellite__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.satellite__img {
  margin: 0;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(250, 246, 239, 0.15);
  background: #000;
}
.satellite__img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.satellite__img figcaption {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: rgba(12, 42, 58, 0.85);
  color: var(--bone);
  padding: 0.25rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 3px;
}
.satellite__credit {
  font-size: 0.78rem;
  color: rgba(250, 246, 239, 0.5);
  text-align: right;
  margin: 0;
}
@media (max-width: 640px) {
  .satellite__pair { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   EXPORT CALLOUT (Where the Water Goes section)
   ------------------------------------------------------------ */
.export-card {
  margin: 0 0 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, #2a4555 0%, var(--ink) 100%);
  color: var(--bone);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.export-card__title {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin: 0 0 1.5rem;
  color: var(--bone);
}
.export-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(250, 246, 239, 0.18);
}
.export-stat {
  text-align: left;
  padding-right: 0.5rem;
  display: flex;
  flex-direction: column;
}
.export-stat__big {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--ochre);
  margin-bottom: 0.95rem;
  letter-spacing: -0.025em;
  height: 1em;
  display: flex;
  align-items: baseline;
}
.export-stat__label {
  font-size: 1rem;
  color: rgba(250, 246, 239, 0.9);
  line-height: 1.55;
  max-width: 30ch;
  flex: 1;
}
.export-card__cite {
  font-size: 0.82rem;
  color: rgba(250, 246, 239, 0.6);
  line-height: 1.45;
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(250, 246, 239, 0.12);
}
.export-card__cite a {
  color: rgba(250, 246, 239, 0.78);
  text-decoration: underline;
  text-decoration-color: rgba(199, 154, 74, 0.5);
  text-underline-offset: 2px;
}
.export-card__cite a:hover { color: var(--ochre); }
.export-card__caption {
  font-size: 1rem;
  color: rgba(250, 246, 239, 0.92);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 700px) {
  .export-stats { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ------------------------------------------------------------
   PIVOT BLOCK — problem statement + solution, unified gradient
   ------------------------------------------------------------ */
.pivot {
  margin: 3rem 0 0;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.75rem, 4vw, 3rem);
  background: linear-gradient(180deg,
    #c79a4a 0%,
    #b89048 22%,
    #8c8a44 55%,
    #6c8540 78%,
    var(--alfalfa-deep) 100%);
  color: var(--bone);
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pivot__top, .pivot__bottom { padding: 0.5rem 0; }
.pivot__eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(250, 246, 239, 0.78);
  margin: 0 0 1rem;
}
.pivot__eyebrow--solution { color: rgba(250, 246, 239, 0.9); }
.pivot__statement {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--bone);
  margin: 0 auto 1.25rem;
  max-width: 32ch;
  text-wrap: balance;
}
.pivot__statement--solution {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  max-width: 18ch;
}
.pivot__sub {
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  line-height: 1.6;
  color: rgba(250, 246, 239, 0.9);
  margin: 0 auto;
  max-width: 52ch;
}
.pivot__bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
  position: relative;
}
.pivot__bridge::before,
.pivot__bridge::after {
  content: "";
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: rgba(250, 246, 239, 0.35);
}
.pivot__arrow {
  font-family: var(--sans);
  font-size: 1.4rem;
  color: rgba(250, 246, 239, 0.85);
  margin: 0 1rem;
  line-height: 1;
}

/* ------------------------------------------------------------
   DUST GRID
   ------------------------------------------------------------ */
.dust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.dust-card {
  background: var(--bone);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--ochre);
  padding: 1.75rem;
  border-radius: 6px;
}
.dust-card__title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--ink);
}
.dust-list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  font-size: 0.97rem;
  line-height: 1.6;
}
.dust-list li { margin-bottom: 0.5rem; }
.dust-card__src {
  font-size: 0.82rem;
  color: var(--mute);
  margin: 0;
  border-top: 1px solid var(--rule);
  padding-top: 0.75rem;
}

/* ------------------------------------------------------------
   ROGUE'S GALLERY (politicians)
   ------------------------------------------------------------ */
.rogue {
  background: var(--bone);
  border: 1px solid var(--rule);
  border-left: 6px solid var(--rust);
  border-radius: 6px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.rogue--gov { border-left-color: var(--rust-deep); }
.rogue--ferry { border-left-color: #8a3a22; }
.rogue--sen, .rogue--rep { border-left-color: var(--rust); }
.rogue--industry { border-left-color: var(--brine); margin-top: 2.5rem; }
.rogue--industry .rogue__badge { background: var(--brine); }

.rogue__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}
.rogue__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 3px solid var(--bone);
  box-shadow: 0 2px 8px rgba(12, 42, 58, 0.18);
  background: var(--ink-soft);
}
.rogue__photo--mono {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--bone);
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--rust) 0%, var(--rust-deep) 100%);
}
.rogue__photo--industry {
  background: linear-gradient(135deg, var(--teal) 0%, var(--brine) 100%);
  font-size: 2rem;
}
.rogue__badge {
  display: inline-block;
  background: var(--ink);
  color: var(--bone);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 0.5rem;
}
.rogue__title-block { flex: 1; min-width: 0; }
.rogue__name {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin: 0 0 0.25rem;
  color: var(--ink);
}
.rogue__role {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.4;
}
.rogue__body p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}
.rogue__body em {
  background: rgba(199, 154, 74, 0.16);
  font-style: italic;
  padding: 0 0.15em;
}
.rogue__fairness {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(42, 112, 128, 0.07);
  border-left: 3px solid var(--teal);
  font-size: 0.95rem;
  border-radius: 0 4px 4px 0;
}
.rogue__sources {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  font-size: 0.82rem;
  color: var(--mute);
  line-height: 1.7;
}
.rogue__sources strong { color: var(--ink); }
.rogue__sources a { color: var(--brine); }

/* ------------------------------------------------------------
   MANIFESTO SECTION (right after hero)
   ------------------------------------------------------------ */
.section--manifesto {
  background:
    radial-gradient(ellipse at top left, rgba(196, 90, 58, 0.07), transparent 55%),
    var(--bone);
  text-align: left;
}
.manifesto__head {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1.5rem;
  max-width: 30ch;
}
.manifesto__head-accent {
  color: var(--rust);
}
.manifesto__body {
  max-width: 62ch;
  margin-bottom: 2.5rem;
}
.manifesto__body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
}
.manifesto__body p:last-child { margin-bottom: 0; }
.manifesto__body strong { color: var(--ink); font-weight: 600; }
.manifesto__tagline {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
  padding: 1.75rem 0 0;
  border-top: 2px solid var(--rust);
  max-width: 28ch;
}
.manifesto__tagline-accent {
  color: var(--rust);
}

/* ------------------------------------------------------------
   BOTTOM LINE (Hypocrisy section finale, hero-weight treatment)
   ------------------------------------------------------------ */
.bottom-line {
  margin: 3rem 0 0;
  padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.75rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse at top right, rgba(199, 154, 74, 0.10), transparent 60%),
    var(--ink);
  color: var(--bone);
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(199, 154, 74, 0.2);
}
.bottom-line__kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ochre);
  margin: 0 0 1.1rem;
}
.bottom-line__main {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin: 0 0 1.5rem;
  max-width: 28ch;
}
.bottom-line__accent {
  display: block;
  color: var(--ochre);
  font-style: italic;
  margin-top: 0.3rem;
}
.bottom-line__sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(250, 246, 239, 0.8);
  max-width: 56ch;
  margin: 0;
}

/* ------------------------------------------------------------
   FIX GRID
   ------------------------------------------------------------ */
.fix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.fix-card {
  background: var(--bone);
  border: 1px solid var(--rule);
  padding: 1.75rem;
  border-radius: 6px;
  position: relative;
}
.fix-card__num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--alfalfa);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}
.fix-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.fix-card p {
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.fix-card p strong { color: var(--rust); }

/* ------------------------------------------------------------
   AMATEUR'S PROPOSAL SECTION
   ------------------------------------------------------------ */
.section--proposal {
  background: linear-gradient(180deg, var(--bone) 0%, var(--salt) 100%);
}
.proposal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 3rem;
}
.proposal-stat {
  background: var(--bone);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--alfalfa);
  padding: 1.5rem 1.25rem;
  border-radius: 6px;
}
.proposal-stat__num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--alfalfa-deep);
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}
.proposal-stat__label {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .proposal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .proposal-grid { grid-template-columns: 1fr; }
}

.proposal-narrative {
  max-width: 68ch;
  margin: 0 auto;
  padding: 2.25rem 2rem;
  background: var(--bone);
  border-radius: 8px;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
}
.proposal-narrative h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin: 0 0 1.25rem;
  color: var(--ink);
}
.proposal-narrative p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 1.1rem;
}
.proposal-narrative p:last-child { margin-bottom: 0; }
.proposal-narrative strong { font-weight: 600; color: var(--ink); }
.proposal-narrative__close {
  margin-top: 1.5rem !important;
  padding: 1.1rem 1.25rem;
  background: var(--ink);
  color: var(--bone) !important;
  border-radius: 4px;
  text-align: center;
  font-size: 1.05rem !important;
}
.proposal-narrative__close strong { color: var(--ochre) !important; }

/* ------------------------------------------------------------
   ACTION SECTION
   ------------------------------------------------------------ */
.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.action-card {
  background: var(--bone);
  border: 1px solid var(--rule);
  padding: 1.75rem;
  border-radius: 6px;
}
.action-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.action-card p { margin-bottom: 1rem; font-size: 0.97rem; color: var(--ink-soft); }
.action-card__hint { font-size: 0.85rem; color: var(--mute); margin-top: 0.75rem; }
.action-card .btn { margin-top: 0.25rem; }

.letter {
  margin: 3rem 0 2rem;
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.letter__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--ink);
  color: var(--bone);
  flex-wrap: wrap;
}
.letter__head h3 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--bone);
}
.letter__head .btn--ghost {
  color: var(--bone);
  border-color: var(--bone);
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}
.letter__head .btn--ghost:hover {
  background: var(--bone);
  color: var(--ink);
}
.letter__body {
  margin: 0;
  padding: 1.5rem 1.75rem;
  font-family: var(--mono);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink);
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-x: auto;
}

.extra-actions {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.extra-actions h3 {
  font-size: 1.4rem;
  margin: 0 0 1rem;
  color: var(--ink);
}
.extra-actions ul {
  padding-left: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
}
.extra-actions li { margin-bottom: 0.6rem; }

/* ------------------------------------------------------------
   FOOTER / SOURCES
   ------------------------------------------------------------ */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: var(--section-y) var(--gutter) 3rem;
}
.footer .section__inner { max-width: var(--max); }
.footer__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--bone);
  margin-bottom: 1rem;
}
.footer__intro {
  font-size: 1.05rem;
  color: rgba(250, 246, 239, 0.7);
  max-width: 60ch;
  margin-bottom: 2.5rem;
}
.footer__intro a { color: var(--ochre); }
.sources h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.7rem;
  color: var(--ochre);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--sans);
  font-weight: 700;
}
.sources ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sources li {
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.5;
}
.sources a {
  color: rgba(250, 246, 239, 0.85);
  text-decoration: underline;
  text-decoration-color: rgba(199, 154, 74, 0.5);
}
.sources a:hover { color: var(--ochre); }
.footer__small {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 246, 239, 0.15);
  font-size: 0.82rem;
  color: rgba(250, 246, 239, 0.5);
}

/* ------------------------------------------------------------
   RESPONSIVE TWEAKS
   ------------------------------------------------------------ */
@media (max-width: 600px) {
  .rogue { padding: 1.5rem 1.25rem; }
  .rogue__header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .stat { padding: 1.25rem; }
  .letter__body { padding: 1.25rem; font-size: 0.85rem; }
  .hero__title { font-size: 2.2rem; }
}
