/* ==========================================================================
   gkishanreddy.in — main stylesheet
   Palette: midnight indigo · warm ivory · copper · parchment · charcoal
   Type: Fraunces (display) + Manrope (text/UI)
   ========================================================================== */

:root {
  /* Surfaces */
  --midnight: #111933;
  --indigo: #1b2650;
  --indigo-2: #283670;
  --ivory: #f7f2e8;
  --paper: #fbf8f2;
  --parchment: #ece3d1;
  --stone: #d6ccb8;
  --charcoal: #15161b;

  /* Ink */
  --ink: #1b1e29;
  --ink-soft: #464b5a;
  --ink-on-dark: #f3eee3;
  --ink-on-dark-soft: #c3c6d4;

  /* Accent */
  --copper: #964816;        /* ≥4.8:1 on ivory, parchment and copper-wash — AA for text and buttons */
  --copper-deep: #7a390c;
  --copper-light: #e3a06a;  /* 7.4:1 on midnight — accent on dark */
  --copper-wash: #f1dcc6;

  --rule: rgba(27, 30, 41, 0.14);
  --rule-dark: rgba(243, 238, 227, 0.16);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-text: "Manrope", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --fs-lead: clamp(1.125rem, 1.04rem + 0.45vw, 1.375rem);
  --fs-h4: clamp(1.2rem, 1.1rem + 0.4vw, 1.4rem);
  --fs-h3: clamp(1.45rem, 1.25rem + 0.9vw, 2rem);
  --fs-h2: clamp(2rem, 1.55rem + 2vw, 3.4rem);
  --fs-h1: clamp(2.6rem, 1.8rem + 4vw, 5.6rem);
  --fs-mega: clamp(3.2rem, 1.6rem + 8vw, 9.5rem);

  /* Layout */
  --wrap: 1320px;
  --wrap-narrow: 780px;
  --gutter: clamp(16px, 4vw, 56px);
  --header-h: 68px;
  --section-y: clamp(4rem, 3rem + 5vw, 8.5rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
/* Photographs are never cropped: they keep their natural ratio everywhere. */
figure { margin: 0; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
p { margin: 0 0 1.15em; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  font-optical-sizing: auto;
  overflow-wrap: break-word;
  hyphens: manual;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.18; }
h4 { font-size: var(--fs-h4); line-height: 1.25; }
em.serif, .serif-i { font-family: var(--font-display); font-style: italic; }
ul, ol { padding-left: 1.2em; }
strong { font-weight: 700; }
abbr[title] { text-decoration: none; cursor: help; }

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
  border-radius: 2px;
}
.on-dark :focus-visible, .site-header :focus-visible, .site-footer :focus-visible {
  outline-color: var(--copper-light);
}

.skip-link {
  position: absolute;
  left: 12px; top: -100px;
  z-index: 1000;
  background: var(--copper);
  color: #fff;
  padding: 0.7rem 1rem;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { width: 100%; max-width: calc(var(--wrap-narrow) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section-tight { padding-block: clamp(3rem, 2rem + 3vw, 5rem); }
.on-dark { background: var(--midnight); color: var(--ink-on-dark); }
.on-dark p, .on-dark li { color: var(--ink-on-dark-soft); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--ink-on-dark); }
.on-indigo { background: var(--indigo); color: var(--ink-on-dark); }
.on-indigo p, .on-indigo li { color: var(--ink-on-dark-soft); }
.on-parchment { background: var(--parchment); }
.on-paper { background: var(--paper); }
.measure { max-width: 66ch; }

/* ---------- Section marker (signature motif) ---------- */
.marker {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 1.6rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.marker b {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--copper);
}
.marker::after {
  content: "";
  flex: 0 100 clamp(40px, 8vw, 96px);
  min-width: 20px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}
.on-dark .marker, .on-indigo .marker { color: var(--ink-on-dark-soft); }
.on-dark .marker b, .on-indigo .marker b { color: var(--copper-light); }

.lead { font-size: var(--fs-lead); line-height: 1.6; color: var(--ink-soft); }
.on-dark .lead, .on-indigo .lead { color: var(--ink-on-dark-soft); }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  font: 700 var(--fs-sm)/1.2 var(--font-text);
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1.5px solid var(--copper);
  background: var(--copper);
  color: #fff;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:hover { background: var(--copper-deep); border-color: var(--copper-deep); }
.btn .arr { transition: transform 0.25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.on-dark .btn-ghost, .on-indigo .btn-ghost { color: var(--ink-on-dark); border-color: rgba(243,238,227,.6); }
.on-dark .btn-ghost:hover, .on-indigo .btn-ghost:hover { background: var(--ink-on-dark); color: var(--midnight); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.text-link {
  font-weight: 700;
  color: var(--copper);
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
}
.text-link:hover { color: var(--copper-deep); }
.on-dark .text-link, .on-indigo .text-link { color: var(--copper-light); }

/* ==========================================================================
   HEADER — sticky
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--midnight);
  color: var(--ink-on-dark);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: rgba(227,160,106,.35);
  box-shadow: 0 8px 24px rgba(10, 14, 30, 0.22);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink-on-dark);
  flex-shrink: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 1.5px solid var(--copper-light);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--copper-light);
  letter-spacing: 0.02em;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1;
  white-space: nowrap;
}
.brand-name small {
  display: block;
  margin-top: 4px;
  font-family: var(--font-text);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-on-dark-soft);
}
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.1vw, 1.35rem);
  list-style: none;
  margin: 0; padding: 0;
}
.primary-nav a {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-on-dark-soft);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--copper-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.primary-nav a:hover { color: var(--ink-on-dark); }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav a[aria-current="page"] { color: var(--ink-on-dark); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--copper-light);
  color: var(--copper-light);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-cta:hover, .nav-cta[aria-current="page"] { background: var(--copper-light); color: var(--midnight); }

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  padding: 0 0.2rem 0 0.8rem;
  background: none;
  border: 0;
  color: var(--ink-on-dark);
  font: 700 0.8125rem/1 var(--font-text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.menu-toggle .bars { position: relative; width: 24px; height: 14px; }
.menu-toggle .bars span {
  position: absolute; left: 0;
  width: 100%; height: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.2s, top 0.3s var(--ease);
}
.menu-toggle .bars span:nth-child(1) { top: 0; }
.menu-toggle .bars span:nth-child(2) { top: 6px; }
.menu-toggle .bars span:nth-child(3) { top: 12px; }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 190;
  background: var(--midnight);
  color: var(--ink-on-dark);
  overflow-y: auto;
  overscroll-behavior: contain;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s linear 0.3s;
}
.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s;
}
.mobile-menu ol {
  list-style: none;
  margin: 0;
  padding: 1.25rem var(--gutter) 1rem;
  counter-reset: m;
}
.mobile-menu li { border-bottom: 1px solid var(--rule-dark); counter-increment: m; }
.mobile-menu a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 1.5vw, 2rem);
  color: var(--ink-on-dark);
  text-decoration: none;
}
.mobile-menu a::before {
  content: counter(m, decimal-leading-zero);
  font-family: var(--font-text);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--copper-light);
  min-width: 1.8rem;
}
.mobile-menu a[aria-current="page"] { color: var(--copper-light); }
.mobile-menu .mobile-contact {
  padding: 1.25rem var(--gutter) 2.5rem;
  font-size: var(--fs-sm);
  color: var(--ink-on-dark-soft);
}
.mobile-menu .mobile-contact a { font-family: var(--font-text); font-size: var(--fs-sm); display: inline; padding: 0; color: var(--ink-on-dark); }
.mobile-menu .mobile-contact a::before { content: none; }
html.menu-open { overflow: hidden; }

/* ==========================================================================
   FIGURES
   ========================================================================== */
.photo { position: relative; }
.photo img { width: 100%; height: auto; }
.photo figcaption {
  margin-top: 0.7rem;
  font-size: var(--fs-xs);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}
.photo figcaption::before {
  content: "";
  display: inline-block;
  width: 18px; height: 1px;
  margin-right: 0.55rem;
  vertical-align: middle;
  background: var(--copper);
}
.on-dark .photo figcaption, .on-indigo .photo figcaption { color: var(--ink-on-dark-soft); }
.on-dark .photo figcaption::before, .on-indigo .photo figcaption::before { background: var(--copper-light); }
/* Offset copper frame */
.photo-framed { padding: 0 14px 14px 0; }
.photo-framed .frame { position: relative; }
.photo-framed .frame::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1.5px solid var(--copper);
  z-index: 0;
  pointer-events: none;
}
.photo-framed .frame img { position: relative; z-index: 1; }
.on-dark .photo-framed .frame::before, .on-indigo .photo-framed .frame::before { border-color: var(--copper-light); }
.photo-framed figcaption { margin-top: calc(0.7rem + 14px); }

/* ==========================================================================
   PAGE HEADS (each page has its own)
   ========================================================================== */
.crumbs { font-size: var(--fs-xs); letter-spacing: 0.04em; margin-bottom: 1.4rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0; padding: 0; }
.crumbs li + li::before { content: "/"; margin-right: 0.4rem; opacity: 0.6; }
.crumbs a { text-decoration: none; opacity: 0.85; }
.crumbs a:hover { text-decoration: underline; opacity: 1; }
.crumbs [aria-current] { font-weight: 700; }

/* ---- HOME HERO: asymmetric split ---- */
.hero-home { position: relative; background: var(--midnight); color: var(--ink-on-dark); overflow: hidden; }
.hero-home::before {
  /* thin vertical copper rule — structural, not decorative noise */
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% - min(var(--wrap), 100vw) / 2 + var(--gutter) / 2);
  width: 1px;
  background: linear-gradient(var(--copper-light), transparent 70%);
  opacity: 0.5;
}
.hero-home > .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 2rem + 5vw, 6.5rem) clamp(3rem, 2rem + 4vw, 5.5rem);
}
.hero-home .eyebrow {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 1.5rem;
}
.hero-home h1 {
  font-size: var(--fs-mega);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 1.8rem;
}
.hero-home h1 .initial { font-style: italic; color: var(--copper-light); }
.hero-home h1 .line { display: block; }
.hero-home .lead { max-width: 34rem; margin-bottom: 2.2rem; }
.hero-portrait { position: relative; }
.hero-portrait .frame { background: var(--indigo); }
.hero-rail {
  border-top: 1px solid var(--rule-dark);
}
.hero-rail dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}
.hero-rail dl > div { padding: 1.4rem 1.5rem 1.6rem 0; }
.hero-rail dl > div + div { padding-left: 1.5rem; border-left: 1px solid var(--rule-dark); }
.hero-rail dt { font-family: var(--font-display); font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.8rem); color: var(--ink-on-dark); line-height: 1.1; margin-bottom: 0.35rem; }
.hero-rail dd { margin: 0; font-size: var(--fs-sm); color: var(--ink-on-dark-soft); line-height: 1.5; }

