:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-soft: #f0f0f0;
  --text: #1a1a1a;
  --muted: #777777;
  --line: rgba(26, 26, 26, 0.16);
  --line-soft: rgba(26, 26, 26, 0.08);
  --accent: #9a6a43;
  --accent-hover: #7f5635;
  --accent-soft: rgba(154, 106, 67, 0.13);
  --blue-soft: #eff6ff;
  --blue-text: #1e3a5f;
  --green-soft: #eef8f2;
  --green-text: #25543a;
  --rose-soft: #fff1f2;
  --rose-text: #7f1d1d;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
  --content: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: var(--text);
  text-decoration-color: rgba(196, 149, 106, 0.45);
  text-underline-offset: 4px;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

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

.app-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(180px, 0.48fr) minmax(0, 2.4fr);
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(250, 250, 250, 0.96);
  padding: 13px clamp(16px, 4vw, 42px);
  backdrop-filter: blur(14px);
}

.brand-block h1,
.brand-title {
  margin: 3px 0 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.tab,
.chip,
.day-tab,
.window-tab,
.button-link {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.tab {
  padding: 8px 9px;
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: none;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.button-link.secondary {
  background: transparent;
}

.tab:hover,
.tab.is-active,
.chip:hover,
.chip.is-active,
.day-tab:hover,
.day-tab.is-active,
.window-tab:hover,
.window-tab.is-active,
.button-link:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

main {
  min-height: calc(100vh - 66px);
}

.view {
  display: none;
  scroll-margin-top: 96px;
  max-width: var(--content);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 56px) clamp(16px, 4vw, 42px) 72px;
}

.view.is-active {
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.58fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: stretch;
  margin-bottom: 24px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  padding: clamp(24px, 5vw, 54px);
}

.hero-copy h2,
.section-title h2 {
  margin: 0;
  color: var(--text);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy .hero-date {
  display: block;
  margin-top: 0.85rem;
  color: var(--muted);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(0.72rem, 0.9vw, 0.84rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-copy p,
.section-title p,
.card-copy,
.muted,
.panel p,
.practice-card p,
.lodging-card p,
.gear-detail-card p,
.media-card p,
.evidence-card p,
.source-row p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-copy > p {
  max-width: 64ch;
  margin: 24px 0 0;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-photo {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--surface-soft);
}

.hero-photo img,
.photo-card img,
.hotel-photo img,
.gear-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(10, 10, 10, 0.74);
  color: #ffffff;
  padding: 6px 8px;
  font-size: 0.72rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.stat,
.panel,
.photo-card,
.slot-card,
.lodging-card,
.source-row,
.gear-card,
.media-card,
.evidence-card,
.gear-detail-card,
.practice-card {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stat {
  min-height: 104px;
  padding: 14px;
}

.stat b {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 0.86rem;
}

.dashboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.guide-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) clamp(16px, 5vw, 54px) 90px;
}

.guide-view-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.guide-article {
  display: grid;
  gap: 28px;
}

.guide-toc {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(16px, 3vw, 24px);
  box-shadow: var(--shadow);
}

.guide-toc div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.guide-toc a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

.guide-toc a:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.guide-prose {
  max-width: 82ch;
  margin: 0 auto;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.76;
}

.guide-prose h1,
.guide-prose h2,
.guide-prose h3 {
  color: var(--text);
  line-height: 1.05;
}

.guide-prose h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.guide-prose h2 {
  margin: 54px 0 14px;
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0;
  scroll-margin-top: 96px;
}

.guide-prose h3 {
  margin: 30px 0 10px;
  font-size: 1.25rem;
}

.guide-prose p,
.guide-prose li {
  color: #333333;
}

.guide-prose p {
  margin: 0 0 1rem;
}

.guide-prose ul,
.guide-prose ol {
  margin: 0 0 1.2rem;
  padding-left: 1.25rem;
}

.guide-prose li + li {
  margin-top: 0.32rem;
}

.guide-prose table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 22px 0 30px;
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  border-spacing: 0;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.guide-prose thead {
  background: var(--surface-soft);
}

.guide-prose th,
.guide-prose td {
  min-width: 150px;
  border-bottom: 1px solid var(--line-soft);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.guide-prose tr:last-child td {
  border-bottom: 0;
}

.guide-prose th {
  color: var(--text);
  font-size: 0.84rem;
}

.guide-prose td {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.guide-prose a {
  font-weight: 650;
}

.guide-loader {
  max-width: 720px;
  margin: 0 auto;
}

.panel {
  padding: clamp(18px, 3vw, 28px);
}

.panel h3,
.slot-card h3,
.lodging-card h3,
.gear-card h3,
.photo-card h3,
.source-row h3,
.media-card h3,
.evidence-card h3,
.gear-detail-card h3,
.practice-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.28;
}

.panel h3 {
  font-size: 1.35rem;
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.section-title h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.section-title p {
  max-width: 62ch;
  margin: 0;
}

.compact-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.day-tabs,
.window-tabs,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.day-tab,
.window-tab,
.chip {
  padding: 8px 12px;
  color: var(--muted);
}

.day-tab span {
  display: block;
  color: inherit;
  font-size: 0.7rem;
}

.timeline,
.practice-list,
.media-grid,
.evidence-grid {
  display: grid;
  gap: 14px;
}

.day-intro h3 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.slot-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(220px, 0.42fr);
  gap: 18px;
  padding: 18px;
}

.slot-time {
  color: var(--accent-hover);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.tag {
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-text);
  padding: 5px 8px;
  font-size: 0.76rem;
  font-weight: 700;
}

.tag.sunrise {
  background: #fff7ed;
  color: #7c3f12;
}

.tag.sunset {
  background: var(--rose-soft);
  color: var(--rose-text);
}

.tag.verify {
  background: var(--accent-soft);
  color: #754b26;
}

.map-section,
.support-title,
.filter-guidance {
  margin-top: 34px;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 18px;
}

.map-canvas {
  min-height: 680px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface-soft);
}

.map-list {
  display: grid;
  gap: 10px;
  max-height: 680px;
  overflow: auto;
}

.map-item {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface);
  padding: 12px;
  text-align: left;
}

.map-item h3 {
  margin: 0 0 5px;
  font-size: 0.96rem;
}

.map-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.52;
}

.map-item.is-static {
  cursor: default;
}

.leaflet-popup-content {
  color: var(--text);
}

.grid-2,
.grid-3,
.grid-4,
.gear-detail-grid {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lodging-card,
.travel-card,
.gear-card,
.photo-card,
.source-row,
.media-card,
.evidence-card {
  padding: 16px;
}

.lodging-card[data-rank="1"] {
  border-color: rgba(196, 149, 106, 0.55);
}

.travel-card h3 {
  margin-top: 0;
}

.rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--text);
  color: #ffffff;
  font-weight: 800;
}

.rank-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.lodging-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.meta-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.hotel-photo,
.gear-photo {
  display: grid;
  min-height: 190px;
  margin-bottom: 14px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface-soft);
  text-align: center;
  text-decoration: none;
}

