/* ============================================================
   Tucson Daily Brief — Visual Language v2
   Warm organic / Southwest editorial
   See REDESIGN-V2.md for the full plan.
   ============================================================ */

:root {
  /* Locked palette */
  --sand: #f5f0e6;
  --tan: #e8dfd1;
  --terracotta: #c75b39;
  --terracotta-dark: #a84a2e;
  --sage: #7a8b6f;
  --brown: #3d3029;
  --brown-light: #5c4a3f;

  /* Extensions */
  --bone: #faf4e8;
  --adobe: #d97048;
  --clay: #8c3a1f;
  --dusk: #4a382c;
  --shadow: #251c17;
  --dust: #c7b9a4;

  /* Semantic */
  --bg: var(--sand);
  --bg-elevated: var(--bone);
  --ink: var(--brown);
  --ink-muted: var(--brown-light);
  --ink-quiet: var(--sage);
  --accent: var(--terracotta);
  --accent-hover: var(--adobe);
  --tool: var(--clay);
  --rule: var(--dust);

  /* Type */
  --display: "Fraunces", "Iowan Old Style", "Georgia", "Times New Roman", serif;
  --serif: "Newsreader", "Iowan Old Style", "Georgia", "Times New Roman", serif;

  /* Type scale */
  --t-d1: clamp(2.5rem, 5.5vw, 4.25rem);
  --t-d2: clamp(1.625rem, 3vw, 2.375rem);
  --t-d3: clamp(1.25rem, 1.8vw, 1.5rem);
  --t-lede: clamp(1.063rem, 1.35vw, 1.25rem);
  --t-body: 1.063rem;
  --t-small: 0.875rem;
  --t-kicker: 0.75rem;

  /* Rhythm */
  --gap-xs: 8px;
  --gap-s: 16px;
  --gap-m: 24px;
  --gap-l: 40px;
  --gap-xl: 64px;
  --gap-xxl: 96px;

  /* Containers */
  --reading: 640px;
  --editorial: 1040px;
  --full: 1280px;
  --home: 1120px;

  /* Redesign 2026-07 (hybrid Morning Edition) */
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --warn: #f5b98f;
}

.container--home { max-width: var(--home); }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: var(--t-body);
  line-height: 1.55;
  font-feature-settings: "kern" 1, "liga" 1, "onum" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ─── Atmospheric layers ─── */

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  background:
    radial-gradient(ellipse 1400px 900px at 12% 8%,
      rgba(217, 112, 72, 0.20) 0%,
      rgba(217, 112, 72, 0.10) 25%,
      rgba(122, 139, 111, 0.05) 60%,
      transparent 85%);
  background-size: 140% 140%;
  background-position: 0% 0%;
  animation: sun-drift 180s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes sun-drift {
  0%   { background-position: 0% 0%; }
  100% { background-position: 25% 18%; }
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch' seed='4'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.38  0 0 0 0 0.18  0 0 0 0.15 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.55;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

main, header, footer, .container, .masthead, .footer-row { position: relative; z-index: 2; }

/* ─── Containers ─── */

.container {
  max-width: var(--full);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.container--editorial { max-width: var(--editorial); }
.container--reading   { max-width: var(--reading); }

/* ─── Type primitives ─── */

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

.kicker {
  font-family: var(--serif);
  font-size: var(--t-kicker);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

.section-head {
  font-family: var(--display);
  font-variation-settings: "opsz" 72, "SOFT" 30, "WONK" 0;
  font-weight: 600;
  font-size: var(--t-d2);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--dusk);
  margin-bottom: var(--gap-s);
  display: inline-block;
  position: relative;
}

.section-head__rule {
  display: block;
  margin-top: 6px;
  color: var(--accent);
}

.section-head__rule path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 900ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-head__rule.in-view path { stroke-dashoffset: 0; }

/* ─── Masthead ─── */

.masthead {
  padding-top: clamp(36px, 6vw, 72px);
  padding-bottom: clamp(24px, 3vw, 36px);
}

.masthead__kicker {
  font-size: var(--t-kicker);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  opacity: 0;
  animation: fade-up 0.7s ease-out 0.00s both;
}

.masthead__wordmark {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 70, "WONK" 1;
  font-weight: 700;
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
  opacity: 0;
  animation: fade-up 0.7s ease-out 0.08s both;
}

.masthead__wordmark a {
  color: inherit;
  text-decoration: none;
}

.masthead__tagline {
  font-family: var(--serif);
  font-size: var(--t-lede);
  font-style: italic;
  color: var(--ink-muted);
  max-width: 640px;
  opacity: 0;
  animation: fade-up 0.7s ease-out 0.16s both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Section nav (two rows: streams + tools) ─── */

.section-nav {
  padding: var(--gap-m) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--gap-s);
}

.streams-nav,
.tools-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-m);
  align-items: baseline;
  font-size: var(--t-small);
  letter-spacing: 0.04em;
}