/* ---- ABOUT HEAD: portrait-led ---- */
.about-head { background: var(--parchment); }
.about-head .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: end;
  padding-block: clamp(3rem, 2rem + 4vw, 6rem);
}
.about-head h1 { font-size: var(--fs-mega); line-height: 0.95; letter-spacing: -0.03em; }
.about-head h1 span { display: block; font-style: italic; color: var(--copper); font-size: 0.45em; letter-spacing: -0.01em; margin-top: 0.4em; }

/* ---- JOURNEY HEAD: outline numerals ---- */
.journey-head { background: var(--charcoal); color: var(--ink-on-dark); overflow: hidden; }
.journey-head .wrap { padding-block: clamp(3.5rem, 2rem + 5vw, 7rem) clamp(2.5rem, 2rem + 3vw, 4.5rem); }
.journey-head .years {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.3em;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 1rem + 12vw, 12rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0 0 2rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--copper-light);
}
.journey-head .years .dash { -webkit-text-stroke: 0; color: var(--ink-on-dark-soft); font-size: 0.5em; }
.journey-head .years .now { color: var(--ink-on-dark); -webkit-text-stroke: 0; }
@supports not (-webkit-text-stroke: 1px black) {
  .journey-head .years { color: var(--copper-light); }
}
.journey-head .head-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2rem 4rem; align-items: end; }
.journey-head h1 { font-size: var(--fs-h2); margin: 0; }
.journey-head p { color: var(--ink-on-dark-soft); margin: 0; }