.gear-photo {
  min-height: 220px;
  background: #f7f7f7;
}

.gear-photo img {
  object-fit: contain;
  padding: 18px;
  background: #ffffff;
}

.hotel-photo-link,
.gear-photo-link {
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(26, 26, 26, 0.05), rgba(196, 149, 106, 0.16)),
    var(--surface-soft);
}

.hotel-photo-link span,
.gear-photo-link span {
  max-width: 15rem;
  color: var(--text);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.photo-card {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.photo-card figure {
  margin: 0;
}

.photo-card img {
  aspect-ratio: 4 / 3;
  display: block;
}

.photo-card figcaption {
  padding: 14px;
}

.source-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 120px;
  gap: 14px;
  align-items: start;
}

.source-row > div {
  min-width: 0;
}

.source-row .muted {
  overflow-wrap: anywhere;
}

.media-decision {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.28fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
}

.media-counts {
  display: grid;
  gap: 10px;
}

.media-counts span {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface-soft);
  padding: 14px;
  color: var(--muted);
}

.media-counts b {
  display: block;
  color: var(--text);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
}

.media-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.media-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.media-editorial {
  display: grid;
  gap: 56px;
}

.media-editorial .eyebrow,
.media-editorial .media-meta span {
  letter-spacing: 0;
}

.media-hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.68fr);
  gap: 18px;
  align-items: stretch;
}

.media-hero-copy {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-soft);
  padding: 36px 0;
}

.media-hero-copy h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 0.98;
}