.streams-nav a, .streams-nav .active,
.tools-nav a, .tools-nav .active {
  font-family: var(--serif);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.streams-nav a { color: var(--accent); }
.streams-nav .active { color: var(--ink); cursor: default; }

/* Contextual second row — children of the active hub (e.g. Local Meeting
   Previews / Reports under Local Government). Subordinate to the top row:
   smaller, lighter, with a left accent rule that ties it to the hub above. */
.subsection-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-s) var(--gap-m);
  align-items: baseline;
  font-size: var(--t-kicker);
  letter-spacing: 0.05em;
  padding-left: var(--gap-s);
  border-left: 2px solid var(--accent);
}
.subsection-nav a, .subsection-nav .active {
  font-family: var(--serif);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
}
.subsection-nav a { color: var(--accent); }
.subsection-nav .active { color: var(--ink); cursor: default; }

.tools-nav a, .tools-nav .active {
  color: var(--tool);
  font-style: italic;
}
.tools-nav .active { cursor: default; }

.streams-nav a::after,
.subsection-nav a::after,
.tools-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 240ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.streams-nav a:hover::after,
.subsection-nav a:hover::after,
.tools-nav a:hover::after { right: 0; }

.tools-nav::before {
  content: "Tools";
  font-family: var(--serif);
  font-size: var(--t-kicker);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  font-weight: 600;
  font-style: normal;
}

/* ─── Homepage: featured Today's Brief ─── */

.featured {
  padding: var(--gap-xxl) 0 var(--gap-xl);
  position: relative;
}

/* Paper-grain bleed: a denser, slightly darker noise layer concentrated under
   the featured area, masked so it fades out on the right where the aside sits.
   Reads as ink soaking deeper into the page right where you start reading. */
.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='b'><feTurbulence type='fractalNoise' baseFrequency='1.05' numOctaves='2' seed='9' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.5  0 0 0 0 0.32  0 0 0 0 0.16  0 0 0 0.38 0'/></filter><rect width='100%25' height='100%25' filter='url(%23b)'/></svg>");
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  -webkit-mask: radial-gradient(ellipse 75% 80% at 28% 50%, #000 0%, rgba(0,0,0,0.5) 55%, transparent 100%);
  mask: radial-gradient(ellipse 75% 80% at 28% 50%, #000 0%, rgba(0,0,0,0.5) 55%, transparent 100%);
}

.featured__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}

.featured__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--gap-s);
}

.featured__kicker-text {
  font-size: var(--t-kicker);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.featured__headline {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 70, "WONK" 1;
  font-weight: 700;
  font-size: var(--t-d1);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--dusk);
  margin-bottom: var(--gap-l);
  max-width: 11em;
}

.featured__aside {
  border-left: 3px solid var(--accent);
  padding-left: var(--gap-m);
  padding-bottom: 4px;
}

.featured__aside-kicker {
  font-size: var(--t-kicker);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 10px;
}

.featured__aside-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--t-lede);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: var(--gap-s);
}

.featured__aside-lede::first-letter {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 70, "WONK" 1;
  font-weight: 700;
  font-style: normal;
  font-size: 3.5em;
  line-height: 0.85;
  float: left;
  padding: 4px 10px 0 0;
  margin-top: 4px;
  color: var(--accent);
}

.featured__cta {
  font-family: var(--serif);
  font-size: var(--t-body);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--accent);
  transition: color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.featured__cta:hover {
  color: var(--accent);
  border-color: var(--accent-hover);
  transform: translateX(3px);
}

.featured__grid { position: relative; z-index: 1; }

/* Terracotta sun motif: sits in the upper-right of the featured section,
   in the negative space above the aside copy. Echoes the small sunray
   dingbat used in kickers, scaled up to act as a Sonoran-light anchor. */
.featured .container { position: relative; }

.featured__sun {
  position: absolute;
  top: -28px;
  right: clamp(40px, 8vw, 140px);
  width: clamp(120px, 14vw, 180px);
  height: auto;
  color: var(--terracotta);
  pointer-events: none;
  z-index: 0;
}

/* ─── Cross-stream cards ─── */

.cross-section {
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--rule);
}

.cross-section__head { margin-bottom: var(--gap-l); }

.cross-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}

.card {
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 220ms ease;
}

.card:hover { transform: translateY(-3px); }

.card__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--t-kicker);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}

.card__eyebrow svg { flex-shrink: 0; }

.card__eyebrow .dot {
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
  margin: 0 4px;
  opacity: 0.6;
}

.card__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "SOFT" 40, "WONK" 0;
  font-weight: 600;
  font-size: var(--t-d3);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 12px;
}