/* ---- LEADERSHIP HEAD: data-led ---- */
.lead-head { background: var(--paper); border-bottom: 1px solid var(--rule); }
.lead-head .wrap { padding-block: clamp(3rem, 2rem + 4vw, 6rem) 0; }
.lead-head .intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2rem 5rem; align-items: end; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.lead-head h1 { margin: 0; }
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
}
.stat-band > div { padding: 1.6rem 1.4rem 2rem 0; }
.stat-band > div + div { padding-left: 1.4rem; border-left: 1px solid var(--rule); }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 2rem + 3.2vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--copper);
  margin-bottom: 0.6rem;
}
.stat-label { display: block; font-weight: 700; font-size: var(--fs-sm); margin-bottom: 0.25rem; }
.stat-note { display: block; font-size: var(--fs-xs); color: var(--ink-soft); line-height: 1.5; }

/* ---- MINISTRIES HEAD: portfolio index ---- */
.min-head { background: var(--indigo); color: var(--ink-on-dark); }
.min-head .wrap { padding-block: clamp(3rem, 2rem + 4vw, 6rem); }
.min-head .grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 2.5rem 5rem; align-items: start; }
.portfolio-index { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule-dark); }
.portfolio-index li { border-bottom: 1px solid var(--rule-dark); }
.portfolio-index a {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.05rem 0;
  text-decoration: none;
  color: var(--ink-on-dark);
}
.portfolio-index .when { font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.08em; color: var(--copper-light); }
.portfolio-index .what { font-family: var(--font-display); font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem); line-height: 1.25; }
.portfolio-index .status { font-size: var(--fs-xs); color: var(--ink-on-dark-soft); white-space: nowrap; }
.portfolio-index a:hover .what { color: var(--copper-light); }

/* ---- PARLIAMENT HEAD: documentary ---- */
.parl-head { background: var(--midnight); color: var(--ink-on-dark); overflow: hidden; }
.parl-head .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 2rem + 4vw, 6rem);
}
.parl-head .constituency {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.6rem, 1.2rem + 6vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--copper-light);
  margin-bottom: 1.2rem;
}
.parl-head h1 { font-size: var(--fs-h3); font-family: var(--font-text); font-weight: 700; letter-spacing: 0; margin-bottom: 1.2rem; }

/* ---- INITIATIVES HEAD ---- */
.init-head { background: var(--ivory); }
.init-head .wrap { padding-block: clamp(3rem, 2rem + 4vw, 6rem) clamp(2rem, 3vw, 3rem); }
.init-head h1 { max-width: 14ch; }
.jump-list { display: flex; flex-wrap: wrap; gap: 0.6rem; list-style: none; margin: 2rem 0 0; padding: 0; }
.jump-list a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-height: 44px;
  padding: 0.55rem 1rem;
  border: 1px solid var(--rule);
  background: var(--paper);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.jump-list a span { color: var(--copper); font-weight: 800; font-size: var(--fs-xs); }
.jump-list a:hover { border-color: var(--copper); color: var(--copper); }

/* ---- GALLERY HEAD ---- */
.gal-head { background: var(--charcoal); color: var(--ink-on-dark); }
.gal-head .wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2rem 4rem; align-items: end; padding-block: clamp(3rem, 2rem + 4vw, 5.5rem) clamp(2rem, 3vw, 3rem); }
.gal-head h1 { margin: 0; }
.gal-head p { color: var(--ink-on-dark-soft); margin: 0; }