.media-hero-copy > p:last-child {
  max-width: 62ch;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.recommendation-summary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(196, 149, 106, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(196, 149, 106, 0.09), rgba(255, 255, 255, 0)),
    var(--surface);
  padding: 26px;
  box-shadow: var(--shadow);
}

.recommendation-summary h3 {
  max-width: 11em;
  margin: 34px 0 18px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.03;
}

.recommendation-summary p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.media-brief-grid {
  display: grid;
  grid-template-columns: 1.18fr repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.brief-card {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.brief-card.is-primary {
  border-top-color: var(--accent);
}

.brief-card span {
  color: var(--accent-hover);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.55rem;
}

.brief-card h3 {
  margin: 12px 0 8px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.brief-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.media-section {
  display: grid;
  gap: 20px;
  border-top: 1px solid var(--line-soft);
  padding-top: 28px;
}

.media-section-header {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
}

.media-section-header h3 {
  margin: 4px 0 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.08;
}

.media-section-header > p {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.source-priority {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) repeat(2, minmax(0, 0.88fr));
  gap: 14px;
}

.priority-source-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
  box-shadow: var(--shadow);
}

.priority-source-card.is-lead {
  border-color: rgba(196, 149, 106, 0.45);
  padding: 24px;
}

.priority-source-card h4 {
  margin: 18px 0 8px;
  font-size: 1.18rem;
  line-height: 1.28;
}

.priority-source-card.is-lead h4 {
  max-width: 15em;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
}

.priority-source-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.source-name {
  color: var(--accent-hover);
  font-size: 0.84rem;
  font-weight: 700;
}

.article-results {
  display: grid;
  gap: 12px;
}

.article-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 22px;
  box-shadow: none;
}

.article-card.is-featured {
  border-color: rgba(196, 149, 106, 0.48);
  background:
    linear-gradient(90deg, rgba(196, 149, 106, 0.08), rgba(255, 255, 255, 0) 38%),
    var(--surface);
}

.article-kicker {
  border-right: 1px solid var(--line-soft);
  padding-right: 18px;
}

.article-body h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  line-height: 1.3;
}

.article-body .card-copy {
  margin: 0;
}

.article-body .card-copy + .card-copy {
  margin-top: 10px;
}

.article-apply {
  border-left: 3px solid var(--accent);
  margin: 16px 0 0;
  padding-left: 12px;
  color: var(--text);
  line-height: 1.62;
}

.article-apply b {
  color: var(--text);
}

.evidence-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.evidence-group {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}

.evidence-group header {
  display: flex;
  min-height: 104px;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface-soft);
  padding: 16px;
}

.evidence-group header strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 400;
}

.evidence-list {
  display: grid;
}

.evidence-note {
  display: block;
  padding: 16px;
  text-decoration: none;
}

.evidence-note + .evidence-note {
  border-top: 1px solid var(--line-soft);
}

.evidence-note span {
  color: var(--accent-hover);
  font-size: 0.8rem;
  font-weight: 700;
}

.evidence-note h4 {
  margin: 8px 0 8px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.3;
}

.evidence-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.evidence-note .evidence-data {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.92rem;
}

.implication-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.implication-card {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.implication-card h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.28;
}

.implication-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.citation-list {
  display: grid;
  border-top: 1px solid var(--line-soft);
}

.citation-list a {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(150px, 0.28fr);
  gap: 16px;
  align-items: baseline;
  border-bottom: 1px solid var(--line-soft);
  padding: 14px 0;
  text-decoration: none;
}

.citation-list span {
  color: var(--accent-hover);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.citation-list strong {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.35;
}

.citation-list em {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
}

.kit-list {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.58;
}

.kit-list li + li {
  margin-top: 8px;
}

.gear-detail-grid {
  grid-template-columns: 1fr;
}

.gear-detail-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 8px;
  margin: 14px 0;
}

.spec-grid div {
  min-width: 0;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface-soft);
  padding: 10px;
}

.spec-grid dt {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-grid dd {
  margin: 5px 0 0;
  color: var(--text);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface);
}

.comparison-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid var(--line-soft);
  padding: 13px;
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--text);
  font-size: 0.82rem;
}

.comparison-table td {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.48;
}

.comparison-table td strong,
.comparison-table td span {
  display: block;
}

.comparison-table td strong {
  margin-bottom: 6px;
  color: var(--text);
}

.comparison-table td span + span {
  margin-top: 5px;
}