.card__title a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 280ms cubic-bezier(0.25, 0.46, 0.45, 0.94), color 220ms ease;
}

.card__title a:hover {
  color: var(--accent);
  background-size: 100% 1px;
}

.card__lede {
  font-family: var(--serif);
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink-muted);
}

/* ─── Tools row (homepage) ─── */

.tools-section {
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--rule);
}

.tools-section__head { margin-bottom: var(--gap-l); }

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-m);
}

.tool-card {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  background: var(--clay);
  color: var(--bone);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  transition: transform 240ms ease;
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 380px 240px at 110% -20%,
    rgba(217, 112, 72, 0.45) 0%, transparent 70%);
  pointer-events: none;
}

.tool-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(250, 244, 232, 0.18);
  pointer-events: none;
}

.tool-card:hover { transform: translateY(-4px); }

.tool-card__eyebrow {
  font-size: var(--t-kicker);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 244, 232, 0.7);
  position: relative;
  z-index: 2;
}

.tool-card__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 96, "SOFT" 80, "WONK" 1;
  font-weight: 700;
  font-size: clamp(1.75rem, 2.8vw, 2.375rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--bone);
  margin: var(--gap-l) 0 var(--gap-s);
  max-width: 14ch;
  position: relative;
  z-index: 2;
}

.tool-card__body {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--t-body);
  color: rgba(250, 244, 232, 0.85);
  line-height: 1.5;
  max-width: 36ch;
  position: relative;
  z-index: 2;
  margin-bottom: var(--gap-l);
}

.tool-card__cta {
  font-family: var(--serif);
  font-size: var(--t-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(250, 244, 232, 0.4);
  padding-bottom: 4px;
  width: max-content;
  transition: gap 200ms ease, border-color 200ms ease;
}

.tool-card:hover .tool-card__cta {
  gap: 14px;
  border-color: var(--bone);
}

/* ─── Subscribe panel ─── */

.subscribe {
  padding: var(--gap-xl) 0;
}

.subscribe__panel {
  background: var(--bone);
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.subscribe__art {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--adobe) 60%, var(--terracotta-dark) 100%);
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.subscribe__art svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.subscribe__body { padding: clamp(28px, 4vw, 44px); }

.subscribe__eyebrow {
  font-size: var(--t-kicker);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.subscribe__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 72, "SOFT" 50, "WONK" 1;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 12px;
}

.subscribe__body p {
  color: var(--ink-muted);
  font-size: var(--t-body);
  max-width: 56ch;
  margin-bottom: var(--gap-m);
}

.subscribe__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: var(--gap-s);
}

.subscribe__input {
  flex: 1 1 220px;
  padding: 14px 16px;
  font: inherit;
  background: var(--sand);
  color: var(--ink);
  border: 1px solid var(--rule);
  font-size: var(--t-body);
}

.subscribe__input:focus { outline: none; border-color: var(--accent); }

.subscribe__button {
  padding: 14px 22px;
  font-family: var(--serif);
  font-size: var(--t-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bone);
  background: var(--clay);
  border: none;
  cursor: pointer;
  transition: background 220ms ease;
}

.subscribe__button:hover { background: var(--dusk); }

.subscribe__fine {
  font-size: var(--t-small);
  color: var(--ink-muted);
  font-style: italic;
}

/* ─── Recent briefings (homepage) ─── */

.recent {
  padding: var(--gap-xl) 0 var(--gap-xxl);
  border-top: 1px solid var(--rule);
}

.recent__head { margin-bottom: var(--gap-l); }

.recent__list {
  list-style: none;
  border-top: 1px solid var(--rule);
}

.recent__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: baseline;
  gap: var(--gap-m);
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}

.recent__date {
  font-size: var(--t-kicker);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

.recent__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 30, "WONK" 0;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.32;
  letter-spacing: -0.005em;
}

.recent__title a {
  color: var(--ink);
  text-decoration: none;
  transition: color 200ms ease;
}

.recent__title a:hover { color: var(--accent); }

.recent__see-all {
  margin-top: var(--gap-l);
  font-family: var(--serif);
  font-size: var(--t-body);
  font-weight: 600;
}

.recent__see-all a {
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: gap 200ms ease;
}

.recent__see-all a:hover { gap: 14px; }

/* ─── Section index pages (briefings.html, meeting-watch.html, etc.) ─── */

.section-intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--t-lede);
  color: var(--ink-muted);
  max-width: 56ch;
  margin: var(--gap-l) 0 var(--gap-xl);
  padding-left: var(--gap-m);
  border-left: 3px solid var(--accent);
}

.section-intro a { color: var(--accent); }

.post-list {
  list-style: none;
  padding-top: var(--gap-m);
  border-top: 1px solid var(--rule);
}

.post-list li {
  padding: var(--gap-m) 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--gap-m);
  align-items: baseline;
}