/* ---- MEDIA HEAD: newsroom masthead ---- */
.news-head { background: var(--paper); }
.news-head .wrap { padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem) 0; }
.masthead {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 0.5rem 2rem;
  padding: 0.7rem 0;
  border-top: 3px double var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.news-head h1 {
  font-size: clamp(3rem, 1.5rem + 7vw, 8rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 1.5rem 0 1rem;
}
.news-head .dek { max-width: 60ch; padding-bottom: 2rem; border-bottom: 1px solid var(--rule); margin: 0; }

/* ---- CONTACT HEAD ---- */
.contact-head { background: var(--ivory); }
.contact-head .wrap { padding-block: clamp(3rem, 2rem + 4vw, 6rem) clamp(1.5rem, 2vw, 2.5rem); }
.contact-head h1 { max-width: 12ch; }

/* ==========================================================================
   HOME SECTIONS
   ========================================================================== */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
}
.pull {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.2rem + 2vw, 2.9rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0;
}
.pull em { color: var(--copper); }
.dropcap::first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 4.2em;
  line-height: 0.82;
  padding: 0.06em 0.12em 0 0;
  color: var(--copper);
}

/* Ledger — milestones as an index, not cards */
.ledger { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--ink); }
.ledger li { border-bottom: 1px solid var(--rule); }
.ledger .row {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 1.5rem 2.5rem;
  align-items: baseline;
  padding: 1.5rem 0;
}
.ledger .yr {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.5rem);
  line-height: 1;
  color: var(--copper);
  letter-spacing: -0.02em;
}
.ledger h3 { font-size: var(--fs-h4); margin: 0; }
.ledger p { margin: 0; color: var(--ink-soft); font-size: var(--fs-sm); }

.split-7-5 { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split-5-7 { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split-even { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }

/* Tenure chart */
.tenure { margin-top: 2.5rem; }
.tenure-axis, .tenure-row { display: grid; grid-template-columns: minmax(10rem, 17rem) minmax(0, 1fr); gap: 1.5rem; align-items: center; }
.tenure-axis .ticks { position: relative; height: 1.6rem; border-bottom: 1px solid var(--rule-dark); }
.tenure-axis .ticks span {
  position: absolute; bottom: 0.35rem;
  transform: translateX(-50%);
  font-size: var(--fs-xs);
  color: var(--ink-on-dark-soft);
  font-variant-numeric: tabular-nums;
}
.tenure-axis .ticks span:first-child { transform: none; }
.tenure-row { padding: 1.15rem 0; border-bottom: 1px solid var(--rule-dark); }
.tenure-row .label strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h4); color: var(--ink-on-dark); line-height: 1.2; }
.tenure-row .label span { font-size: var(--fs-xs); color: var(--ink-on-dark-soft); letter-spacing: 0.04em; }
.tenure-row .track { position: relative; height: 14px; background: rgba(243,238,227,.07); }
.tenure-row .bar {
  position: absolute; top: 0; bottom: 0;
  left: var(--from); width: calc(var(--to) - var(--from));
  background: var(--copper-light);
  transform-origin: left;
}
.tenure-row .bar.ongoing { background: repeating-linear-gradient(90deg, var(--copper-light) 0 85%, transparent 85% 100%); background: var(--copper-light); }
.tenure-row .bar.ongoing::after {
  content: "";
  position: absolute; right: -9px; top: 50%;
  width: 0; height: 0;
  border-left: 9px solid var(--copper-light);
  border-top: 7px solid transparent; border-bottom: 7px solid transparent;
  transform: translateY(-50%);
}
.tenure-row .bar.muted { background: var(--ink-on-dark-soft); }
.tenure-note { margin-top: 1.2rem; font-size: var(--fs-xs); color: var(--ink-on-dark-soft); }

/* Heritage band */
.heritage { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.heritage blockquote { margin: 2rem 0 0; padding-left: 1.2rem; border-left: 2px solid var(--copper-light); }

/* Featured initiatives — asymmetric */
.feature-asym { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: 0; border: 1px solid var(--rule); background: var(--paper); }
.feature-asym .main { padding: clamp(1.6rem, 3vw, 3.2rem); border-right: 1px solid var(--rule); }
.feature-asym .main .big { font-family: var(--font-display); font-size: clamp(3rem, 2rem + 4vw, 6rem); line-height: 1; color: var(--copper); letter-spacing: -0.03em; display: block; margin: 0.4rem 0 1rem; }
.feature-asym .side { display: flex; flex-direction: column; }
.feature-asym .side a {
  flex: 1;
  display: block;
  padding: clamp(1.2rem, 2vw, 1.8rem) clamp(1.2rem, 2.5vw, 2.4rem);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: background 0.25s var(--ease);
}
.feature-asym .side a:last-child { border-bottom: 0; }
.feature-asym .side a:hover { background: var(--copper-wash); }
.feature-asym .side .k { display: block; font-size: var(--fs-xs); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper); margin-bottom: 0.35rem; }
.feature-asym .side h3 { font-size: var(--fs-h4); margin: 0 0 0.3rem; }
.feature-asym .side p { font-size: var(--fs-sm); color: var(--ink-soft); margin: 0; }

/* Media strip */
.media-strip { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
.media-strip article h3 { font-size: var(--fs-h4); margin: 1.1rem 0 0.4rem; }
.media-strip article p { font-size: var(--fs-sm); margin: 0; }
.media-strip .kicker { display: block; margin-top: 1.1rem; font-size: var(--fs-xs); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--copper-light); }