.comparison-note {
  margin-top: 12px;
}

.practice-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
}

.practice-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--text);
  color: #ffffff;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.35rem;
}

.homework {
  border-left: 3px solid var(--accent);
  margin: 16px 0 0;
  padding-left: 12px;
}

.empty-map {
  display: grid;
  min-height: 420px;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1060px) {
  .app-shell,
  .hero,
  .dashboard,
  .map-layout,
  .media-decision,
  .media-hero-section,
  .media-section-header,
  .source-priority,
  .article-card,
  .gear-detail-card {
    grid-template-columns: 1fr;
  }

  .media-brief-grid,
  .evidence-board,
  .implication-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-hero-copy {
    min-height: 300px;
  }

  .article-kicker {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
    padding-right: 0;
    padding-bottom: 14px;
  }

  .citation-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .top-tabs {
    justify-content: start;
  }

  .hero-copy,
  .hero-photo {
    min-height: 380px;
  }

  .guide-page {
    padding-top: 34px;
  }

  .guide-prose {
    max-width: none;
  }

  .grid-3,
  .grid-4,
  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slot-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .app-shell {
    padding: 12px;
  }

  .view {
    padding: 18px 14px 56px;
  }

  .guide-page {
    padding: 22px 14px 64px;
  }

  .guide-view-header {
    justify-content: flex-start;
  }

  .guide-toc div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .guide-toc a {
    border-radius: 6px;
  }

  .guide-prose {
    font-size: 0.98rem;
  }

  .guide-prose h1 {
    max-width: none;
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .guide-prose th,
  .guide-prose td {
    min-width: 220px;
  }

  .hero-copy {
    min-height: auto;
    padding: 20px;
  }

  .hero-photo {
    min-height: 300px;
  }

  .hero-copy h2 {
    font-size: clamp(2.8rem, 16vw, 4.4rem);
  }

  .section-title {
    display: block;
  }

  .section-title p {
    margin-top: 10px;
  }

  .stat-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .media-grid,
  .media-brief-grid,
  .evidence-board,
  .implication-grid,
  .source-row,
  .spec-grid,
  .practice-card {
    grid-template-columns: 1fr;
  }

  .media-editorial {
    gap: 40px;
  }

  .media-hero-copy {
    min-height: auto;
    padding: 24px 0;
  }

  .media-hero-copy h2 {
    font-size: 3.2rem;
  }

  .recommendation-summary {
    padding: 20px;
  }

  .recommendation-summary h3,
  .media-section-header h3 {
    font-size: 1.9rem;
  }

  .priority-source-card,
  .priority-source-card.is-lead {
    min-height: auto;
    padding: 18px;
  }

  .priority-source-card.is-lead h4 {
    font-size: 1.55rem;
  }

  .map-canvas {
    min-height: 520px;
  }

  .practice-card {
    gap: 10px;
  }
}

@media print {
  @page {
    margin: 0.55in;
    size: letter;
  }

  html {
    scroll-behavior: auto;
  }

  body {
    background: #ffffff;
  }

  .app-shell {
    position: static;
    display: block;
    border-bottom: 1px solid #dddddd;
    padding: 0 0 18px;
  }

  .top-tabs,
  .hero-actions {
    display: none;
  }

  main {
    min-height: auto;
  }

  .view,
  .view.is-active {
    display: block;
    max-width: none;
    padding: 28px 0;
    break-before: page;
  }

  #overview {
    break-before: auto;
  }

  .hero,
  .dashboard,
  .grid-2,
  .grid-3,
  .grid-4,
  .media-grid,
  .media-hero-section,
  .media-section-header,
  .media-brief-grid,
  .source-priority,
  .article-card,
  .evidence-board,
  .implication-grid,
  .map-layout,
  .gear-detail-card,
  .slot-card {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-photo,
  .map-canvas {
    min-height: auto;
  }

  .hero-photo {
    max-height: 4.5in;
  }

  .panel,
  .photo-card,
  .slot-card,
  .lodging-card,
  .source-row,
  .gear-card,
  .media-card,
  .evidence-card,
  .recommendation-summary,
  .priority-source-card,
  .evidence-group,
  .implication-card,
  .gear-detail-card,
  .practice-card {
    box-shadow: none;
    break-inside: avoid;
  }

  .map-list {
    max-height: none;
  }

  a {
    color: #1a1a1a;
  }
}