.post-list .post-date {
  font-size: var(--t-kicker);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

.post-list a {
  font-family: var(--display);
  font-variation-settings: "opsz" 32, "SOFT" 40, "WONK" 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  transition: color 200ms ease;
}

.post-list a:hover { color: var(--accent); }

.post-list .post-lede {
  grid-column: 2;
  margin-top: 6px;
  color: var(--ink-muted);
  font-size: var(--t-small);
  line-height: 1.5;
  font-style: italic;
}

.post-list .empty {
  display: block;
  color: var(--ink-muted);
  font-style: italic;
  padding: var(--gap-l) 0;
}

/* ─── Around Town combined feed — tagged items ─── */

.at-item .at-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-xs);
}

.at-tag {
  display: inline-block;
  font-family: var(--serif);
  font-size: var(--t-kicker);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.4;
  padding: 2px 10px;
  border-radius: 100px;
  color: var(--bone);
  white-space: nowrap;
}
.at-tag--new-business { background: var(--accent); }
.at-tag--development  { background: var(--sage); }

/* ─── Homepage "What you'll find here" section guide ─── */

.guide { padding: var(--gap-xl) 0; }
.guide__head { margin-bottom: var(--gap-l); }
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: var(--gap-m);
}
.guide-item {
  display: block;
  padding: var(--gap-m);
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--bg-elevated);
  text-decoration: none;
  transition: transform 200ms ease, border-color 200ms ease;
}
.guide-item:hover { transform: translateY(-3px); border-color: var(--accent); }
.guide-item__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 28, "SOFT" 30, "WONK" 0;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.guide-item__desc {
  font-size: var(--t-small);
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ─── Hub landing pages — archive-link row ─── */

.hub-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-s) var(--gap-l);
  margin-top: var(--gap-l);
}
.hub-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "WONK" 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--accent);
  text-decoration: none;
}
.hub-links a:hover { gap: 12px; }
.hub-links a svg { transition: transform 200ms ease; }

/* ─── Individual daily brief pages ─── */

.brief-header {
  margin-bottom: var(--gap-l);
  padding-bottom: var(--gap-l);
  border-bottom: 2px solid var(--accent);
}

.brief-kicker {
  font-size: var(--t-kicker);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brief-date {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 70, "WONK" 1;
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brief-weekday {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--t-lede);
  color: var(--ink-muted);
  margin-top: 8px;
}

.brief-body { font-size: 1.125rem; line-height: 1.7; }

.brief-body h2 {
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "SOFT" 40, "WONK" 1;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 1.875rem);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--clay);
  margin: var(--gap-xl) 0 var(--gap-m);
  position: relative;
}

.brief-body h2:first-child { margin-top: 0; }

.brief-body p {
  margin-bottom: var(--gap-m);
  color: var(--ink);
}

.brief-body strong {
  font-weight: 600;
  color: var(--dusk);
}

/* Drop cap on first story headline */
.brief-body > h2:first-child + p::first-letter,
.brief-body > p:first-child::first-letter {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 70, "WONK" 1;
  font-weight: 700;
  font-size: 4.2em;
  line-height: 0.85;
  float: left;
  padding: 6px 12px 0 0;
  margin-top: 4px;
  color: var(--accent);
}

.brief-body p.source {
  font-family: var(--serif);
  font-size: var(--t-small);
  font-style: italic;
  color: var(--ink-quiet);
  margin-top: -8px;
  margin-bottom: var(--gap-l);
  padding-left: var(--gap-s);
  border-left: 2px solid var(--dust);
}

.brief-body p.source a {
  color: var(--ink-muted);
  text-decoration: none;
  border-bottom: 1px dotted var(--dust);
  transition: color 200ms ease, border-color 200ms ease;
}

.brief-body p.source a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.brief-body hr {
  border: none;
  height: 1px;
  background: var(--rule);
  margin: var(--gap-l) 0;
  position: relative;
}

.brief-body hr::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--accent);
  transform: translateX(-50%);
}

.brief-body a {
  color: var(--ink);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-bottom: 1px;
  transition: color 200ms ease;
}

.brief-body a:hover { color: var(--accent); }

/* ─── Generic post pages (meeting-watch, news-reports, public-record) ─── */

article.post-page {
  font-size: 1.125rem;
  line-height: 1.7;
}

article.post-page .post-meta {
  font-size: var(--t-kicker);
  color: var(--ink-quiet);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 14px;
}

article.post-page > h1 {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 70, "WONK" 1;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--gap-l);
  padding-bottom: var(--gap-l);
  border-bottom: 2px solid var(--accent);
}

article.post-page h2 {
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "SOFT" 40, "WONK" 0;
  font-weight: 600;
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--clay);
  margin: var(--gap-xl) 0 var(--gap-m);
}