/* Continue index */
.continue { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }
.continue li { border-bottom: 1px solid var(--rule); }
.continue a {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) minmax(0, 1.2fr) 2rem;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem 0;
  text-decoration: none;
  transition: padding 0.3s var(--ease), color 0.2s;
}
.continue .n { font-size: var(--fs-xs); font-weight: 800; color: var(--copper); }
.continue .t { font-family: var(--font-display); font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem); line-height: 1.05; }
.continue .d { font-size: var(--fs-sm); color: var(--ink-soft); }
.continue .a { font-size: 1.4rem; color: var(--copper); transition: transform 0.3s var(--ease); justify-self: end; }
.continue a:hover .t { color: var(--copper); }
.continue a:hover .a { transform: translateX(6px); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.bio-layout { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.bio-aside { position: sticky; top: calc(var(--header-h) + 24px); }
.bio-body h2 { font-size: var(--fs-h3); margin-top: 2.6rem; }
.bio-body h2:first-child { margin-top: 0; }
.factsheet { margin: 0; border-top: 2px solid var(--ink); }
.factsheet div { display: grid; grid-template-columns: 9rem minmax(0, 1fr); gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid var(--rule); }
.factsheet dt { font-size: var(--fs-xs); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); padding-top: 0.2em; }
.factsheet dd { margin: 0; font-size: var(--fs-sm); line-height: 1.55; }
.factsheet small { display: block; color: var(--ink-soft); font-size: var(--fs-xs); margin-top: 0.2rem; }

.portrait-pair { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(1.2rem, 3vw, 2.5rem); align-items: end; }
.chrono-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--rule-dark); margin-top: 2.5rem; }
.chrono-strip div { padding: 1.4rem 1.2rem 0 0; }
.chrono-strip div + div { padding-left: 1.2rem; border-left: 1px solid var(--rule-dark); }
.chrono-strip b { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(1.6rem, 1.3rem + 1vw, 2.2rem); color: var(--copper-light); line-height: 1.05; margin-bottom: 0.45rem; }
.chrono-strip span { font-size: var(--fs-sm); color: var(--ink-on-dark-soft); display: block; line-height: 1.5; }

/* ==========================================================================
   JOURNEY — chaptered timeline
   ========================================================================== */
.journey-progress {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  height: 3px;
  background: var(--parchment);
}
.journey-progress span { display: block; height: 100%; width: 100%; background: var(--copper); transform-origin: left; transform: scaleX(var(--p, 0)); }
.chapter { position: relative; }
.chapter .wrap { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 2.2fr); gap: clamp(1.5rem, 5vw, 5rem); padding-block: clamp(3.5rem, 2.5rem + 4vw, 7rem); }
.chapter-label { position: sticky; top: calc(var(--header-h) + 32px); align-self: start; }
.chapter-label .num { display: block; font-size: var(--fs-xs); font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--copper); margin-bottom: 0.8rem; }
.on-dark .chapter-label .num, .on-indigo .chapter-label .num { color: var(--copper-light); }
.chapter-label .range { display: block; font-family: var(--font-display); font-size: clamp(2.2rem, 1.4rem + 3vw, 4.4rem); line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 0.8rem; }
.chapter-label h2 { font-size: var(--fs-h4); font-family: var(--font-text); font-weight: 700; letter-spacing: 0; line-height: 1.35; }
.moments { list-style: none; margin: 0; padding: 0; }
.moment { display: grid; grid-template-columns: 6.5rem minmax(0, 1fr); gap: 1.5rem; padding: 1.6rem 0; border-top: 1px solid var(--rule); }
.on-dark .moment, .on-indigo .moment { border-top-color: var(--rule-dark); }
.moment:first-child { border-top: 0; padding-top: 0; }
.moment time, .moment .when { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.1; color: var(--copper); }
.on-dark .moment time, .on-indigo .moment time, .on-dark .moment .when, .on-indigo .moment .when { color: var(--copper-light); }
.moment h3 { font-size: var(--fs-h4); margin: 0 0 0.4rem; }
.moment p { margin: 0; font-size: var(--fs-sm); }
.moment .photo { margin-top: 1.4rem; }
.chapter-photos { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.4rem; margin-top: 2rem; align-items: start; }

/* ==========================================================================
   LEADERSHIP — themes matrix
   ========================================================================== */
.themes { counter-reset: th; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--rule); }
.theme { counter-increment: th; padding: clamp(1.5rem, 3vw, 2.6rem) clamp(0rem, 3vw, 2.6rem) clamp(1.5rem, 3vw, 2.6rem) 0; border-bottom: 1px solid var(--rule); }
.theme:nth-child(even) { padding-left: clamp(1.2rem, 3vw, 2.6rem); padding-right: 0; border-left: 1px solid var(--rule); }
.theme::before { content: counter(th, upper-roman) "."; display: block; font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--copper); margin-bottom: 0.6rem; }
.theme h3 { font-size: var(--fs-h3); }
.theme p { color: var(--ink-soft); font-size: var(--fs-sm); }
.theme ul { margin: 0; padding: 0; list-style: none; font-size: var(--fs-sm); }
.theme li { padding: 0.45rem 0; border-top: 1px dashed var(--rule); }