article.post-page h3 {
  font-family: var(--display);
  font-variation-settings: "opsz" 36, "SOFT" 30, "WONK" 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--dusk);
  margin: var(--gap-l) 0 12px;
}

article.post-page p { margin-bottom: var(--gap-m); }

article.post-page strong {
  font-weight: 600;
  color: var(--dusk);
}

article.post-page > h1 + p > strong:first-child,
article.post-page > .post-meta + p > strong:first-child {
  /* Bold lede paragraph gets a slight upgrade */
  display: block;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--dusk);
  font-weight: 500;
  margin-bottom: 6px;
}

article.post-page blockquote {
  border-left: 4px solid var(--terracotta);
  padding: 12px var(--gap-m);
  margin: var(--gap-m) 0;
  background: var(--bone);
  color: var(--ink-muted);
  font-size: 1.0625rem;
  font-style: italic;
}

article.post-page blockquote p { margin-bottom: 0; }

article.post-page blockquote strong {
  font-style: normal;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

article.post-page hr {
  border: none;
  height: 1px;
  background: var(--rule);
  margin: var(--gap-l) 0;
}

article.post-page a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 200ms ease;
}

article.post-page a:hover { color: var(--accent-hover); }

article.post-page p.source {
  font-size: var(--t-small);
  font-style: italic;
  color: var(--ink-quiet);
  padding-left: var(--gap-s);
  border-left: 2px solid var(--dust);
}

/* ─── Public Record filing pages ─── */

.public-record-filing .filing-subtitle {
  color: var(--clay);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: -8px;
  margin-bottom: var(--gap-m);
}

/* Elevated-topic badges (e.g. Data Center Watch) — flags high-interest civic
   items in the Around Town feed so they stand out from routine development. */
.topic-flags {
  margin: 0 0 var(--gap-s);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-flag {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bone);
  background: var(--clay);
  border: 1px solid var(--terracotta-dark);
}

.topic-flag--data-center {
  background: var(--terracotta);
  border-color: var(--terracotta-dark);
}

.filing-facts {
  margin: var(--gap-m) 0;
  padding: var(--gap-m) var(--gap-l);
  background: var(--bone);
  border: 1px solid var(--rule);
  font-size: var(--t-body);
  line-height: 1.55;
}

.filing-facts dt {
  color: var(--ink-quiet);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 12px;
}

.filing-facts dt:first-child { margin-top: 0; }

.filing-facts dd { color: var(--ink); margin-left: 0; margin-top: 2px; }

.filing-image {
  margin: var(--gap-l) 0;
}

.filing-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
  background: var(--bone);
}

.filing-image figcaption {
  margin-top: 8px;
  color: var(--ink-quiet);
  font-size: 0.8rem;
  font-style: italic;
}

.filing-disclosure {
  background: var(--sand);
  border: 1px dashed var(--dust);
  padding: var(--gap-s) var(--gap-m);
  margin: var(--gap-m) 0;
  font-size: var(--t-small);
  color: var(--ink-muted);
  font-style: italic;
}

/* ─── Back link ─── */

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-size: var(--t-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: var(--gap-l);
  transition: gap 200ms ease, color 200ms ease;
}

.back-link:hover { color: var(--accent-hover); gap: 14px; }

/* ─── Prev/next edition nav (daily-brief habit loop) ─── */

.edition-nav {
  display: flex;
  justify-content: space-between;
  gap: var(--gap-m);
  margin-top: var(--gap-xl);
  padding-top: var(--gap-l);
  border-top: 1px solid var(--rule);
}

.edition-nav__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 48%;
  text-decoration: none;
  color: var(--ink);
  transition: color 200ms ease;
}

.edition-nav__prev { margin-right: auto; text-align: left; }
.edition-nav__next { margin-left: auto; text-align: right; }

.edition-nav__link:hover { color: var(--accent); }

.edition-nav__dir {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-size: var(--t-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.edition-nav__next .edition-nav__dir { justify-content: flex-end; }

.edition-nav__date {
  font-family: var(--serif);
  font-size: var(--t-small);
  color: var(--ink-muted);
}

@media (max-width: 880px) {
  .edition-nav { flex-direction: column; }
  .edition-nav__link { max-width: 100%; text-align: left; }
  .edition-nav__next { text-align: left; }
  .edition-nav__next .edition-nav__dir { justify-content: flex-start; }
}

/* ─── Coming-soon stub pages (ask, responsiveness) ─── */

.coming-soon {
  padding: var(--gap-xl) 0 var(--gap-xxl);
}

.coming-soon-kicker {
  font-size: var(--t-kicker);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: var(--gap-m);
}

.coming-soon-title {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 70, "WONK" 1;
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.0;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: var(--gap-m);
  max-width: 16ch;
}

.coming-soon-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: var(--gap-l);
  max-width: 48ch;
}

.coming-soon-body {
  max-width: 56ch;
  color: var(--ink-muted);
  margin-bottom: var(--gap-l);
}

.coming-soon-cta {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--dusk);
}

/* Tool-specific coming-soon decoration: clay slab beside the headline */
.coming-soon--ask::before,
.coming-soon--responsiveness::before {
  content: "";
  position: absolute;
  background: var(--clay);
  z-index: -1;
}

.coming-soon--ask {
  position: relative;
}

.coming-soon--ask::before {
  width: clamp(140px, 18vw, 220px);
  height: clamp(110px, 14vw, 170px);
  right: 5%;
  top: 30px;
  transform: rotate(2deg);
  box-shadow: 0 24px 60px -30px rgba(140, 58, 31, 0.5);
}

.coming-soon--responsiveness {
  position: relative;
}

.coming-soon--responsiveness::before {
  width: clamp(140px, 16vw, 200px);
  height: clamp(180px, 22vw, 280px);
  right: 8%;
  top: 60px;
  transform: rotate(-1.5deg);
  box-shadow: 0 24px 60px -30px rgba(140, 58, 31, 0.5);
}

/* ─── Responsiveness Index sample dashboard (stub) ─── */

.dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-m);
  margin: var(--gap-l) 0 var(--gap-xl);
}

.dash-card {
  background: var(--bone);
  border: 1px solid var(--rule);
  padding: var(--gap-m);
}

.dash-card__eyebrow {
  font-size: var(--t-kicker);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 8px;
}

.dash-card__value {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  font-weight: 700;
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--clay);
  margin-bottom: 6px;
}

.dash-card__caption {
  font-size: var(--t-small);
  color: var(--ink-muted);
  font-style: italic;
}

/* ─── Footer ─── */

.footer-row {
  border-top: 1px solid var(--rule);
  padding: var(--gap-l) 0 var(--gap-xl);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--gap-m);
  font-size: var(--t-small);
  color: var(--ink-muted);
  align-items: baseline;
}

.footer-row__byline { font-family: var(--serif); font-style: italic; }

.footer-row__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-s) var(--gap-m);
  align-items: baseline;
}

.footer-row__links a {
  color: var(--accent);
  text-decoration: none;
}

.footer-row__links a:hover { color: var(--accent-hover); text-decoration: underline; }

/* ─── Mobile ─── */