.org-ladder { list-style: none; margin: 0; padding: 0; }
.org-ladder li { display: grid; grid-template-columns: 8.5rem minmax(0, 1fr); gap: 1.2rem; padding: 0.85rem 0; border-bottom: 1px solid var(--rule-dark); align-items: baseline; }
.org-ladder .when { font-weight: 800; font-size: var(--fs-sm); color: var(--copper-light); font-variant-numeric: tabular-nums; }
.org-ladder span { color: var(--ink-on-dark); }

/* ==========================================================================
   MINISTRIES — dossiers
   ========================================================================== */
.dossier { padding-block: var(--section-y); border-bottom: 1px solid var(--rule); }
.dossier:last-of-type { border-bottom: 0; }
.dossier-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1rem 2rem; align-items: end; padding-bottom: 1.6rem; margin-bottom: 2.4rem; border-bottom: 2px solid var(--ink); }
.dossier-head h2 { margin: 0; }
.dossier-head .period { font-family: var(--font-display); font-size: var(--fs-h4); color: var(--copper); white-space: nowrap; }
.badge { display: inline-block; padding: 0.25rem 0.6rem; margin-bottom: 1rem; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; border: 1px solid currentColor; }
.badge.current { color: var(--copper); }
.badge.past { color: var(--ink-soft); }
.dossier-body { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.dossier-body.flip { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }
.dossier-body.flip > .facts { order: 2; }
.facts section { padding: 1.3rem 0; border-top: 1px solid var(--rule); }
.facts section:first-child { border-top: 0; padding-top: 0; }
.facts .tag { display: inline-flex; align-items: center; gap: 0.5rem; font-size: var(--fs-xs); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.6rem; }
.facts .tag::before { content: ""; width: 10px; height: 10px; border: 1.5px solid var(--ink-soft); }
.facts .tag.fact::before { background: var(--copper); border-color: var(--copper); }
.facts .tag.resp::before { background: var(--indigo); border-color: var(--indigo); }
.facts .tag.ctx::before { background: transparent; }
.facts p, .facts li { font-size: var(--fs-sm); }
.facts ul { margin: 0; }
.legend { display: flex; flex-wrap: wrap; gap: 1rem 2rem; margin-top: 1.5rem; padding: 1rem 1.2rem; border: 1px solid var(--rule-dark); font-size: var(--fs-xs); color: var(--ink-on-dark-soft); }
.legend span { display: inline-flex; align-items: center; gap: 0.5rem; }
.legend i { width: 10px; height: 10px; border: 1.5px solid var(--ink-on-dark-soft); display: inline-block; }
.legend i.fact { background: var(--copper-light); border-color: var(--copper-light); }
.legend i.resp { background: var(--ink-on-dark); border-color: var(--ink-on-dark); }

/* ==========================================================================
   PARLIAMENT — election record
   ========================================================================== */
.record { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.record caption { text-align: left; font-size: var(--fs-xs); color: var(--ink-soft); padding-bottom: 0.9rem; caption-side: top; }
.record th, .record td { text-align: left; padding: 1rem 1rem 1rem 0; border-bottom: 1px solid var(--rule); vertical-align: top; }
.record thead th { font-size: var(--fs-xs); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); border-bottom: 2px solid var(--ink); }
.record td.yr { font-family: var(--font-display); font-size: 1.35rem; color: var(--copper); white-space: nowrap; }
.record .res { font-weight: 700; }
.record .res.lost { color: var(--ink-soft); font-weight: 600; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-scroll:focus-visible { outline-offset: 6px; }

.margins { list-style: none; margin: 0; padding: 0; }
.margins li { display: grid; grid-template-columns: 8.5rem minmax(0, 1fr) 6.5rem; gap: 1rem; align-items: center; padding: 0.8rem 0; border-bottom: 1px solid var(--rule-dark); }
.margins .who { font-size: var(--fs-sm); color: var(--ink-on-dark); line-height: 1.3; }
.margins .who small { display: block; color: var(--ink-on-dark-soft); font-size: var(--fs-xs); }
.margins .track { height: 12px; background: rgba(243,238,227,.07); position: relative; }
.margins .fill { position: absolute; inset: 0 auto 0 0; width: var(--w); background: var(--copper-light); }
.margins .fill.lost { background: repeating-linear-gradient(45deg, var(--ink-on-dark-soft) 0 3px, transparent 3px 7px); }
.margins .val { text-align: right; font-variant-numeric: tabular-nums; font-weight: 700; color: var(--ink-on-dark); font-size: var(--fs-sm); }

.doc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 2px solid var(--ink); }
.doc-grid > div { padding: 1.6rem 1.6rem 1.8rem 0; }
.doc-grid > div + div { padding-left: 1.6rem; border-left: 1px solid var(--rule); }
.doc-grid h3 { font-size: var(--fs-h4); }
.doc-grid p { font-size: var(--fs-sm); color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   INITIATIVES — case studies
   ========================================================================== */
.case-feature { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.case-meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 1.8rem 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.case-meta div { padding: 0.9rem 1rem 0.9rem 0; }
.case-meta div + div { padding-left: 1rem; border-left: 1px solid var(--rule); }
.on-dark .case-meta, .on-dark .case-meta div + div { border-color: var(--rule-dark); }
.case-meta dt { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.on-dark .case-meta dt { color: var(--ink-on-dark-soft); }
.case-meta dd { margin: 0.2rem 0 0; font-size: var(--fs-sm); font-weight: 600; }
.case-meta dl, dl.case-meta { margin: 1.8rem 0; }

.case-horizontal { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 0; border: 1px solid var(--rule-dark); }
.case-horizontal .figure-side { padding: clamp(1.6rem, 3vw, 3rem); border-right: 1px solid var(--rule-dark); display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; }
.case-horizontal .text-side { padding: clamp(1.6rem, 3vw, 3rem); }
.big-figure { font-family: var(--font-display); font-size: clamp(3.2rem, 2rem + 5vw, 7rem); line-height: 0.95; letter-spacing: -0.035em; color: var(--copper-light); }
.big-figure small { display: block; font-family: var(--font-text); font-size: var(--fs-sm); letter-spacing: 0; color: var(--ink-on-dark-soft); margin-top: 0.8rem; line-height: 1.5; }

.step-line { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 2px solid var(--ink); }
.step-line li { position: relative; padding: 1.8rem 1.4rem 0 0; }
.step-line li::before { content: ""; position: absolute; top: -7px; left: 0; width: 12px; height: 12px; background: var(--copper); border-radius: 50%; }
.step-line time { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--copper); margin-bottom: 0.4rem; }
.step-line h3 { font-size: 1.15rem; line-height: 1.3; margin-bottom: 0.4rem; }
.step-line p { font-size: var(--fs-sm); color: var(--ink-soft); margin: 0; }

.image-led { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr); gap: clamp(2rem, 4vw, 4rem); align-items: end; }

.stat-highlight { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.stat-highlight > div { padding: 2rem 1.6rem 2rem 0; border-top: 2px solid var(--copper); }
.stat-highlight > div + div { padding-left: 1.6rem; }
.stat-highlight .stat-num { color: var(--copper); }
.stat-highlight p { font-size: var(--fs-sm); color: var(--ink-soft); margin: 0; }
.source-note { font-size: var(--fs-xs); color: var(--ink-soft); margin-top: 1.2rem; }
.on-dark .source-note { color: var(--ink-on-dark-soft); }
.source-note a { color: inherit; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.gallery-filters button {
  min-height: 44px;
  padding: 0.5rem 1rem;
  border: 1px solid var(--rule);
  background: transparent;
  font: 600 var(--fs-sm)/1 var(--font-text);
  color: var(--ink);
  cursor: pointer;
}
.gallery-filters button[aria-pressed="true"] { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.masonry { columns: 3 300px; column-gap: clamp(1rem, 2vw, 1.6rem); }
.masonry .tile { break-inside: avoid; margin: 0 0 clamp(1rem, 2vw, 1.6rem); }
.masonry .tile[hidden] { display: none; }
.tile button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--parchment);
  cursor: zoom-in;
  text-align: left;
}
.tile button img { width: 100%; height: auto; transition: opacity 0.3s var(--ease); }
.tile button:hover img { opacity: 0.88; }
.tile figcaption { padding: 0.7rem 0 0.2rem; font-size: var(--fs-xs); color: var(--ink-soft); line-height: 1.55; }
.tile figcaption b { display: block; font-size: var(--fs-sm); color: var(--ink); font-weight: 700; margin-bottom: 0.15rem; }

.lightbox {
  position: fixed; inset: 0;
  z-index: 500;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: rgba(10, 13, 26, 0.97);
  color: var(--ink-on-dark);
  padding: clamp(12px, 2vw, 24px);
}
.lightbox[hidden] { display: none; }
.lb-top { display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: var(--fs-sm); color: var(--ink-on-dark-soft); }
.lb-stage { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 0.8rem; min-height: 0; }
.lb-stage figure { display: flex; justify-content: center; align-items: center; min-height: 0; height: 100%; }
.lb-stage img { max-width: 100%; max-height: calc(100vh - 190px); max-height: calc(100dvh - 190px); width: auto; height: auto; object-fit: contain; }
.lb-caption { text-align: center; padding: 0.9rem 1rem 0.3rem; font-size: var(--fs-sm); color: var(--ink-on-dark); max-width: 70ch; margin: 0 auto; line-height: 1.5; }
.lb-btn {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border: 1px solid var(--rule-dark);
  background: transparent;
  color: var(--ink-on-dark);
  font-size: 1.3rem;
  cursor: pointer;
}
.lb-btn:hover { border-color: var(--copper-light); color: var(--copper-light); }

/* ==========================================================================
   MEDIA — newsroom
   ========================================================================== */
.news-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.news-lead h2 { font-size: clamp(1.8rem, 1.3rem + 2vw, 3rem); margin-top: 1.2rem; }
.kick { display: inline-block; font-size: var(--fs-xs); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--copper); }
.wire { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--ink); }
.wire li { padding: 1.2rem 0; border-bottom: 1px solid var(--rule); }
.wire time { display: block; font-size: var(--fs-xs); font-weight: 700; color: var(--ink-soft); margin-bottom: 0.3rem; letter-spacing: 0.04em; }
.wire h3 { font-size: 1.2rem; line-height: 1.3; margin: 0 0 0.35rem; }
.wire h3 a { text-decoration: none; }
.wire h3 a:hover { color: var(--copper); text-decoration: underline; }
.wire p { font-size: var(--fs-sm); color: var(--ink-soft); margin: 0; }
.wire .src { display: block; margin-top: 0.4rem; font-size: var(--fs-xs); font-weight: 700; color: var(--copper); }
.news-columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--rule); }
.news-columns article { padding: 1.8rem 1.8rem 1.8rem 0; }
.news-columns article + article { padding-left: 1.8rem; border-left: 1px solid var(--rule); }
.news-columns h3 { font-size: var(--fs-h4); }
.news-columns p { font-size: var(--fs-sm); color: var(--ink-soft); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.contact-card { border-top: 2px solid var(--ink); }
.contact-card .item { padding: 1.4rem 0; border-bottom: 1px solid var(--rule); }
.contact-card .k { display: block; font-size: var(--fs-xs); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.35rem; }
.contact-card .v { font-family: var(--font-display); font-size: clamp(1.35rem, 1.1rem + 1vw, 2rem); line-height: 1.2; overflow-wrap: anywhere; }
.contact-card a.v { text-decoration: none; }
.contact-card a.v:hover { color: var(--copper); text-decoration: underline; text-decoration-thickness: 1px; }

.form { background: var(--paper); border: 1px solid var(--rule); padding: clamp(1.4rem, 3vw, 2.8rem); }
.form-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.2rem; }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: var(--fs-sm); font-weight: 700; margin-bottom: 0.45rem; }
.field label .req { color: var(--copper); }
.field label .opt { font-weight: 500; color: var(--ink-soft); font-size: var(--fs-xs); }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 0.95rem;
  font: 500 1rem/1.4 var(--font-text);
  color: var(--ink);
  background: #fff;
  border: 1.5px solid #8b8a86;
  border-radius: 0;
  transition: border-color 0.2s;
}
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 3px solid var(--copper-wash); border-color: var(--copper); outline-offset: 0; }
.field [aria-invalid="true"] { border-color: #b3261e; }
.field .error { display: block; min-height: 1.2em; margin-top: 0.35rem; font-size: var(--fs-xs); font-weight: 700; color: #b3261e; }
.field .error:empty { min-height: 0; margin: 0; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: var(--fs-xs); color: var(--ink-soft); margin: 1rem 0 0; }
.form-status { margin-top: 1.2rem; padding: 1.1rem 1.2rem; border-left: 3px solid var(--copper); background: var(--copper-wash); font-size: var(--fs-sm); }
.form-status[hidden] { display: none; }
.form-status h3 { font-family: var(--font-text); font-size: 1rem; font-weight: 800; margin: 0 0 0.3rem; }
.form-status p { margin: 0 0 0.7rem; }
.form-status p:last-child { margin-bottom: 0; }
.form-summary { margin-bottom: 1.2rem; padding: 0.9rem 1rem; border-left: 3px solid #b3261e; background: #fbeceb; font-size: var(--fs-sm); color: #6e1510; }
.form-summary[hidden] { display: none; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--midnight); color: var(--ink-on-dark); }
.footer-top { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.15fr); gap: 2.5rem; padding-block: clamp(3.5rem, 3rem + 3vw, 5.5rem) 3rem; }
.footer-brand .brand-name { font-size: 1.6rem; }
.footer-brand p { margin-top: 1.2rem; font-size: var(--fs-sm); color: var(--ink-on-dark-soft); max-width: 34ch; }
.footer-col h2 { font-family: var(--font-text); font-size: var(--fs-xs); font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--copper-light); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--ink-on-dark-soft); text-decoration: none; font-size: var(--fs-sm); }
.footer-col a:hover { color: var(--ink-on-dark); text-decoration: underline; }
.footer-col address { font-style: normal; font-size: var(--fs-sm); color: var(--ink-on-dark-soft); line-height: 1.9; }
.footer-col address strong { color: var(--ink-on-dark); font-weight: 700; }
.footer-col address a { overflow-wrap: anywhere; }
.links-2col { columns: 2; column-gap: 1.5rem; }
.socials { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.socials a {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--rule-dark);
  color: var(--ink-on-dark);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.socials a:hover { background: var(--copper-light); color: var(--midnight); border-color: var(--copper-light); text-decoration: none; }
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom { border-top: 1px solid var(--rule-dark); }
.footer-bottom .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.8rem 2rem; padding-block: 1.4rem; font-size: var(--fs-xs); color: var(--ink-on-dark-soft); }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--ink-on-dark); }
.footer-bottom a:hover { color: var(--copper-light); }
.signout {
  background: none; border: 0; padding: 0.4rem 0; min-height: 32px;
  font: 600 var(--fs-xs)/1 var(--font-text);
  color: var(--ink-on-dark-soft);
  text-decoration: underline;
  cursor: pointer;
}
.signout:hover { color: var(--copper-light); }

/* ==========================================================================
   MOTION
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
  .js .reveal.is-in { opacity: 1; transform: none; }
  .js .hero-home h1 .line { opacity: 0; transform: translateY(0.35em); animation: rise 1s var(--ease) forwards; }
  .js .hero-home h1 .line:nth-child(2) { animation-delay: 0.12s; }
  .js .hero-portrait .frame { animation: fade-in 1.1s 0.2s var(--ease) both; }
  .js .tenure-row .bar { transform: scaleX(0); transition: transform 1.2s var(--ease); }
  .js .tenure.is-in .tenure-row .bar { transform: scaleX(1); }
  .js .margins .fill { transform: scaleX(0); transform-origin: left; transition: transform 1.1s var(--ease); }
  .js .margins.is-in .fill { transform: scaleX(1); }
}
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes fade-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