@media (max-width: 880px) {
  .featured__grid,
  .cross-grid,
  .guide-grid,
  .tools-grid,
  .subscribe__panel,
  .dash-grid {
    grid-template-columns: 1fr;
  }

  .featured__grid { gap: var(--gap-l); }

  .featured__sun { display: none; }


  .recent__item,
  .post-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .post-list .post-lede { grid-column: auto; }

  .subscribe__art { min-height: 120px; }

  .section-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .coming-soon--ask::before,
  .coming-soon--responsiveness::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
  .masthead__kicker,
  .masthead__wordmark,
  .masthead__tagline { animation: none; opacity: 1; }
  .section-head__rule path { stroke-dashoffset: 0 !important; transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============================================================================
   REDESIGN 2026-07 — "Morning Edition" hybrid (DESIGN-DIRECTIONS-2026-07.md)
   Shared masthead/nav evolve site-wide; homepage (body.home) gets the edition
   dateline, lead + rundown, ruled cross-stream table, and recent list.
   Appended last so it wins the cascade over the earlier zoned-homepage rules.
   ============================================================================ */

/* ── Masthead → compact flex row (site-wide) ── */
.masthead { padding-top: clamp(24px, 3.5vw, 40px); padding-bottom: 0; }
.masthead__row {
  display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap;
  padding-bottom: 18px; border-bottom: 1px solid var(--rule);
}
.masthead__kicker { width: 100%; margin-bottom: 14px; }
.masthead__wordmark {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-bottom: 0; line-height: 0.95;
}
.masthead__tagline { margin-left: auto; text-align: right; max-width: none; }

/* ── Nav → padded links + Subscribe button (site-wide) ── */
.section-nav { border-top: none; padding-top: var(--gap-s); }
.nav-main { display: flex; align-items: center; gap: var(--gap-s); flex-wrap: wrap; }
.streams-nav { gap: 2px; }
.streams-nav a, .streams-nav .active {
  padding: 6px 11px; border-radius: 3px; font-size: 0.95rem; padding-bottom: 6px;
}
.streams-nav a { color: var(--ink-muted); }
.streams-nav a:hover { background: var(--tan); color: var(--ink); }
.streams-nav .active { color: var(--accent); box-shadow: inset 0 -2px 0 var(--accent); }
.streams-nav a::after { display: none; }  /* kill the old sliding underline here */
.btn-sub {
  margin-left: auto; background: var(--accent); color: var(--bone);
  text-decoration: none; font-weight: 600; font-size: 0.92rem;
  padding: 8px 17px; border-radius: 3px; transition: background 0.15s;
}
.btn-sub:hover { background: var(--accent-hover); }

/* ── Homepage: edition dateline ── */
.edition {
  display: flex; align-items: center; gap: 14px; padding: 14px 0 0;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage); font-weight: 600;
}
.edition .rule { flex: 1; height: 1px; background: var(--rule); }
.edition .loc { color: var(--ink-muted); letter-spacing: 0.08em; }

/* ── Homepage: lead + rundown ── */
.lead-grid {
  display: grid; grid-template-columns: 7fr 5fr; gap: 48px;
  padding: 34px 0 12px; position: relative;
}
.lead { position: relative; }
.lead-grid .featured__sun {
  position: absolute; top: -6px; right: -24px; width: 104px; height: 104px;
  color: var(--accent); opacity: 0.85; margin: 0;
}
.lead__kicker {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 14px;
}
.lead__head {
  font-family: var(--display); font-weight: 700;
  font-variation-settings: "opsz" 144, "SOFT" 70, "WONK" 1;
  font-size: clamp(2.1rem, 4.2vw, 3.5rem); line-height: 1.02;
  letter-spacing: -0.022em; color: var(--ink); margin-bottom: 16px;
}
.lead__dek {
  font-size: 1.2rem; font-style: italic; color: var(--ink-muted);
  max-width: 33em; margin-bottom: 22px;
}
.link-arrow {
  font-weight: 600; color: var(--accent); text-decoration: none;
  border-bottom: 2px solid var(--accent); padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}
.link-arrow:hover { color: var(--accent-hover); border-color: var(--accent-hover); }

.rundown {
  background: var(--bone); border: 1px solid var(--rule);
  border-top: 3px solid var(--accent); border-radius: 4px;
  padding: 20px 24px 12px; align-self: end;
  box-shadow: 0 2px 18px rgba(61, 48, 41, 0.06);
}
.rundown h2 {
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-muted); font-family: var(--serif); font-weight: 700; margin-bottom: 10px;
}
.rundown ol { list-style: none; counter-reset: rd; }
.rundown li {
  counter-increment: rd; display: flex; gap: 12px; padding: 10px 0;
  border-top: 1px solid var(--tan); font-size: 0.97rem; line-height: 1.38;
}
.rundown li::before {
  content: counter(rd); font-family: var(--display); font-weight: 700;
  font-variation-settings: "SOFT" 60, "WONK" 1; color: var(--accent);
  font-size: 1.1rem; line-height: 1.3; min-width: 16px;
}
.rundown a { color: var(--ink); text-decoration: none; }
.rundown a:hover { color: var(--accent); }

/* ── Homepage: section heads (ruled) ── */
.home .section-head {
  font-family: var(--display); font-weight: 600;
  font-variation-settings: "opsz" 72, "SOFT" 30;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem); letter-spacing: -0.012em;
  color: var(--ink); padding: 30px 0 16px; border-bottom: 1px solid var(--rule);
}

/* ── Homepage: "Latest across Tucson" ruled table ── */
.across { display: grid; grid-template-columns: repeat(4, 1fr); }
.across .cell { padding: 18px 20px 24px 0; border-right: 1px solid var(--rule); }
.across .cell + .cell { padding-left: 20px; }
.across .cell:last-child { border-right: none; }
.across .eyebrow {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--accent); margin-bottom: 9px;
}
.across .eyebrow.sage { color: var(--sage); }
.across .eyebrow.clay { color: var(--clay); }
.across .cell h3 {
  font-family: var(--display); font-weight: 600; font-variation-settings: "SOFT" 30;
  font-size: 1.16rem; line-height: 1.22; letter-spacing: -0.01em;
}
.across .cell h3 a { color: var(--ink); text-decoration: none; }
.across .cell h3 a:hover { color: var(--accent); }
.across .cell .meta { font-size: 0.82rem; color: var(--sage); margin-top: 7px; }

/* ── Homepage: recent daily briefs (two-column) ── */
.recent-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 44px; list-style: none; }
.recent-list li {
  display: flex; gap: 14px; align-items: baseline; padding: 9px 0;
  border-top: 1px solid var(--rule);
}
.recent-list .d { font-size: 0.8rem; color: var(--sage); font-weight: 600; min-width: 92px; letter-spacing: 0.03em; }
.recent-list a { color: var(--ink); text-decoration: none; font-size: 0.98rem; line-height: 1.32; }
.recent-list a:hover { color: var(--accent); }
.home .see-all { padding: 16px 0 8px; }

@media (max-width: 880px) {
  .masthead__tagline { margin-left: 0; text-align: left; width: 100%; }
  .lead-grid { grid-template-columns: 1fr; gap: 28px; }
  .lead-grid .featured__sun { display: none; }
  .across { grid-template-columns: 1fr 1fr; }
  .across .cell { border-right: none; padding-left: 0 !important; border-top: 1px solid var(--rule); }
  .recent-list { grid-template-columns: 1fr; }
}

/* ── Phase 2: live status strip ── */
.status {
  background: var(--brown); color: #f0e6d6; font-family: var(--mono);
  font-size: 0.74rem; letter-spacing: 0.02em; position: relative; z-index: 3;
}
.status .container {
  display: flex; gap: 26px; align-items: center;
  padding-top: 7px; padding-bottom: 7px; overflow-x: auto; white-space: nowrap;
}
.status .dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--sage); margin-right: 7px; vertical-align: 1px;
}
.status .warn { color: var(--warn); }
.status .warn .dot { background: var(--terracotta); }
.status b { font-weight: 600; color: #fbf3e6; }
.status .spacer { flex: 1; }

/* ── Phase 2: the week at a glance ── */
.wk-h { display: flex; align-items: baseline; gap: 16px; padding: 34px 0 14px; border-bottom: 1px solid var(--rule); }
.wk-h h2 {
  font-family: var(--display); font-weight: 600; font-variation-settings: "opsz" 72, "SOFT" 30;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem); letter-spacing: -0.012em; color: var(--ink);
}
.wk-h .note { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--sage); }
.week { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--rule); border-top: none; background: var(--bone); }
.week .day { padding: 14px 15px 16px; border-right: 1px solid var(--rule); min-height: 150px; }
.week .day:last-child { border-right: none; }
.week .dh {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 600; padding-bottom: 8px; border-bottom: 1px solid var(--rule); margin-bottom: 9px;
}
.week .day.today { background: rgba(199, 91, 57, 0.06); }
.week .day.today .dh { color: var(--terracotta); border-bottom-color: var(--terracotta); }
.week ul { list-style: none; }
.week li { font-size: 0.86rem; line-height: 1.32; padding: 6px 0; }
.week .mk {
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; display: block; margin-bottom: 1px;
}
.week .mk.brief { color: var(--ink-muted); }
.week .mk.report { color: var(--terracotta); }
.week .mk.filing { color: var(--clay); }
.week .mk.preview { color: var(--sage); }
.week .mk.dev { color: var(--sage); }
.week a { color: var(--ink); text-decoration: none; }
.week a:hover { color: var(--terracotta); }

@media (max-width: 880px) {
  .week { grid-template-columns: 1fr 1fr; }
  .week .day { border-bottom: 1px solid var(--rule); }
}

/* ── Report data tables (news reports, by-the-numbers pieces) ── */
.report-table-wrap {
  overflow-x: auto;
  margin: 32px 0;
  -webkit-overflow-scrolling: touch;
}

.report-table {
  border-collapse: collapse;
  width: 100%;
  font-family: var(--serif);
  font-size: var(--t-small);
  color: var(--ink);
}

.report-table th,
.report-table td {
  padding: 8px 16px 8px 0;
  border-bottom: 1px solid var(--rule);
  text-align: left;
  white-space: nowrap;
}

.report-table thead th {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border-bottom: 2px solid var(--ink);
}

.report-table tbody tr:last-child td {
  border-bottom: none;
}

.report-table td strong {
  color: var(--accent);
}

/* ─── Bluesky comments ─── */
.bsky-comments {
  margin-top: var(--gap-xl);
  padding-top: var(--gap-l);
  border-top: 1px solid var(--rule);
}

.bsky-comments__head {
  font-size: 1.25rem;
  margin-bottom: var(--gap-s);
}

.bsky-comments__meta {
  font-size: var(--t-small);
  color: var(--ink-quiet);
  margin-bottom: var(--gap-m);
}

.bsky-comment {
  margin-bottom: var(--gap-m);
}

.bsky-comment--nested {
  margin: var(--gap-m) 0 0 var(--gap-l);
  padding-left: var(--gap-m);
  border-left: 2px solid var(--rule);
}

.bsky-comment__author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.bsky-comment__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bsky-comment__name {
  font-weight: 600;
  color: var(--terracotta-dark, var(--terracotta));
  text-decoration: none;
}

.bsky-comment__name:hover {
  text-decoration: underline;
}

.bsky-comment__date {
  font-size: var(--t-small);
  color: var(--ink-quiet);
}

.bsky-comment__text {
  white-space: pre-wrap;
  margin: 0;
}

.bsky-comments__cta {
  margin-top: var(--gap-l);
}

.bsky-comments__cta a {
  color: var(--terracotta-dark, var(--terracotta));
  font-weight: 600;
}
