:root {
  --ink: #17211b;
  --muted: #5f6b62;
  --paper: #f7f5ee;
  --panel: #ffffff;
  --line: #d9ddd1;
  --green: #2f684c;
  --green-dark: #1f4734;
  --gold: #b98938;
  --rust: #9a4f35;
  --shadow: 0 18px 45px rgba(23, 33, 27, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--green-dark);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid rgba(185, 137, 56, 0.75);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(247, 245, 238, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header::after {
  content: "";
  width: clamp(120px, 15vw, 190px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-weight: 800;
}

.site-header .brand {
  gap: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  color: #fff;
  background: var(--green-dark);
}

.site-header .brand-mark {
  display: none;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 6px;
  row-gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.86rem;
  width: fit-content;
  max-width: 100%;
}

.top-nav a {
  padding: 7px 10px;
  border-radius: 7px;
}

.top-nav details {
  position: relative;
}

.top-nav summary {
  list-style: none;
  padding: 7px 10px;
  border-radius: 7px;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.top-nav summary::-webkit-details-marker {
  display: none;
}

.top-nav details[open] summary,
.top-nav summary:hover {
  color: var(--green-dark);
  background: #eef5ef;
}

.nav-more-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 10px;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.nav-more-panel a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-more-panel a:hover {
  color: var(--green-dark);
  background: #eef5ef;
}

.top-nav a.active,
.top-nav a:hover {
  color: var(--green-dark);
  background: #eef5ef;
}

.homepage-trust-strip {
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 104, 76, 0.08), transparent 200px),
    radial-gradient(circle at 86% 20%, rgba(185, 137, 56, 0.08), transparent 220px),
    linear-gradient(135deg, #fbfaf6, #eef4ee);
}

.homepage-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.homepage-trust-grid a {
  display: grid;
  gap: 6px;
  min-height: 108px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.homepage-trust-grid a strong {
  color: var(--green-dark);
}

.homepage-trust-grid a span {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 920px) {
  .homepage-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .nav-more-panel {
    right: auto;
    left: 0;
    min-width: min(260px, calc(100vw - 40px));
  }

  .homepage-trust-grid {
    grid-template-columns: 1fr;
  }
}

.breadcrumb-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.breadcrumb-bar a {
  color: var(--green-dark);
}

.breadcrumb-bar small {
  color: #98a49b;
  font-size: 0.8rem;
}

.search-shortcut-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.search-shortcut-row button {
  min-height: 38px;
  padding: 0 12px;
  color: var(--green-dark);
  background: linear-gradient(135deg, #fffdf8, #edf4ee);
  border: 1px solid #d7e1d8;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.search-shortcut-row button:hover {
  border-color: rgba(47, 104, 76, 0.42);
  transform: translateY(-1px);
}

main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 368px);
  align-items: stretch;
  min-height: 560px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 8px;
  background: #1c271f;
  box-shadow: var(--shadow);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 25, 18, 0.94) 0%, rgba(15, 25, 18, 0.72) 43%, rgba(15, 25, 18, 0.18) 100%),
    url("media/bellwright-header.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  max-width: 680px;
  align-self: center;
  padding: clamp(34px, 6vw, 72px);
  color: #fff;
}

.hero-rail {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(26px, 4vw, 38px) clamp(22px, 3vw, 30px) clamp(26px, 4vw, 38px) 0;
}

.hero-rail-card,
.hero-rail-note {
  display: grid;
  gap: 12px;
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.hero-rail-note {
  background: rgba(24, 33, 28, 0.5);
}

.hero-rail-card h2 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
}

.hero-rail-links {
  display: grid;
  gap: 10px;
}

.hero-rail-links a {
  display: grid;
  gap: 4px;
  padding: 12px 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.hero-rail-links span,
.hero-rail-note span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.problem-intake-panel {
  background:
    radial-gradient(circle at 16% 18%, rgba(47, 104, 76, 0.08), transparent 220px),
    linear-gradient(135deg, #fbfaf4, #eef4ee);
}

.homepage-intake-panel {
  background:
    radial-gradient(circle at 84% 18%, rgba(185, 137, 56, 0.14), transparent 220px),
    linear-gradient(135deg, #fbfaf5, #eef4ee);
}

.resources-intake-panel {
  background:
    radial-gradient(circle at 82% 16%, rgba(110, 127, 134, 0.12), transparent 240px),
    linear-gradient(135deg, #f7f9f9, #edf4ef);
}

.guides-intake-panel {
  background:
    radial-gradient(circle at 16% 18%, rgba(47, 104, 76, 0.1), transparent 240px),
    radial-gradient(circle at 86% 20%, rgba(185, 137, 56, 0.1), transparent 220px),
    linear-gradient(135deg, #fbfaf6, #f0f4ee);
}

.villages-control-panel {
  background:
    radial-gradient(circle at 82% 18%, rgba(88, 124, 74, 0.14), transparent 240px),
    linear-gradient(135deg, #f8faf6, #edf3ef);
}

.review-log-panel {
  background:
    radial-gradient(circle at 14% 16%, rgba(47, 104, 76, 0.08), transparent 240px),
    linear-gradient(135deg, #fbfaf5, #f1f4ef);
}

.review-log-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.review-log-grid article {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(212, 219, 210, 0.96);
  border-radius: 8px;
}

.review-log-grid span {
  color: var(--muted);
  line-height: 1.6;
}

.hero-rail-links a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.45rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.04rem;
}

.hero-copy {
  max-width: 58ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
  line-height: 1.65;
}

.hero-actions,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.filter-row .search-box {
  flex: 1 1 210px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.quick-search,
.layout-grid,
.content-grid,
.need-section,
.media-section,
.route-section,
.faq-section {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.section-heading {
  display: grid;
  gap: 6px;
}

.quick-search {
  grid-template-columns: 1fr minmax(260px, 420px);
  align-items: end;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.player-intent-board,
.tool-strip,
.resource-tool-hero,
.map-tool-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.player-intent-board {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  align-items: stretch;
  padding: clamp(20px, 3vw, 30px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(22, 31, 25, 0.96), rgba(113, 82, 37, 0.86)),
    url("media/bellwright-wood-route.jpg") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intent-lead {
  display: grid;
  align-content: center;
  gap: 10px;
}

.intent-lead h2,
.resource-tool-hero h2,
.map-tool-main h2 {
  color: inherit;
}

.intent-lead p,
.tool-copy p,
.map-tool-main p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.intent-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.intent-links a,
.tool-strip a,
.tool-actions-grid a,
.map-tool-grid a {
  display: grid;
  gap: 7px;
  min-height: 104px;
  padding: 16px;
  border-radius: 8px;
}

.intent-links a {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.intent-links span,
.tool-strip small,
.tool-actions-grid span,
.map-tool-grid span,
.map-tool-grid small {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

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

.tool-strip a {
  color: #fff;
  background: linear-gradient(135deg, #203523, #617f3f);
}

.tool-strip a:nth-child(2) {
  background: linear-gradient(135deg, #293a40, #7c8e94);
}

.tool-strip a:nth-child(3) {
  background: linear-gradient(135deg, #633b22, #b96c3f);
}

.tool-strip span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #1a251e;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  font-weight: 900;
}

.resource-tool-hero {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  padding: clamp(22px, 4vw, 34px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 33, 27, 0.96), rgba(47, 104, 76, 0.82)),
    url("media/bellwright-field-crafting.jpg") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.tool-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tool-actions-grid a {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.database-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.result-count {
  margin: 0;
  padding: 8px 12px;
  color: var(--green-dark);
  background: #eef5ef;
  border: 1px solid #d3e1d7;
  border-radius: 999px;
  font-weight: 800;
}

.resource-filter-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.resource-filter-stats article {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 16px;
  background: linear-gradient(135deg, #fffaf1, #eef5ef);
  border: 1px solid #dde7df;
  border-radius: 8px;
}

.resource-filter-stats span {
  color: var(--green-dark);
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
}

.resource-filter-stats p {
  margin: 0;
  color: var(--muted);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.filter-chips button {
  min-height: 36px;
  padding: 0 12px;
  color: var(--green-dark);
  background: #f7fbf2;
  border: 1px solid #d3e1d7;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.filter-chips button.active,
.filter-chips button:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

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

.map-tool-main {
  grid-column: span 2;
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 250px;
  padding: clamp(22px, 4vw, 34px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 33, 27, 0.96), rgba(49, 79, 54, 0.86)),
    url("media/bellwright-settlement.jpg") center / cover;
  border-radius: 8px;
}

.map-tool-grid a {
  position: relative;
  min-height: 250px;
  color: #fff;
  align-content: end;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(18, 25, 19, 0.18), rgba(18, 25, 19, 0.86)),
    var(--route-card-image, url("media/bellwright-wood-route.jpg")) center / cover no-repeat,
    linear-gradient(135deg, #203523, #6f934d);
  box-shadow: var(--shadow);
}

.map-tool-grid a:nth-of-type(2) {
  --route-card-image: url("media/bellwright-herb-route.jpg");
}

.map-tool-grid a:nth-of-type(3) {
  --route-card-image: url("media/bellwright-river-travel.jpg");
}

.map-tool-grid a:nth-of-type(4) {
  --route-card-image: url("media/bellwright-settlement.jpg");
}

.map-tool-grid a:nth-of-type(5) {
  --route-card-image: url("media/bellwright-mining-camp.jpg");
}

.map-tool-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.28));
}

.map-tool-grid a > * {
  position: relative;
  z-index: 1;
}

.tool-page-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 22px;
  padding: clamp(22px, 4vw, 34px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 33, 27, 0.94), rgba(86, 102, 57, 0.84)),
    url("media/bellwright-herb-route.jpg") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.tool-page-copy {
  display: grid;
  align-content: center;
  gap: 10px;
}

.tool-page-copy h2 {
  color: inherit;
}

.tool-page-copy p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.tool-summary-grid,
.tool-choice-grid,
.tool-checklist-grid {
  display: grid;
  gap: 12px;
}

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

.tool-summary-grid a,
.tool-choice-grid a,
.tool-checklist-grid a {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 16px;
  border-radius: 8px;
}

.tool-summary-grid a {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.tool-summary-grid span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.tool-choice-grid,
.tool-checklist-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.tool-choice-grid a,
.tool-checklist-grid a {
  color: var(--ink);
  background: linear-gradient(135deg, #fbfaf6, #eef5ef);
  border: 1px solid var(--line);
}

.tool-choice-grid a:nth-child(2n),
.tool-checklist-grid a:nth-child(2n) {
  background: linear-gradient(135deg, #fff8e8, #f5e3c2);
}

.tool-choice-grid a:nth-child(3n),
.tool-checklist-grid a:nth-child(3n) {
  background: linear-gradient(135deg, #eef3f4, #dfeaec);
}

.tool-choice-grid span,
.tool-checklist-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.tool-choice-grid small,
.tool-checklist-grid small {
  color: var(--green-dark);
  font-weight: 800;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.tool-form,
.tool-result-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tool-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.tool-form input,
.tool-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
}

.tool-result-card {
  align-content: start;
  background: linear-gradient(135deg, #eef5ef, #f7f1df);
}

.tool-result-card strong {
  font-size: 1.15rem;
}

.tool-result-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tool-result-list li {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(90, 107, 82, 0.22);
  border-radius: 8px;
}

.tool-result-list b {
  color: var(--green-dark);
  font-size: 1.2rem;
}

.tool-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tool-link-row a {
  padding: 9px 12px;
  color: var(--green-dark);
  background: #eef5ef;
  border: 1px solid #d3e1d7;
  border-radius: 999px;
  font-weight: 800;
}

.tool-data-table a {
  font-weight: 800;
}

.search-box input,
.filter-row input,
.filter-row select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
}

.hub-search-panel {
  display: grid;
  gap: 16px;
}

.hub-search-head {
  display: grid;
  gap: 8px;
}

.hub-search-head p,
.hub-search-status,
.hub-search-empty {
  color: var(--muted);
}

.hub-search-status {
  margin: 0;
  font-weight: 700;
}

.map-filter-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.map-filter-stats article {
  display: grid;
  gap: 6px;
  min-height: 108px;
  padding: 14px;
  background: linear-gradient(135deg, #f2f7ef, #fff8e9);
  border: 1px solid #dce5d7;
  border-radius: 8px;
}

.map-filter-stats span {
  color: var(--green-dark);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

.map-filter-stats small {
  color: var(--muted);
  line-height: 1.4;
}

.map-filter-summary {
  margin: 0;
}

.guide-filter-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.guide-filter-stats article {
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 15px;
  background: linear-gradient(135deg, #f5f1e8, #eef5ee);
  border: 1px solid #dddccf;
  border-radius: 8px;
}

.guide-filter-stats span {
  color: var(--green-dark);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.guide-filter-stats small {
  color: var(--muted);
  line-height: 1.4;
}

.guide-filter-summary {
  margin: 0;
}

.hub-search-empty {
  margin: 0;
  padding: 14px 16px;
  background: #fbfaf6;
  border: 1px dashed #c9d2c6;
  border-radius: 8px;
}

.search-shortcut-row button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-color: rgba(24, 54, 39, 0.26);
}

.resource-preset-row {
  margin-top: 18px;
}

.resource-preset-row button.is-active {
  color: #fff;
  background: linear-gradient(135deg, #68412b, #a86d3a);
  border-color: rgba(75, 42, 18, 0.24);
}

.resource-filter-summary {
  margin: 12px 0 4px;
}

.layout-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.content-grid {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.resource-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
}

.resource-hero-copy,
.resource-hero-image {
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.resource-hero-copy {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 44px);
}

.resource-hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 5.4vw, 4.9rem);
}

.resource-hero-copy p {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.65;
}

.resource-hero-image {
  position: relative;
  min-height: 360px;
  background: #17211b;
}

.resource-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.resource-hero-image figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px;
  color: #fff;
  background: rgba(13, 19, 15, 0.78);
  border-radius: 7px;
  font-size: 0.92rem;
  font-weight: 700;
}

.panel,
.article,
.sidebar {
  padding: clamp(20px, 3vw, 30px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article {
  line-height: 1.7;
}

.article p {
  color: var(--muted);
}

.article ul {
  padding-left: 22px;
}

.answer-box {
  margin: 18px 0;
  padding: 16px;
  background: #eef5ef;
  border-left: 4px solid var(--green);
  border-radius: 7px;
}

.media-callout {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin: 22px 0;
  overflow: hidden;
  background: #f4f6ef;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.media-callout img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.media-callout div {
  padding: 18px 18px 18px 0;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.use-grid div,
.use-grid a,
.fact-list div,
.fact-list a {
  display: grid;
  gap: 6px;
  padding: 14px;
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
}

.use-grid span,
.fact-list span {
  color: var(--muted);
}

.use-grid a:hover,
.fact-list a:hover {
  box-shadow: 0 10px 22px rgba(23, 33, 27, 0.08);
  transform: translateY(-1px);
}

.step-list {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.step-list li {
  padding-left: 4px;
}

.inline-faq {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.inline-faq details {
  padding: 14px 16px;
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.inline-faq summary {
  cursor: pointer;
  font-weight: 800;
}

.route-detail-grid,
.decision-table,
.guide-rank-table {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

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

.route-detail-grid a,
.decision-table div,
.decision-table a,
.guide-rank-table div,
.guide-rank-table a {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 16px;
  color: var(--ink);
  background: linear-gradient(135deg, #fbfaf6, #eef5ef);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.route-detail-grid a:nth-child(2n),
.decision-table div:nth-child(2n),
.decision-table a:nth-child(2n),
.guide-rank-table div:nth-child(2n),
.guide-rank-table a:nth-child(2n) {
  background: linear-gradient(135deg, #fff8e8, #f5e3c2);
}

.route-detail-grid a:nth-child(3n),
.decision-table div:nth-child(3n),
.decision-table a:nth-child(3n),
.guide-rank-table div:nth-child(3n),
.guide-rank-table a:nth-child(3n) {
  background: linear-gradient(135deg, #eef3f4, #dfeaec);
}

.route-detail-grid span,
.decision-table span,
.guide-rank-table span {
  color: var(--muted);
  line-height: 1.55;
}

.route-detail-grid small {
  color: var(--green-dark);
  font-weight: 800;
}

.decision-table a:hover,
.guide-rank-table a:hover {
  box-shadow: 0 12px 24px rgba(23, 33, 27, 0.08);
  transform: translateY(-1px);
}

.update-note {
  margin-top: 18px;
  padding: 12px 14px;
  color: var(--muted);
  background: #fbfaf6;
  border: 1px dashed #c9d2c6;
  border-radius: 8px;
  line-height: 1.55;
}

.practical-next-step-panel {
  width: 100%;
  padding: 16px 18px;
  background:
    radial-gradient(circle at 84% 18%, rgba(47, 104, 76, 0.07), transparent 240px),
    linear-gradient(135deg, #fbfaf6, #f0f4ef);
}

body > .panel {
  width: min(1180px, calc(100% - 36px));
  margin: 18px auto 0;
}

body > .practical-next-step-panel {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.practical-next-step-panel h2 {
  margin-bottom: 8px;
}

.practical-next-step-panel > p {
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.55;
}

.practical-next-step-table {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.practical-next-step-table div,
.practical-next-step-table a {
  min-height: 76px;
  gap: 6px;
  padding: 14px;
  align-content: start;
}

.practical-next-step-table a,
.practical-next-step-table div a {
  color: var(--green-dark);
  font-weight: 800;
}

.home-update {
  max-width: 1180px;
  margin: 18px auto 0;
}

.page-trust-panel {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: clamp(18px, 3vw, 26px);
  background: linear-gradient(135deg, #fbfaf6, #eef3ec);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-meta-strip span {
  padding: 7px 10px;
  color: var(--green-dark);
  background: rgba(47, 104, 76, 0.08);
  border: 1px solid rgba(47, 104, 76, 0.14);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.trust-signal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust-signal-grid article,
.trust-signal-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 160px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-signal-grid article {
  background:
    linear-gradient(135deg, rgba(20, 32, 24, 0.96), rgba(61, 111, 69, 0.84)),
    url("media/bellwright-river-travel.jpg") center / cover;
  color: #fff;
  border: 0;
}

.trust-signal-grid article h2,
.trust-signal-grid article p,
.trust-signal-grid article .eyebrow {
  color: #fff;
}

.trust-signal-card strong {
  color: var(--text);
  font-size: 1rem;
}

.trust-signal-card span {
  color: var(--muted);
  line-height: 1.6;
}

.trust-next-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust-next-links a {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 16px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-next-links a:nth-child(2) {
  background: linear-gradient(135deg, #fff9ea, #fff0cf);
}

.trust-next-links a:nth-child(3) {
  background: linear-gradient(135deg, #f6faf7, #eef5ef);
}

.trust-next-links span {
  color: var(--muted);
  line-height: 1.58;
}

.resource-trip-planner {
  display: grid;
  gap: 12px;
}

.resource-trip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.resource-trip-grid div {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 148px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.resource-trip-grid strong {
  color: var(--green-dark);
}

.resource-trip-grid span {
  color: var(--muted);
  line-height: 1.58;
}

.field-notes-panel {
  display: grid;
  gap: 12px;
}

.guide-caseboard {
  padding: clamp(16px, 2.4vw, 24px);
  background:
    radial-gradient(circle at 16% 18%, rgba(47, 104, 76, 0.08), transparent 220px),
    linear-gradient(135deg, #faf8f1, #eef4ee);
  border: 1px solid rgba(212, 219, 210, 0.96);
  border-radius: 8px;
}

.guide-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.guide-case-grid article {
  display: grid;
  gap: 10px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(214, 221, 212, 0.96);
  border-radius: 8px;
}

.guide-case-grid article span {
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.guide-case-grid article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.guide-case-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guide-case-links a {
  padding: 9px 12px;
  color: var(--green-dark);
  background: linear-gradient(135deg, #fffdf9, #edf4ee);
  border: 1px solid #d8e0d7;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.guide-case-links a:hover {
  border-color: rgba(47, 104, 76, 0.38);
  transform: translateY(-1px);
}

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

.field-notes-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 148px;
  padding: 16px;
  background: linear-gradient(135deg, #fbfaf6, #eef3ec);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.field-notes-grid strong {
  color: var(--text);
}

.field-notes-grid span {
  color: var(--muted);
  line-height: 1.62;
}

.fact-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 22px;
}

.wood-page {
  --wood-brown: #7b4a25;
  --wood-amber: #d49a45;
  --wood-moss: #3d6f45;
  --wood-forest: #142018;
  --wood-iron: #596268;
  --wood-cream: #fff6df;
  background:
    linear-gradient(180deg, #efe9d8 0%, #f7f5ee 38%, #eef3ec 100%);
}

.wood-page .site-header {
  background: rgba(250, 247, 238, 0.94);
}

.wood-hero {
  min-height: 560px;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--wood-forest);
  box-shadow: 0 24px 60px rgba(20, 32, 24, 0.22);
}

.wood-hero .resource-hero-copy {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(20, 32, 24, 0.98), rgba(61, 111, 69, 0.9)),
    linear-gradient(45deg, rgba(212, 154, 69, 0.26), transparent);
  border: 0;
}

.wood-hero .resource-hero-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.wood-hero .eyebrow {
  color: #ffd38c;
}

.wood-hero .resource-hero-image {
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.wood-hero .button.primary {
  background: var(--wood-amber);
  border-color: rgba(255, 255, 255, 0.14);
}

.wood-hero .button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.wood-stat-strip a {
  position: relative;
  min-height: 118px;
  overflow: hidden;
  color: #fff;
  border: 0;
}

.wood-stat-strip a span {
  color: rgba(255, 255, 255, 0.82);
}

.wood-stat-strip a::before {
  content: "";
  position: absolute;
  inset: auto 14px 14px auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.stat-forest {
  background: linear-gradient(135deg, #244b33, #5e8b4d);
}

.stat-build {
  background: linear-gradient(135deg, #70421f, #d0913c);
}

.stat-route {
  background: linear-gradient(135deg, #3d4f55, #789197);
}

.stat-help {
  background: linear-gradient(135deg, #6a4530, #b96c3f);
}

.wood-answer {
  color: #22321f;
  background: #fff1d0;
  border-left-color: var(--wood-amber);
}

.wood-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
  margin: 22px 0;
  padding: 22px;
  background: linear-gradient(135deg, #f7fbf2, #fff6df);
  border: 1px solid #d8dfc8;
  border-radius: 8px;
}

.route-map-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  color: #fff;
  background: linear-gradient(160deg, #203523, #7b4a25);
  border-radius: 8px;
}

.route-map-card span {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  font-weight: 800;
}

.wood-page .media-callout {
  background: linear-gradient(135deg, #17231a, #324a2b);
  border: 0;
}

.wood-page .media-callout h3,
.wood-page .media-callout p {
  color: #fff;
}

.wood-page .media-callout p {
  color: rgba(255, 255, 255, 0.78);
}

.wood-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.wood-gallery figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #17211b;
}

.wood-gallery img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.wood-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(18, 26, 20, 0.78);
  border-radius: 7px;
  font-weight: 800;
}

.wood-use-grid div,
.wood-use-grid a {
  min-height: 130px;
  color: #fff;
  border: 0;
}

.wood-use-grid div span,
.wood-use-grid a span {
  color: rgba(255, 255, 255, 0.8);
}

.use-building {
  background: linear-gradient(135deg, #70421f, #b66f32);
}

.use-crafting {
  background: linear-gradient(135deg, #2d5f45, #579b65);
}

.use-repair {
  background: linear-gradient(135deg, #596268, #87929a);
}

.use-worker {
  background: linear-gradient(135deg, #8b6a2e, #d49a45);
}

.wood-route-panel {
  margin: 24px 0;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(20, 32, 24, 0.94), rgba(61, 111, 69, 0.88)),
    url("media/bellwright-stone-quarry.avif") center / cover;
  border-radius: 8px;
}

.wood-route-panel .eyebrow {
  color: #ffd38c;
}

.wood-route-panel .step-list {
  margin-bottom: 0;
}

.wood-route-panel li {
  color: rgba(255, 255, 255, 0.9);
}

.wood-depth-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.wood-depth-panel div {
  display: grid;
  gap: 8px;
  min-height: 122px;
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, #2b1d13, #b97935);
  border-radius: 8px;
}

.wood-depth-panel div:nth-child(even) {
  background: linear-gradient(135deg, #203523, #6f934d);
}

.wood-depth-panel span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.wood-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.wood-method-grid > div {
  padding: clamp(20px, 3vw, 30px);
  background: #fffdf7;
  border: 1px solid #e4d3ad;
  border-radius: 8px;
}

.wood-method-grid > div:nth-child(2) {
  background: linear-gradient(135deg, #f7fbf2, #fff0cf);
}

.wood-method-grid p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.wood-visual-deck {
  display: grid;
  gap: 18px;
  margin: 24px 0;
  padding: clamp(22px, 4vw, 34px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(20, 32, 24, 0.94), rgba(123, 74, 37, 0.76)),
    url("media/bellwright-header.jpg") center / cover;
  border-radius: 8px;
}

.wood-visual-deck h2 {
  max-width: 15ch;
  color: #fff;
}

.wood-visual-deck p {
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.wood-mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.wood-mini-gallery figure {
  position: relative;
  min-height: 190px;
  margin: 0;
  overflow: hidden;
  background: #17211b;
  border-radius: 8px;
}

.wood-mini-gallery img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.wood-mini-gallery figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 9px 10px;
  color: #fff;
  background: rgba(18, 26, 20, 0.78);
  border-radius: 7px;
  font-weight: 800;
}

.wood-page .data-table th {
  color: #fff;
  background: #314f36;
}

.wood-page .data-table td {
  background: #fffdf7;
}

.wood-page .inline-faq details {
  background: #fff8e8;
  border-color: #e4d3ad;
}

.wood-sidebar {
  background: linear-gradient(180deg, #ffffff, #fff8e8);
}

.wood-sidebar .fact-list div,
.wood-sidebar .fact-list a {
  border: 0;
}

.wood-sidebar .fact-list div:nth-child(1),
.wood-sidebar .fact-list a:nth-child(1) {
  background: #e8f2e7;
}

.wood-sidebar .fact-list div:nth-child(2),
.wood-sidebar .fact-list a:nth-child(2) {
  background: #fff0cf;
}

.wood-sidebar .fact-list div:nth-child(3),
.wood-sidebar .fact-list a:nth-child(3) {
  background: #eceff0;
}

.wood-sidebar .fact-list div:nth-child(4),
.wood-sidebar .fact-list a:nth-child(4) {
  background: #f4e4d7;
}

.compact-title {
  display: none;
}

.enhanced-resource-page {
  background:
    linear-gradient(180deg, #f2efe3 0%, #f7f5ee 42%, #eef3ec 100%);
}

.resource-visual-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  min-height: 520px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.resource-visual-hero .visual-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(28px, 5vw, 58px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(14, 20, 16, 0.96), color-mix(in srgb, var(--resource-accent, #2f684c) 76%, #111 24%)),
    var(--resource-hero-image) center / cover;
}

.tone-food .resource-visual-hero .visual-copy,
.tone-herb .resource-visual-hero .visual-copy {
  background: linear-gradient(135deg, #30431e, #a77732);
}

.tone-ore .resource-visual-hero .visual-copy {
  background: linear-gradient(135deg, #1d2629, #69777d);
}

.tone-build .resource-visual-hero .visual-copy {
  background: linear-gradient(135deg, #3f2718, #9a6334);
}

.tone-fiber .resource-visual-hero .visual-copy {
  background: linear-gradient(135deg, #203523, #71924b);
}

.tone-animal .resource-visual-hero .visual-copy {
  background: linear-gradient(135deg, #4a2e21, #9a6b45);
}

.resource-visual-hero h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  color: #fff;
}

.resource-visual-hero p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.resource-opening {
  display: grid;
  gap: 18px;
}

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

.resource-opening-grid > div {
  min-height: 260px;
  padding: clamp(20px, 3vw, 30px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 24, 25, 0.94), rgba(18, 24, 25, 0.7)),
    var(--resource-hero-image) center / cover;
  border-radius: 8px;
}

.resource-opening-grid > div:nth-child(2) {
  background: linear-gradient(135deg, var(--resource-accent-dark, #203523), var(--resource-accent, #71924b));
}

.resource-opening-grid h2 {
  max-width: 13ch;
  color: #fff;
}

.resource-opening-grid p,
.resource-opening-grid li {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.guide-next-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.guide-next-steps a {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 16px;
  color: #17211b;
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.guide-next-steps a:nth-child(2) {
  background: #eef5ef;
}

.guide-next-steps a:nth-child(3) {
  background: #fff0cf;
}

.guide-next-steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  font-weight: 900;
  background: var(--resource-accent, #2f684c);
  border-radius: 999px;
}

.guide-next-steps small {
  color: var(--muted);
  line-height: 1.45;
}

.visual-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.visual-meta-row span,
.visual-meta-row a {
  padding: 8px 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  font-weight: 800;
}

.visual-meta-row a:hover {
  background: rgba(255, 255, 255, 0.23);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-1px);
}

.resource-code-mark {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  color: #fff;
  background: var(--resource-accent, #2f684c);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-weight: 900;
  font-size: 1.08rem;
}

.resource-hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--resource-accent-dark, #17211b);
  display: grid;
  grid-template-rows: minmax(0, 1fr) 120px;
}

.resource-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 19, 15, 0), rgba(13, 19, 15, 0.2)),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.2), transparent 30%);
  pointer-events: none;
}

.resource-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.resource-hero-media .hero-main-image {
  min-height: 400px;
}

.hero-thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  background: rgba(12, 18, 14, 0.9);
  position: relative;
  z-index: 1;
}

.hero-thumb-grid img {
  min-height: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 7px;
}

.resource-enhancement {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.resource-focus-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
  gap: 18px;
  align-items: stretch;
  padding: clamp(22px, 4vw, 36px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 24, 19, 0.94), rgba(17, 24, 19, 0.64)),
    var(--resource-hero-image) center / cover;
  border-radius: 8px;
}

.resource-focus-panel h2 {
  max-width: 14ch;
  color: #fff;
}

.resource-focus-panel p {
  max-width: 66ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.focus-card-stack {
  display: grid;
  gap: 10px;
  align-content: center;
}

.focus-card-stack span,
.focus-card-stack a {
  padding: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-weight: 800;
}

.resource-guide-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 18px;
  align-items: stretch;
  padding: clamp(22px, 4vw, 34px);
  background: linear-gradient(135deg, #fffdf7, #eef3ec);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.resource-guide-copy p,
.resource-guide-copy li {
  color: var(--muted);
  line-height: 1.65;
}

.resource-guide-copy > div:last-child {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.resource-guide-copy ul {
  margin-bottom: 0;
}

.resource-answer-dashboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.resource-answer-dashboard div,
.resource-answer-dashboard a {
  display: grid;
  gap: 8px;
  min-height: 122px;
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--resource-accent-dark, #17211b), var(--resource-accent, #2f684c));
  border-radius: 8px;
}

.resource-answer-dashboard div:nth-child(even),
.resource-answer-dashboard a:nth-child(even) {
  background: linear-gradient(135deg, #3f2718, #9a6334);
}

.resource-answer-dashboard span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.resource-answer-dashboard strong {
  line-height: 1.35;
}

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

.resource-method-grid > div,
.resource-method-grid > a {
  padding: clamp(20px, 3vw, 30px);
  color: var(--ink);
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.resource-method-grid > div:nth-child(2),
.resource-method-grid > a:nth-child(2) {
  background: linear-gradient(135deg, #f7fbf2, #fff0cf);
}

.resource-method-grid p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.resource-snapshot-grid a {
  display: grid;
  gap: 7px;
  min-height: 122px;
  padding: 16px;
  color: #fff;
  border-radius: 8px;
}

.resource-snapshot-grid a:nth-child(1) {
  background: linear-gradient(135deg, var(--resource-accent-dark, #203523), var(--resource-accent, #6f934d));
}

.resource-snapshot-grid a:nth-child(2) {
  background: linear-gradient(135deg, #62391f, #bd7b37);
}

.resource-snapshot-grid a:nth-child(3) {
  background: linear-gradient(135deg, #2e3b40, #7f8c92);
}

.resource-snapshot-grid a:nth-child(4) {
  background: linear-gradient(135deg, #3f2452, #9259b2);
}

.resource-snapshot-grid span {
  color: rgba(255, 255, 255, 0.8);
}

.enhanced-fact-grid,
.enhanced-list-grid,
.enhanced-use-row {
  display: grid;
  gap: 12px;
}

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

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

.enhanced-fact-grid div,
.enhanced-list-grid div,
.enhanced-use-row div,
.enhanced-fact-grid a,
.enhanced-list-grid a,
.enhanced-use-row a {
  display: grid;
  gap: 7px;
  min-height: 110px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.enhanced-fact-grid div:nth-child(4n + 1),
.enhanced-use-row div:nth-child(3n + 1),
.enhanced-fact-grid a:nth-child(4n + 1),
.enhanced-use-row a:nth-child(3n + 1) {
  background: #eef5ef;
}

.enhanced-fact-grid div:nth-child(4n + 2),
.enhanced-use-row div:nth-child(3n + 2),
.enhanced-fact-grid a:nth-child(4n + 2),
.enhanced-use-row a:nth-child(3n + 2) {
  background: #fff0cf;
}

.enhanced-fact-grid div:nth-child(4n + 3),
.enhanced-use-row div:nth-child(3n + 3),
.enhanced-fact-grid a:nth-child(4n + 3),
.enhanced-use-row a:nth-child(3n + 3) {
  background: #f2e6dc;
}

.enhanced-fact-grid div:nth-child(4n + 4),
.enhanced-list-grid div,
.enhanced-fact-grid a:nth-child(4n + 4),
.enhanced-list-grid a {
  background: #e9eef0;
}

.enhanced-fact-grid span,
.enhanced-list-grid span,
.enhanced-use-row span {
  color: var(--muted);
}

.resource-image-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #16221a, #384e2f);
  border-radius: 8px;
}

.resource-timeline {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(135deg, var(--resource-accent-dark, #17211b), color-mix(in srgb, var(--resource-accent, #314f36) 78%, #111 22%));
  border-radius: 8px;
}

.resource-timeline div,
.resource-timeline a {
  display: grid;
  gap: 6px;
  padding: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border-radius: 8px;
}

.resource-timeline span {
  color: rgba(255, 255, 255, 0.78);
}

.focus-card-stack a:hover,
.guide-next-steps a:hover,
.resource-answer-dashboard a:hover,
.resource-method-grid > a:hover,
.enhanced-fact-grid a:hover,
.enhanced-list-grid a:hover,
.enhanced-use-row a:hover,
.resource-timeline a:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.resource-briefing-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.75fr);
  gap: 18px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 24, 25, 0.96), rgba(72, 82, 86, 0.82)),
    var(--resource-hero-image, url("media/bellwright-header.jpg")) center / cover;
  border-radius: 8px;
}

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

.resource-playstyle-panel > div {
  min-height: 220px;
  padding: clamp(20px, 3vw, 30px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 24, 25, 0.94), rgba(18, 24, 25, 0.7)),
    var(--resource-hero-image, url("media/bellwright-river-travel.jpg")) center / cover;
  border-radius: 8px;
}

.resource-playstyle-panel > div:nth-child(2) {
  background: linear-gradient(135deg, #4a2e21, #9a6b45);
}

.resource-playstyle-panel h2 {
  max-width: 18ch;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.resource-playstyle-panel p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.resource-briefing-panel h2 {
  max-width: 18ch;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.resource-briefing-panel p {
  max-width: 66ch;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

.briefing-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.briefing-checklist span,
.briefing-checklist a {
  min-height: 64px;
  padding: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-weight: 900;
}

.briefing-checklist a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.resource-route-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.resource-route-cards div,
.resource-route-cards a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--resource-accent-dark, #1d2629), var(--resource-accent, #78858b));
  border-radius: 8px;
}

.resource-route-cards div:nth-child(even),
.resource-route-cards a:nth-child(even) {
  background: linear-gradient(135deg, #3f2718, #9a6334);
}

.resource-route-cards span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.resource-route-focus {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.resource-route-focus a {
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 16px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--resource-accent-dark, #1d2629), var(--resource-accent, #78858b));
}

.resource-route-focus a:nth-child(2) {
  background: linear-gradient(135deg, #62391f, #bd7b37);
}

.resource-route-focus a:nth-child(3) {
  background: linear-gradient(135deg, #284047, #62818c);
}

.resource-route-focus span,
.resource-route-focus small {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.production-chain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  background: #f3f2ec;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.production-chain div,
.production-chain a {
  display: grid;
  gap: 7px;
  min-height: 128px;
  padding: 15px;
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.production-chain span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--resource-accent-dark, #1d2629);
  border-radius: 7px;
  font-weight: 900;
}

.production-chain small {
  color: var(--muted);
  line-height: 1.5;
}

.resource-route-cards a:hover,
.resource-route-focus a:hover,
.production-chain a:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.resource-gallery-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.resource-gallery-row figure {
  position: relative;
  min-height: 245px;
  margin: 0;
  overflow: hidden;
  background: #17211b;
  border-radius: 8px;
}

.resource-gallery-row figure:nth-child(1),
.resource-gallery-row figure:nth-child(2) {
  grid-column: span 3;
}

.resource-gallery-row figure:nth-child(n + 3) {
  grid-column: span 2;
}

.resource-gallery-row img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
}

.resource-gallery-row figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(13, 19, 15, 0.78);
  border-radius: 7px;
  font-weight: 800;
}

.resource-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 14px;
}

.resource-mosaic a {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  color: #fff;
  background: #17211b;
  border-radius: 8px;
}

.resource-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.resource-mosaic a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 19, 15, 0.05), rgba(13, 19, 15, 0.82));
}

.resource-mosaic span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  padding: 12px;
  color: #fff;
  background: rgba(13, 19, 15, 0.72);
  border-radius: 7px;
  font-weight: 900;
}

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

.related-visual-grid a {
  display: grid;
  gap: 8px;
  overflow: hidden;
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.related-visual-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.related-visual-grid strong,
.related-visual-grid span {
  padding: 0 14px;
}

.related-visual-grid span {
  padding-bottom: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.enhanced-faq details:nth-child(2) {
  background: #eef5ef;
}

.enhanced-faq details:nth-child(3) {
  background: #fff0cf;
}

.enhanced-faq details:nth-child(4) {
  background: #f2e6dc;
}

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

.resource-decision-grid a {
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 16px;
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.resource-decision-grid a:nth-child(1) {
  background: linear-gradient(135deg, #fbfaf6, #eef5ef);
}

.resource-decision-grid a:nth-child(2) {
  background: linear-gradient(135deg, #fbfaf6, #fff0cf);
}

.resource-decision-grid a:nth-child(3) {
  background: linear-gradient(135deg, #fbfaf6, #f2e6dc);
}

.resource-decision-grid small {
  color: var(--muted);
  line-height: 1.55;
}

.resource-player-needs {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  background:
    radial-gradient(circle at 12% 16%, color-mix(in srgb, var(--resource-accent, #6f934d) 26%, transparent), transparent 260px),
    linear-gradient(135deg, #fffdf7, #eef5ef);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.player-need-grid a {
  display: grid;
  gap: 8px;
  min-height: 174px;
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--resource-accent-dark, #17211b), var(--resource-accent, #6f934d));
  border-radius: 8px;
}

.player-need-grid a:nth-child(2) {
  background: linear-gradient(135deg, #62391f, #bd7b37);
}

.player-need-grid a:nth-child(3) {
  background: linear-gradient(135deg, #293a40, #7c8e94);
}

.player-need-grid a:nth-child(4) {
  background: linear-gradient(135deg, #4a2e21, #9a6b45);
}

.player-need-grid span,
.player-need-grid small {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.48;
}

.player-need-grid a:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.resource-image-band img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.resource-image-band div {
  padding: 22px 22px 22px 0;
}

.resource-image-band p {
  color: rgba(255, 255, 255, 0.78);
}

.sidebar-nav-box {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, #17211b, #2f684c);
  border-radius: 8px;
}

.sidebar-image-card {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sidebar-image-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.sidebar-image-card strong,
.sidebar-image-card span {
  padding: 0 14px;
}

.sidebar-image-card span {
  padding-bottom: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.sidebar-nav-box h2 {
  color: #fff;
}

.sidebar-nav-box a {
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  font-weight: 800;
}

.category-showcase {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 33, 27, 0.94), rgba(47, 104, 76, 0.84)),
    #17211b;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(23, 33, 27, 0.1);
}

.category-showcase.cat-map {
  background:
    linear-gradient(135deg, rgba(18, 24, 25, 0.94), rgba(49, 79, 54, 0.84)),
    #17211b;
}

.hub-visual-strip {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  margin: 18px 0;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #17211b, #37583f);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hub-visual-strip figure {
  min-height: 280px;
  margin: 0;
  background: #17211b;
}

.hub-visual-strip img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.hub-visual-strip > div {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(20px, 3vw, 34px) clamp(20px, 3vw, 34px) clamp(20px, 3vw, 34px) 0;
}

.hub-visual-strip h2 {
  max-width: 18ch;
  color: #fff;
}

.hub-visual-strip p {
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

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

.hub-link-grid a {
  display: grid;
  gap: 5px;
  min-height: 92px;
  padding: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.hub-link-grid span {
  color: rgba(255, 255, 255, 0.76);
}

.category-showcase img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 218px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.category-showcase div {
  padding: clamp(20px, 3vw, 34px) clamp(20px, 3vw, 34px) clamp(20px, 3vw, 34px) 0;
}

.category-showcase h2 {
  max-width: 18ch;
  color: #fff;
}

.category-showcase p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.cat-weapons {
  background: linear-gradient(135deg, #1f2527, #6b7379);
}

.cat-food {
  background: linear-gradient(135deg, #4a381b, #b57c2e);
}

.cat-buildings,
.cat-crafting {
  background: linear-gradient(135deg, #442719, #8c5a31);
}

.cat-villages {
  background: linear-gradient(135deg, #203523, #687d39);
}

.planner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin: 18px 0;
}

.planner-copy,
.route-board,
.upgrade-lanes {
  padding: clamp(20px, 3vw, 34px);
  border-radius: 8px;
}

.planner-copy {
  color: #fff;
  background: linear-gradient(135deg, #17211b, #314f36);
}

.weapon-planner .planner-copy {
  background: linear-gradient(135deg, #1d2629, #6b7379);
}

.planner-copy .eyebrow {
  color: #ffd38c;
}

.planner-copy h2 {
  max-width: 13ch;
  color: #fff;
}

.planner-copy p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

.route-board,
.upgrade-lanes {
  display: grid;
  gap: 12px;
  background: #fffdf7;
  border: 1px solid var(--line);
}

.route-board a,
.upgrade-lanes div,
.upgrade-lanes a {
  display: grid;
  gap: 6px;
  padding: 16px;
  color: #fff;
  border-radius: 8px;
}

.route-board a:nth-child(1) {
  background: linear-gradient(135deg, #3d6f45, #86a74f);
}

.route-board a:nth-child(2) {
  background: linear-gradient(135deg, #70421f, #c17d38);
}

.route-board a:nth-child(3) {
  background: linear-gradient(135deg, #3d4f55, #87929a);
}

.route-board a:nth-child(4) {
  background: linear-gradient(135deg, #8b6a2e, #d49a45);
}

.upgrade-lanes div:nth-child(1),
.upgrade-lanes a:nth-child(1) {
  background: linear-gradient(135deg, #6a4530, #b96c3f);
}

.upgrade-lanes div:nth-child(2),
.upgrade-lanes a:nth-child(2) {
  background: linear-gradient(135deg, #2c3438, #79868c);
}

.upgrade-lanes div:nth-child(3),
.upgrade-lanes a:nth-child(3) {
  background: linear-gradient(135deg, #6b5527, #d49a45);
}

.route-board span,
.upgrade-lanes span {
  color: rgba(255, 255, 255, 0.82);
}

.upgrade-lanes a:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.weapon-upgrade-lanes {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
  background:
    linear-gradient(135deg, rgba(255, 248, 232, 0.92), rgba(237, 242, 235, 0.88)),
    url("media/bellwright-farming-shift.avif") center / cover;
}

.weapon-upgrade-lanes a {
  min-height: 210px;
  align-content: start;
  gap: 10px;
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.weapon-upgrade-lanes small {
  width: fit-content;
  padding: 5px 9px;
  color: #1f2b25;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-weight: 900;
}

.weapon-upgrade-lanes strong {
  font-size: 1.08rem;
}

.weapon-upgrade-lanes ul {
  display: grid;
  gap: 6px;
  margin: 4px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.image-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.image-feature-grid a {
  position: relative;
  display: grid;
  min-height: 206px;
  overflow: hidden;
  border-radius: 8px;
  background: #17211b;
}

.image-feature-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-feature-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 22, 18, 0.05), rgba(16, 22, 18, 0.84));
}

.image-feature-grid span {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 16px;
  color: #fff;
  font-weight: 800;
}

.feature-list,
.resource-list,
.mini-list,
.keyword-grid,
.task-grid,
.answer-strip,
.route-steps,
.faq-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.route-pack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.route-pack-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.route-pack-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.route-pack-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.route-pack-body p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.route-pack-links {
  display: grid;
  gap: 10px;
}

.route-pack-links a {
  display: grid;
  gap: 4px;
  padding: 14px 15px;
  background: linear-gradient(135deg, #f8fbf8, #edf3ee);
  border: 1px solid #d8e0d8;
  border-radius: 8px;
}

.route-pack-links span {
  color: var(--muted);
  line-height: 1.55;
}

.route-pack-links a:hover {
  border-color: rgba(47, 104, 76, 0.38);
  transform: translateY(-1px);
}

.feature-list a,
.resource-card,
.mini-link,
.task-card,
.answer-strip a,
.route-steps a,
.faq-grid article {
  display: grid;
  gap: 7px;
  padding: 16px;
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.resource-card {
  align-content: start;
  overflow: hidden;
}

.card-thumb {
  width: calc(100% + 32px);
  height: 138px;
  margin: -16px -16px 4px;
  object-fit: cover;
  object-position: center;
  background: #17211b;
}

.resource-card:nth-child(5n + 2) .card-thumb {
  object-position: 35% center;
}

.resource-card:nth-child(5n + 3) .card-thumb {
  object-position: 65% center;
}

.resource-card:nth-child(5n + 4) .card-thumb {
  object-position: center 38%;
}

.resource-card:nth-child(5n + 5) .card-thumb {
  object-position: center 68%;
}

.resource-list.compact .card-thumb {
  height: 104px;
}

.guide-card .card-thumb {
  height: 128px;
}

.feature-list span,
.resource-card span,
.resource-card small,
.mini-link span,
.task-card span,
.answer-strip span,
.route-steps span,
.faq-grid p {
  color: var(--muted);
}

.resource-card:hover,
.feature-list a:hover,
.mini-link:hover,
.task-card:hover,
.answer-strip a:hover,
.route-steps a:hover {
  border-color: rgba(47, 104, 76, 0.45);
  box-shadow: 0 12px 24px rgba(23, 33, 27, 0.08);
  transform: translateY(-1px);
}

.resource-card:nth-child(6n + 1),
.feature-list a:nth-child(6n + 1) {
  background: linear-gradient(135deg, #fbfaf6, #eef5ef);
}

.resource-card:nth-child(6n + 2),
.feature-list a:nth-child(6n + 2) {
  background: linear-gradient(135deg, #fbfaf6, #fff0cf);
}

.resource-card:nth-child(6n + 3),
.feature-list a:nth-child(6n + 3) {
  background: linear-gradient(135deg, #fbfaf6, #f2e6dc);
}

.resource-card:nth-child(6n + 4) {
  background: linear-gradient(135deg, #fbfaf6, #e9eef0);
}

.resource-card:nth-child(6n + 5) {
  background: linear-gradient(135deg, #fbfaf6, #edf0e3);
}

.resource-card:nth-child(6n + 6) {
  background: linear-gradient(135deg, #fbfaf6, #f7ead7);
}

.resource-list {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

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

.task-card {
  min-height: 165px;
}

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

.answer-strip a {
  min-height: 92px;
}

.answer-strip small {
  color: var(--muted);
  line-height: 1.55;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-areas:
    "video video video video video video video video video video video video"
    "large large large large small-a small-a small-a small-a small-b small-b small-b small-b";
  gap: 16px;
  align-items: stretch;
}

.video-panel {
  grid-area: video;
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 16 / 6.5;
  min-height: 430px;
  background: #111813;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.video-panel img,
.video-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border: 0;
}

.video-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(13, 19, 15, 0.1), rgba(13, 19, 15, 0.82));
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 54px;
  padding: 0 18px;
  color: #fff;
  background: #d51d1d;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.video-cover strong,
.video-cover small {
  position: absolute;
  right: 24px;
  left: 24px;
  z-index: 1;
  color: #fff;
}

.video-cover strong {
  bottom: 62px;
  max-width: 680px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.video-cover small {
  bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.video-panel strong {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  color: #fff;
}

.video-panel small {
  position: absolute;
  right: 24px;
  bottom: 66px;
  left: 24px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
}

.image-tile {
  position: relative;
  display: grid;
  min-height: 240px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #17211b;
}

.media-grid .image-tile.large {
  grid-area: large;
  min-height: 240px;
}

.media-grid .image-tile:nth-child(3) {
  grid-area: small-a;
}

.media-grid .image-tile:nth-child(4) {
  grid-area: small-b;
}

.image-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 19, 15, 0.08), rgba(13, 19, 15, 0.82));
}

.image-tile span {
  display: block;
  position: relative;
  z-index: 1;
  align-self: end;
  margin: 0;
  padding: 16px;
  color: #fff;
  font-weight: 800;
  line-height: 1.35;
}

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

.route-steps a {
  min-height: 138px;
}

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

.faq-grid article h3 {
  margin: 0;
}

.faq-grid article a {
  width: fit-content;
  color: var(--green-dark);
  font-weight: 800;
}

.guide-visual-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 24px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 33, 27, 0.96), rgba(49, 79, 54, 0.86)),
    #17211b;
  border-radius: 8px;
}

.guide-visual-panel img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.guide-visual-panel div {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 22px 22px 22px 0;
}

.guide-visual-panel h2 {
  max-width: 14ch;
  color: #fff;
}

.guide-step-row {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px !important;
  padding: 0 !important;
}

.guide-step-row span,
.guide-step-row a {
  min-height: 54px;
  padding: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.35;
}

.guide-step-row a:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.guide-support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.guide-support-grid a {
  display: grid;
  gap: 7px;
  min-height: 108px;
  padding: 14px;
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.guide-support-grid a:nth-child(1) {
  background: linear-gradient(135deg, #fbfaf6, #eef5ef);
}

.guide-support-grid a:nth-child(2) {
  background: linear-gradient(135deg, #fbfaf6, #fff0cf);
}

.guide-support-grid a:nth-child(3) {
  background: linear-gradient(135deg, #fbfaf6, #f2e6dc);
}

.guide-support-grid a:nth-child(4) {
  background: linear-gradient(135deg, #fbfaf6, #e9eef0);
}

.guide-support-grid span,
.guide-practical-grid small {
  color: var(--muted);
  line-height: 1.55;
}

.guide-support-grid a:hover,
.guide-practical-grid a:hover {
  border-color: rgba(47, 104, 76, 0.45);
  box-shadow: 0 12px 24px rgba(23, 33, 27, 0.08);
  transform: translateY(-1px);
}

.guide-image-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.guide-image-band a {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  color: #fff;
  background: #17211b;
  border-radius: 8px;
}

.guide-image-band img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.guide-image-band a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 22, 18, 0.08), rgba(16, 22, 18, 0.84));
}

.guide-image-band span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  padding: 12px;
  color: #fff;
  background: rgba(16, 22, 18, 0.72);
  border-radius: 7px;
  font-weight: 900;
  line-height: 1.55;
}

.guide-practical-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.guide-practical-grid a {
  display: grid;
  gap: 7px;
  min-height: 104px;
  padding: 14px;
  color: #fff;
  background: linear-gradient(135deg, #2b1d13, #b97935);
  border: 1px solid transparent;
  border-radius: 8px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.guide-practical-grid a:nth-child(even) {
  background: linear-gradient(135deg, #203523, #6f934d);
}

.guide-practical-grid strong {
  color: #fff;
}

.guide-practical-grid small {
  color: rgba(255, 255, 255, 0.78);
}

.guide-action-checklist {
  margin: 20px 0;
  padding: 18px;
  background: linear-gradient(135deg, #fffdf8, #f1f5ee);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.media-section {
  padding: clamp(20px, 3vw, 30px);
  background:
    radial-gradient(circle at 18% 10%, rgba(185, 137, 56, 0.2), transparent 250px),
    radial-gradient(circle at 86% 18%, rgba(93, 124, 70, 0.18), transparent 260px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(239, 245, 234, 0.94));
  border: 1px solid #dfe4d7;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(23, 33, 27, 0.08);
}

.guide-section-lead {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.guide-section-lead h2 {
  max-width: none;
}

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

.guide-action-grid a {
  display: grid;
  gap: 9px;
  min-height: 126px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(47, 104, 76, 0.18);
  border-radius: 8px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.guide-action-grid a:hover,
.guide-mistake-strip a:hover {
  border-color: rgba(47, 104, 76, 0.42);
  box-shadow: 0 10px 22px rgba(23, 33, 27, 0.08);
  transform: translateY(-1px);
}

.guide-action-grid span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  background: linear-gradient(135deg, #2f684c, #7d9850);
  border-radius: 999px;
  font-weight: 900;
}

.guide-action-grid small {
  color: var(--muted);
  line-height: 1.55;
}

.guide-mistake-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.guide-mistake-strip a {
  display: grid;
  align-items: center;
  min-height: 68px;
  padding: 14px;
  background: linear-gradient(135deg, #f6eee7, #fff7ee);
  border: 1px solid rgba(160, 116, 70, 0.18);
  border-radius: 8px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.guide-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.guide-next-grid a {
  display: grid;
  gap: 7px;
  min-height: 88px;
  padding: 14px;
  color: #fff;
  border-radius: 8px;
}

.guide-next-grid a:nth-child(1) {
  background: linear-gradient(135deg, #203523, #6f934d);
}

.guide-next-grid a:nth-child(2) {
  background: linear-gradient(135deg, #62391f, #bd7b37);
}

.guide-next-grid a:nth-child(3) {
  background: linear-gradient(135deg, #2e3b40, #7f8c92);
}

.guide-next-grid span {
  color: rgba(255, 255, 255, 0.8);
}

.resource-list.compact {
  grid-template-columns: 1fr;
}

.tag {
  width: fit-content;
  padding: 4px 8px;
  color: var(--green-dark) !important;
  background: #e5efe8;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.keyword-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.keyword-grid span,
.keyword-grid a {
  display: block;
  padding: 12px 14px;
  color: var(--green-dark);
  background: linear-gradient(135deg, #eef5ef, #f7fbf2);
  border: 1px solid #d3e1d7;
  border-radius: 7px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(23, 33, 27, 0.06);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.keyword-grid span:nth-child(2n),
.keyword-grid a:nth-child(2n) {
  color: #5a3b12;
  background: linear-gradient(135deg, #fff7df, #f7ead0);
  border-color: #ead4a6;
}

.keyword-grid span:nth-child(3n),
.keyword-grid a:nth-child(3n) {
  color: #4a3224;
  background: linear-gradient(135deg, #f7ebe4, #f2dfd4);
  border-color: #e4c7b6;
}

.keyword-grid span:nth-child(4n),
.keyword-grid a:nth-child(4n) {
  color: #263b42;
  background: linear-gradient(135deg, #edf3f4, #dde8ea);
  border-color: #c8d8db;
}

.keyword-grid span:nth-child(5n),
.keyword-grid a:nth-child(5n) {
  color: #31451f;
  background: linear-gradient(135deg, #f0f4df, #e2ebca);
  border-color: #cad9a9;
}

.keyword-grid a:hover {
  border-color: rgba(47, 104, 76, 0.48);
  box-shadow: 0 14px 28px rgba(23, 33, 27, 0.11);
  transform: translateY(-2px);
}

.muted-copy {
  color: var(--muted);
  line-height: 1.65;
}

.section-action {
  margin-top: 18px;
}

.button.text-button {
  color: var(--green-dark);
  background: #eef5ef;
  border-color: #d3e1d7;
}

.page-title {
  position: relative;
  margin: 24px 0 18px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 56px);
  color: #fff;
  background: var(--page-title-background,
    linear-gradient(135deg, rgba(20, 32, 24, 0.96), rgba(49, 79, 54, 0.88)),
    url("media/bellwright-light-builds.avif") center / cover);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 18px 0 -6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--green-dark);
}

.breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: #a6afa6;
}

.breadcrumb span {
  color: var(--muted);
}

.page-title p {
  max-width: 72ch;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

.page-title .eyebrow {
  color: #ffd38c;
}

.page-title h1 {
  max-width: 15ch;
  font-size: clamp(2.15rem, 5vw, 4.4rem);
}

.page-title::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(247, 245, 238, 0), rgba(247, 245, 238, 0.26));
}

.need-solver-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.25fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  margin: 0 0 24px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(47, 104, 76, 0.2);
  border-left: 6px solid var(--green);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47, 104, 76, 0.1), rgba(185, 137, 56, 0.08)),
    #fffdf7;
  box-shadow: 0 16px 38px rgba(23, 33, 27, 0.08);
}

.guide-fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -4px 0 18px;
}

.guide-fact-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--green-dark);
  background: #eef5ef;
  border: 1px solid #d4e0d4;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.guide-fact-row span:first-child {
  color: #fff;
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.need-solver-panel h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
}

.need-solver-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.need-solver-grid a {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(23, 33, 27, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.82);
}

.need-solver-grid a:hover {
  border-color: rgba(47, 104, 76, 0.38);
  transform: translateY(-1px);
}

.need-solver-grid span {
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.need-solver-grid strong {
  line-height: 1.35;
}

.page-title-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 18px;
  align-items: stretch;
}

.page-title-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.page-title-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-title-chip-row a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.page-title-sidecard {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
  background: rgba(13, 20, 15, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.page-title-sidecard a {
  display: grid;
  gap: 6px;
  padding: 13px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.page-title-sidecard a strong,
.focus-card-stack a strong,
.hub-link-grid a strong {
  color: #fff;
}

.page-title-sidecard span,
.focus-card-stack a span {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

.resources-title {
  --page-title-background:
    linear-gradient(135deg, rgba(18, 29, 21, 0.95), rgba(46, 74, 52, 0.84)),
    url("media/bellwright-compact-storage.avif") center / cover;
}

.guides-title {
  --page-title-background:
    linear-gradient(135deg, rgba(27, 20, 14, 0.95), rgba(101, 64, 36, 0.84)),
    url("media/bellwright-worker-routine.avif") center / cover;
}

.map-title {
  --page-title-background:
    linear-gradient(135deg, rgba(16, 23, 24, 0.95), rgba(44, 72, 52, 0.84)),
    url("media/bellwright-river-travel.jpg") center / cover;
}

.resources-focus-panel .focus-card-stack a:nth-child(1) {
  background: rgba(97, 131, 73, 0.34);
}

.resources-focus-panel .focus-card-stack a:nth-child(2) {
  background: rgba(154, 99, 52, 0.34);
}

.resources-focus-panel .focus-card-stack a:nth-child(3) {
  background: rgba(81, 104, 141, 0.3);
}

.resources-focus-panel .focus-card-stack a:nth-child(4) {
  background: rgba(116, 92, 146, 0.28);
}

.resources-route-pack,
.guides-editorial-pack,
.map-route-pack {
  margin: 18px 0;
}

.resources-route-pack .route-pack-card,
.guides-editorial-pack .route-pack-card,
.map-route-pack .route-pack-card {
  background: #fffdf7;
}

.resources-route-pack .route-pack-card:nth-child(1) .route-pack-body {
  background: linear-gradient(180deg, #fffdf7, #eef5ef);
}

.resources-route-pack .route-pack-card:nth-child(2) .route-pack-body {
  background: linear-gradient(180deg, #fffaf0, #f3ece2);
}

.guides-editorial-pack .route-pack-card:nth-child(1) .route-pack-body {
  background: linear-gradient(180deg, #fffdf7, #eef4ee);
}

.guides-editorial-pack .route-pack-card:nth-child(2) .route-pack-body {
  background: linear-gradient(180deg, #fff8ef, #f0ebe3);
}

.food-route-pack .route-pack-card:nth-child(1) .route-pack-body {
  background: linear-gradient(180deg, #fff8ef, #f4ebe0);
}

.food-route-pack .route-pack-card:nth-child(2) .route-pack-body {
  background: linear-gradient(180deg, #fffdf7, #eef4e8);
}

.food-planner .planner-copy {
  background: linear-gradient(135deg, #553418, #b57c2e);
}

.food-title {
  --page-title-background:
    linear-gradient(135deg, rgba(49, 31, 18, 0.95), rgba(148, 99, 44, 0.82)),
    url("media/bellwright-farm-harvest.jpg") center / cover;
}

.food-visual-strip {
  background: linear-gradient(135deg, #3f2918, #7e6331);
}

.weapons-title {
  --page-title-background:
    linear-gradient(135deg, rgba(22, 27, 29, 0.95), rgba(88, 97, 104, 0.82)),
    url("media/bellwright-mining-camp.jpg") center / cover;
}

.weapons-visual-strip {
  background: linear-gradient(135deg, #222b30, #566168);
}

.crafting-title {
  --page-title-background:
    linear-gradient(135deg, rgba(55, 34, 20, 0.95), rgba(120, 83, 47, 0.82)),
    url("media/bellwright-field-crafting.jpg") center / cover;
}

.crafting-visual-strip {
  background: linear-gradient(135deg, #4a301d, #7a5b33);
}

.tools-title {
  --page-title-background:
    linear-gradient(135deg, rgba(25, 33, 30, 0.95), rgba(83, 97, 81, 0.82)),
    url("media/bellwright-compact-storage.avif") center / cover;
}

.tools-visual-strip {
  background: linear-gradient(135deg, #24312a, #54675a);
}

.buildings-title {
  --page-title-background:
    linear-gradient(135deg, rgba(43, 26, 16, 0.95), rgba(122, 82, 45, 0.84)),
    url("media/bellwright-settlement.jpg") center / cover;
}

.building-visual-strip {
  background: linear-gradient(135deg, #352013, #6b4b2f);
}

.villages-title {
  --page-title-background:
    linear-gradient(135deg, rgba(26, 39, 19, 0.95), rgba(84, 118, 57, 0.82)),
    url("media/bellwright-river-travel.jpg") center / cover;
}

.villages-visual-strip {
  background: linear-gradient(135deg, #22361f, #5c7b42);
}

.building-route-pack .route-pack-card:nth-child(1) .route-pack-body {
  background: linear-gradient(180deg, #fffdf7, #f0f3ea);
}

.building-route-pack .route-pack-card:nth-child(2) .route-pack-body {
  background: linear-gradient(180deg, #fff8ef, #ede6dd);
}

.building-planner .planner-copy {
  background: linear-gradient(135deg, #50311d, #8c5a31);
}

.weapons-route-pack {
  margin: 18px 0;
}

.weapons-route-pack .route-pack-card:nth-child(1) .route-pack-body {
  background: linear-gradient(180deg, #fffdf7, #edf2ea);
}

.weapons-route-pack .route-pack-card:nth-child(2) .route-pack-body {
  background: linear-gradient(180deg, #f7faf9, #e7ecec);
}

.crafting-route-pack {
  margin: 18px 0;
}

.crafting-route-pack .route-pack-card:nth-child(1) .route-pack-body {
  background: linear-gradient(180deg, #fffdf7, #f0f2e8);
}

.crafting-route-pack .route-pack-card:nth-child(2) .route-pack-body {
  background: linear-gradient(180deg, #fff8ef, #ece5dd);
}

.crafting-planner .planner-copy {
  background: linear-gradient(135deg, #5a391f, #9d6b3c);
}

.tools-route-pack {
  margin: 18px 0;
}

.tools-route-pack .route-pack-card:nth-child(1) .route-pack-body {
  background: linear-gradient(180deg, #fffdf7, #edf2eb);
}

.tools-route-pack .route-pack-card:nth-child(2) .route-pack-body {
  background: linear-gradient(180deg, #f7faf9, #e8ece9);
}

.villages-route-pack {
  margin: 18px 0;
}

.villages-route-pack .route-pack-card:nth-child(1) .route-pack-body {
  background: linear-gradient(180deg, #fffdf7, #edf4e7);
}

.villages-route-pack .route-pack-card:nth-child(2) .route-pack-body {
  background: linear-gradient(180deg, #fff8ef, #ece7de);
}

.villages-planner .planner-copy {
  background: linear-gradient(135deg, #2f4824, #6c8a47);
}

.map-route-pack .route-pack-card:nth-child(1) .route-pack-body {
  background: linear-gradient(180deg, #fffdf7, #eef4ee);
}

.map-route-pack .route-pack-card:nth-child(2) .route-pack-body {
  background: linear-gradient(180deg, #f7faf8, #e7ece9);
}

.resources-route-pack .route-pack-links a strong,
.guides-editorial-pack .route-pack-links a strong,
.map-route-pack .route-pack-links a strong {
  color: var(--ink);
}

.resource-decision-panel .decision-table a:nth-child(1),
.resources-next-panel .decision-table a:nth-child(1) {
  background: linear-gradient(135deg, #eef5ef, #f7fbf2);
}

.resource-decision-panel .decision-table a:nth-child(2),
.resources-next-panel .decision-table a:nth-child(2) {
  background: linear-gradient(135deg, #fff8e8, #f5e3c2);
}

.resource-decision-panel .decision-table a:nth-child(3),
.resources-next-panel .decision-table a:nth-child(3) {
  background: linear-gradient(135deg, #eef3f4, #dfeaec);
}

.resource-decision-panel .decision-table a:nth-child(4),
.resources-next-panel .decision-table a:nth-child(4) {
  background: linear-gradient(135deg, #f8f0e7, #f3e5d5);
}

.map-visual-strip {
  background: linear-gradient(135deg, #152224, #365340);
}

.data-table {
  width: 100%;
  margin: 18px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.data-table th,
.data-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.data-table th {
  background: #eef0e9;
}

.skill-checklist-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 16px 0 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.skill-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.skill-check-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  min-height: 78px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
  cursor: pointer;
}

.skill-check-item input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #314f36;
}

.skill-check-item span {
  display: grid;
  gap: 4px;
}

.skill-check-item small {
  color: var(--muted);
  line-height: 1.45;
}

.skill-check-item.is-complete {
  border-color: #93a98d;
  background: #f0f5eb;
}

@media (max-width: 760px) {
  .skill-checklist-grid {
    grid-template-columns: 1fr;
  }

  .skill-checklist-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

.page-quick-nav {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  margin: 18px 0;
  padding: clamp(18px, 3vw, 26px);
  background: linear-gradient(135deg, #fffdf8, #edf4ee);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.page-quick-nav-copy {
  display: grid;
  align-content: center;
  gap: 8px;
}

.page-quick-nav-copy h2 {
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
}

.quick-nav-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.quick-nav-links a {
  display: grid;
  gap: 6px;
  min-height: 88px;
  padding: 14px;
  background: #fff;
  border: 1px solid #d7e1d8;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(23, 33, 27, 0.06);
}

.quick-nav-links a span {
  color: var(--muted);
  line-height: 1.45;
}

.quick-nav-links a:hover {
  border-color: rgba(47, 104, 76, 0.42);
  transform: translateY(-1px);
}

.crosslink-rail {
  display: grid;
  grid-template-columns: minmax(240px, 0.5fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  width: min(1180px, calc(100% - 36px));
  margin: 28px auto 0;
  padding: clamp(18px, 3vw, 28px);
  background: linear-gradient(135deg, #fffdf8, #edf4ee);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(23, 33, 27, 0.06);
}

.crosslink-rail-copy {
  display: grid;
  align-content: center;
  gap: 8px;
}

.crosslink-rail-copy p:last-child {
  color: var(--muted);
  line-height: 1.6;
}

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

.crosslink-rail-grid a {
  display: grid;
  gap: 7px;
  min-height: 112px;
  padding: 16px;
  background: #fff;
  border: 1px solid #d7e1d8;
  border-radius: 8px;
}

.crosslink-rail-grid a span {
  color: var(--muted);
  line-height: 1.45;
}

.crosslink-rail-grid a:hover {
  border-color: rgba(47, 104, 76, 0.42);
  transform: translateY(-1px);
}

.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-route-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 14px;
  padding: clamp(18px, 3vw, 28px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 33, 27, 0.96), rgba(111, 147, 77, 0.84)),
    url("media/bellwright-wood-route.jpg") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.footer-route-lead {
  display: grid;
  align-content: center;
  gap: 8px;
}

.footer-route-lead h2 {
  color: #fff;
  font-size: clamp(1.3rem, 2.7vw, 1.95rem);
}

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

.footer-route-grid a {
  display: grid;
  gap: 7px;
  min-height: 108px;
  padding: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.footer-route-grid a span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.footer-route-grid a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(5, minmax(132px, 0.72fr));
  align-items: start;
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(24px, 4vw, 38px);
  background: #17211b;
  border-radius: 8px 8px 0 0;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand .brand-mark {
  background: var(--green);
}

.footer-brand p {
  max-width: 46ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 1rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px clamp(18px, 4vw, 30px);
  color: rgba(255, 255, 255, 0.72);
  background: #101712;
  border-radius: 0 0 8px 8px;
}

.footer-bottom a {
  color: #fff;
  font-weight: 800;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.empty-state {
  color: var(--muted);
}

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

@media (max-width: 820px) {
  .site-header,
  .quick-search,
  .layout-grid,
  .content-grid,
  .player-intent-board,
  .intent-links,
  .tool-strip,
  .resource-tool-hero,
  .tool-actions-grid,
  .tool-page-hero,
  .tool-summary-grid,
  .tool-choice-grid,
  .tool-checklist-grid,
  .calculator-layout,
  .tool-result-list,
  .map-tool-grid,
  .resource-hero,
  .wood-section,
  .wood-gallery,
  .wood-mini-gallery,
  .wood-depth-panel,
  .wood-method-grid,
  .task-grid,
  .answer-strip,
  .media-grid,
  .route-pack-grid,
  .route-steps,
  .faq-grid,
  .media-callout,
  .use-grid,
  .hub-visual-strip,
  .hub-link-grid,
  .guide-visual-panel,
  .guide-support-grid,
  .guide-step-row,
  .guide-image-band,
  .guide-practical-grid,
  .guide-case-grid,
  .guide-action-grid,
  .guide-mistake-strip,
  .guide-next-grid,
  .page-quick-nav,
  .quick-nav-links,
  .planner-grid,
  .image-feature-grid,
  .route-detail-grid,
  .resource-focus-panel,
  .resource-guide-copy,
  .resource-answer-dashboard,
  .resource-filter-stats,
  .guide-filter-stats,
  .map-filter-stats,
  .resource-method-grid,
  .resource-playstyle-panel,
  .resource-briefing-panel,
  .briefing-checklist,
  .resource-route-cards,
  .resource-route-focus,
  .production-chain,
  .resource-snapshot-grid,
  .resource-opening-grid,
  .guide-next-steps,
  .enhanced-fact-grid,
  .enhanced-list-grid,
  .enhanced-use-row,
  .resource-decision-grid,
  .resource-image-band,
  .resource-gallery-row,
  .resource-mosaic,
  .related-visual-grid,
  .player-need-grid,
  .homepage-pulse-grid,
  .hub-pulse-grid,
  .homepage-snapshot-layout,
  .hub-studio-layout,
  .review-log-grid,
  .footer-route-band,
  .footer-route-grid,
  .footer-main,
  .category-showcase {
    grid-template-columns: 1fr;
  }

  .map-tool-main {
    grid-column: auto;
  }

  .category-showcase div,
  .hub-visual-strip > div,
  .guide-visual-panel div,
  .resource-image-band div {
    padding: 0 18px 18px;
  }

  .homepage-snapshot-feature,
  .homepage-snapshot-head,
  .hub-studio-feature,
  .hub-studio-stack article {
    grid-template-columns: 1fr;
  }

  .homepage-snapshot-head img,
  .hub-studio-stack article img {
    min-height: 180px;
  }

  .page-title-layout {
    grid-template-columns: 1fr;
  }

  .media-callout div {
    padding: 0 16px 16px;
  }

  .media-grid {
    grid-template-areas: none;
  }

  .video-panel,
  .image-tile.large {
    grid-area: auto;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-rail {
    padding: 0 18px 18px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr;
  }

  .top-nav {
    justify-content: start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .top-nav a {
    white-space: nowrap;
  }

  .footer-bottom,
  .footer-bottom div {
    display: grid;
    gap: 10px;
  }

  .hero {
    min-height: 560px;
  }

  .resource-visual-hero,
  .resource-hero-media,
  .resource-hero-media img {
    min-height: 0;
  }

  main,
  .site-footer,
  body > .practical-next-step-panel {
    width: min(1180px, calc(100% - 24px));
  }

  .panel,
  .page-title,
  .crosslink-rail,
  .footer-route-band,
  .footer-main {
    padding: 16px;
  }

  .route-detail-grid a,
  .decision-table div,
  .decision-table a,
  .guide-rank-table div,
  .guide-rank-table a,
  .quick-nav-links a,
  .footer-route-grid a {
    min-height: auto;
    padding: 13px;
  }

  .card-thumb {
    height: 112px;
  }

  .resource-list.compact .card-thumb {
    height: 92px;
  }

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

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

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

  .image-feature-grid a {
    min-height: 168px;
  }

  .category-showcase img,
  .hub-visual-strip img,
  .route-pack-card img {
    max-height: 190px;
  }

  .page-title h1,
  h1 {
    max-width: 18ch;
  }
}

@media (max-width: 680px) {
  .resource-filter-stats,
  .guide-filter-stats,
  .map-filter-stats {
    grid-template-columns: 1fr;
  }
}
.homepage-intro-panel {
  display: grid;
  gap: 14px;
  background: linear-gradient(135deg, #fffdf8, #eef4ea);
}

.homepage-route-pack {
  margin-top: 18px;
}

.homepage-pulse-band,
.hub-pulse-band {
  background:
    radial-gradient(circle at 14% 16%, rgba(47, 104, 76, 0.08), transparent 240px),
    radial-gradient(circle at 86% 18%, rgba(185, 137, 56, 0.08), transparent 220px),
    linear-gradient(135deg, #faf8f0, #eef4ee);
}

.homepage-pulse-grid,
.hub-pulse-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.homepage-pulse-grid article,
.hub-pulse-grid article {
  display: grid;
  gap: 10px;
  min-height: 172px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(212, 220, 211, 0.96);
  border-radius: 8px;
}

.homepage-pulse-grid article span,
.hub-pulse-grid article span {
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.homepage-pulse-grid article p,
.hub-pulse-grid article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.homepage-editorial-desk,
.hub-studio-panel {
  background:
    radial-gradient(circle at 84% 18%, rgba(47, 104, 76, 0.08), transparent 250px),
    linear-gradient(135deg, #fbfaf4, #eef3ec);
}

.storyboard-panel {
  background:
    radial-gradient(circle at 16% 18%, rgba(47, 104, 76, 0.08), transparent 250px),
    radial-gradient(circle at 84% 18%, rgba(185, 137, 56, 0.09), transparent 230px),
    linear-gradient(135deg, #fbfaf4, #edf3ec);
}

.storyboard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
  gap: 18px;
  margin-top: 18px;
}

.storyboard-feature,
.storyboard-side article {
  display: grid;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(212, 220, 211, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.storyboard-feature {
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
  align-items: stretch;
}

.storyboard-feature img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  background: #17211b;
}

.storyboard-feature-body {
  display: grid;
  gap: 12px;
  align-content: start;
}

.storyboard-feature-body p:not(.eyebrow),
.storyboard-side article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.storyboard-flow,
.storyboard-side {
  display: grid;
  gap: 12px;
}

.storyboard-flow {
  margin-top: 2px;
}

.storyboard-flow a {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  background: linear-gradient(135deg, #fffdf8, #edf4ee);
  border: 1px solid #d7e1d8;
  border-radius: 8px;
}

.storyboard-flow span {
  color: var(--muted);
  line-height: 1.56;
}

.storyboard-kicker {
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.storyboard-side article {
  align-content: start;
  gap: 10px;
}

.storyboard-side article strong {
  color: var(--ink);
}

.storyboard-side article a {
  justify-self: start;
  padding: 9px 12px;
  color: var(--green-dark);
  font-weight: 800;
  background: linear-gradient(135deg, #fff8ef, #edf3ee);
  border: 1px solid #d8e0d7;
  border-radius: 999px;
}

.storyboard-flow a:hover,
.storyboard-side article a:hover {
  border-color: rgba(47, 104, 76, 0.38);
  transform: translateY(-1px);
}

.homepage-storyboard {
  background:
    radial-gradient(circle at 14% 18%, rgba(47, 104, 76, 0.1), transparent 250px),
    radial-gradient(circle at 88% 16%, rgba(185, 137, 56, 0.12), transparent 220px),
    linear-gradient(135deg, #faf8f0, #edf4ee);
}

.guides-storyboard {
  background:
    radial-gradient(circle at 14% 18%, rgba(47, 104, 76, 0.08), transparent 240px),
    radial-gradient(circle at 86% 18%, rgba(185, 137, 56, 0.11), transparent 220px),
    linear-gradient(135deg, #f7f5ee, #edf3ec);
}

.resources-storyboard {
  background:
    radial-gradient(circle at 16% 18%, rgba(112, 127, 135, 0.1), transparent 250px),
    radial-gradient(circle at 84% 18%, rgba(185, 137, 56, 0.1), transparent 220px),
    linear-gradient(135deg, #f7f8f5, #eef4ef);
}

.homepage-live-panel,
.guides-live-panel,
.resources-live-panel {
  background:
    radial-gradient(circle at 16% 18%, rgba(47, 104, 76, 0.08), transparent 240px),
    linear-gradient(135deg, #fbfaf5, #eef4ee);
}

.homepage-fast-help-panel,
.guides-reader-panel,
.resources-reader-panel {
  background:
    radial-gradient(circle at 84% 18%, rgba(185, 137, 56, 0.11), transparent 220px),
    linear-gradient(135deg, #fbfaf4, #f1f4ee);
}

.homepage-live-panel {
  border-left: 4px solid rgba(47, 104, 76, 0.45);
}

.homepage-fast-help-panel {
  border-left: 4px solid rgba(185, 137, 56, 0.45);
}

.homepage-routing-board {
  border-top: 4px solid rgba(31, 71, 52, 0.2);
  background:
    radial-gradient(circle at 16% 18%, rgba(47, 104, 76, 0.06), transparent 260px),
    radial-gradient(circle at 82% 14%, rgba(154, 79, 53, 0.08), transparent 220px),
    linear-gradient(135deg, #fbfaf4, #eef3ec);
}

.homepage-briefing-panel {
  border-left: 4px solid rgba(154, 79, 53, 0.35);
}

.homepage-editorial-desk {
  border-top: 4px solid rgba(185, 137, 56, 0.28);
}

.homepage-trust-strip {
  border-left: 4px solid rgba(47, 104, 76, 0.3);
}

.hub-studio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 18px;
  margin-top: 18px;
}

.hub-studio-feature,
.hub-studio-stack article {
  display: grid;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(212, 220, 211, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hub-studio-feature {
  grid-template-columns: minmax(180px, 236px) minmax(0, 1fr);
  align-items: center;
}

.hub-studio-feature img,
.hub-studio-stack article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.hub-studio-feature img {
  min-height: 0;
  max-height: 240px;
  aspect-ratio: 5 / 4;
}

.hub-studio-stack {
  display: grid;
  gap: 18px;
}

.hub-studio-stack article {
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
}

.hub-studio-stack article img {
  min-height: 120px;
  max-height: 132px;
  aspect-ratio: 1 / 1;
}

.hub-studio-feature p:not(.eyebrow),
.hub-studio-stack article p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.hub-studio-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hub-studio-links a,
.hub-studio-stack article a {
  color: var(--green-dark);
  font-weight: 800;
}

.hub-studio-links a {
  padding: 9px 12px;
  background: linear-gradient(135deg, #fffdf9, #edf4ee);
  border: 1px solid #d8e0d7;
  border-radius: 999px;
}

.hub-studio-stack article a {
  justify-self: start;
}

.hub-studio-links a:hover,
.hub-studio-stack article a:hover {
  transform: translateY(-1px);
}

.homepage-snapshot-panel {
  background:
    radial-gradient(circle at 14% 18%, rgba(47, 104, 76, 0.09), transparent 260px),
    radial-gradient(circle at 86% 18%, rgba(185, 137, 56, 0.1), transparent 220px),
    linear-gradient(135deg, #faf8f0, #eef4ee);
}

.homepage-snapshot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(290px, 0.88fr);
  gap: 18px;
  margin-top: 18px;
}

.homepage-snapshot-feature,
.homepage-snapshot-stack article {
  display: grid;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(214, 221, 212, 0.96);
  border-radius: 8px;
}

.homepage-snapshot-feature {
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  align-items: center;
}

.homepage-snapshot-feature img,
.homepage-snapshot-head img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 8px;
}

.homepage-snapshot-feature img {
  max-height: 220px;
  aspect-ratio: 5 / 4;
}

.homepage-snapshot-stack {
  display: grid;
  gap: 18px;
}

.homepage-snapshot-head {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.homepage-snapshot-head img {
  min-height: 112px;
  max-height: 112px;
  aspect-ratio: 1 / 1;
}

.homepage-snapshot-feature p:not(.eyebrow),
.homepage-snapshot-stack article p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.homepage-snapshot-links,
.homepage-snapshot-mini-links {
  display: grid;
  gap: 10px;
}

.homepage-snapshot-links {
  margin-top: 14px;
}

.homepage-snapshot-links a,
.homepage-snapshot-mini-links a {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 8px;
}

.homepage-snapshot-links a {
  background: linear-gradient(135deg, #fffdf8, #edf4ee);
  border: 1px solid #d7e1d8;
}

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

.homepage-snapshot-mini-links a {
  place-items: center;
  text-align: center;
  color: var(--green-dark);
  background: linear-gradient(135deg, #fffaf1, #eef4ed);
  border: 1px solid #d8e0d7;
  font-size: 0.84rem;
  font-weight: 800;
}

.homepage-snapshot-links span {
  color: var(--muted);
  line-height: 1.58;
}

.homepage-snapshot-links a:hover,
.homepage-snapshot-mini-links a:hover {
  border-color: rgba(47, 104, 76, 0.38);
  transform: translateY(-1px);
}

.homepage-route-pack .route-pack-card:nth-child(1) .route-pack-body {
  background: linear-gradient(180deg, #fffdf7, #edf3ea);
}

.homepage-route-pack .route-pack-card:nth-child(2) .route-pack-body {
  background: linear-gradient(180deg, #f7faf9, #e8ece9);
}

.homepage-review-panel .review-log-grid,
.guides-review-panel .review-log-grid,
.resources-review-panel .review-log-grid {
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.95fr));
}

.homepage-review-panel .review-log-grid article:first-child,
.guides-review-panel .review-log-grid article:first-child,
.resources-review-panel .review-log-grid article:first-child {
  background: linear-gradient(135deg, #fffaf2, #edf4ee);
}

.homepage-intro-panel .answer-box {
  margin: 0;
}

.homepage-keyword-panel {
  background: linear-gradient(135deg, #f6f3ea, #eef4ec);
}

.homepage-topic-clusters {
  background:
    radial-gradient(circle at 12% 14%, rgba(163, 115, 43, 0.1), transparent 240px),
    linear-gradient(135deg, #fdf9ee, #eff4ee);
}

.homepage-routing-board {
  background:
    radial-gradient(circle at 86% 14%, rgba(47, 104, 76, 0.08), transparent 260px),
    linear-gradient(135deg, #fbfaf4, #eef3ec);
}

.homepage-routing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 18px;
  margin-top: 18px;
}

.homepage-combo-ladder,
.homepage-exit-panel,
.homepage-fix-shelf {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(208, 216, 207, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.homepage-combo-ladder {
  background: linear-gradient(135deg, #17211b, #2f684c);
}

.homepage-combo-ladder h3,
.homepage-combo-ladder .eyebrow {
  color: #fff;
}

.homepage-combo-ladder h3 {
  max-width: 18ch;
}

.homepage-combo-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.homepage-combo-list a {
  display: grid;
  gap: 8px;
  min-height: 154px;
  padding: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.homepage-combo-list a:nth-child(2n) {
  background: rgba(212, 154, 69, 0.2);
}

.homepage-combo-list span,
.homepage-combo-list small {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.homepage-combo-list a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

.homepage-routing-side {
  display: grid;
  gap: 18px;
}

.homepage-exit-panel {
  background: linear-gradient(135deg, #fff8e8, #f1e5cf);
}

.homepage-exit-links,
.homepage-fix-links {
  display: grid;
  gap: 10px;
}

.homepage-exit-links a,
.homepage-fix-links a {
  display: grid;
  gap: 5px;
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(212, 218, 208, 0.96);
  border-radius: 8px;
}

.homepage-exit-links span,
.homepage-fix-links span {
  color: var(--muted);
  line-height: 1.56;
}

.homepage-exit-links a:hover,
.homepage-fix-links a:hover {
  border-color: rgba(47, 104, 76, 0.32);
  transform: translateY(-1px);
}

.homepage-fix-shelf {
  background: linear-gradient(135deg, #eef3f4, #e3eceb);
}

.topic-cluster-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.topic-cluster-grid article {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 216, 205, 0.95);
  border-radius: 8px;
}

.topic-cluster-grid article p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.topic-cluster-links {
  display: grid;
  gap: 10px;
}

.topic-cluster-links a {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  color: var(--green-dark);
  background: linear-gradient(135deg, #f8fbf8, #edf3ee);
  border: 1px solid #d7e0d8;
  border-radius: 8px;
}

.topic-cluster-links small {
  color: var(--muted);
  line-height: 1.55;
}

.topic-cluster-links a:hover {
  border-color: rgba(47, 104, 76, 0.38);
  transform: translateY(-1px);
}

.homepage-followup-bridge {
  background:
    radial-gradient(circle at 12% 18%, rgba(47, 104, 76, 0.08), transparent 230px),
    linear-gradient(135deg, #f8faf6, #eef3ed);
}

.homepage-followup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.homepage-followup-grid article {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(210, 217, 208, 0.96);
  border-radius: 8px;
}

.homepage-followup-grid article span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  background: var(--green-dark);
  border-radius: 999px;
  font-weight: 900;
}

.homepage-followup-grid article:nth-child(2) span {
  background: #a56a34;
}

.homepage-followup-grid article:nth-child(3) span {
  background: #5b7278;
}

.homepage-followup-grid article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.homepage-keyword-panel .keyword-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.homepage-keyword-panel .keyword-grid a,
.homepage-keyword-panel .keyword-grid a:nth-child(2n),
.homepage-keyword-panel .keyword-grid a:nth-child(3n),
.homepage-keyword-panel .keyword-grid a:nth-child(4n),
.homepage-keyword-panel .keyword-grid a:nth-child(5n) {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(209, 220, 211, 0.95);
}

.homepage-faq-section {
  padding: clamp(20px, 3vw, 30px);
  background:
    radial-gradient(circle at 18% 10%, rgba(47, 104, 76, 0.08), transparent 220px),
    linear-gradient(135deg, #fbfaf6, #f1f5ee);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.homepage-faq-section .faq-grid article {
  background: rgba(255, 255, 255, 0.92);
  border-left: 4px solid var(--green);
}

.question-group-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.question-group-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(211, 219, 211, 0.96);
  border-radius: 8px;
}

.question-group-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.question-group-links {
  display: grid;
  gap: 10px;
}

.question-group-links a {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #fffdf8, #eef4ed);
  border: 1px solid #d6dfd8;
  border-radius: 8px;
}

.question-group-links span {
  color: var(--muted);
  line-height: 1.58;
}

.homepage-bottom-layout {
  align-items: start;
  margin-top: 18px;
}

.homepage-side-stack {
  display: grid;
  gap: 18px;
}

.homepage-shortcuts-panel {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(20, 28, 22, 0.97), rgba(54, 75, 51, 0.88)),
    url("media/bellwright-river-travel.jpg") center / cover;
}

.homepage-shortcuts-panel h2 {
  color: #fff;
}

.homepage-shortcuts-panel .resource-card {
  color: #fff;
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.12);
}

.homepage-shortcuts-panel .resource-card span,
.homepage-shortcuts-panel .resource-card small {
  color: rgba(255, 255, 255, 0.78);
}

.homepage-shortcuts-panel .tag {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
}

.homepage-shortcuts-panel .muted-copy {
  color: rgba(255, 255, 255, 0.78);
}

.homepage-progression-panel {
  background: linear-gradient(135deg, #fff7e3, #f3ead8);
}

.homepage-progression-panel .decision-table {
  counter-reset: homepage-path;
}

.homepage-progression-panel .decision-table a {
  position: relative;
  padding-left: 60px;
}

.homepage-progression-panel .decision-table a::before {
  counter-increment: homepage-path;
  content: counter(homepage-path);
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: var(--green-dark);
  border-radius: 999px;
  font-weight: 900;
}

.homepage-trust-panel {
  background: linear-gradient(135deg, #fbfaf6, #eef2ed);
}

.homepage-trust-panel .route-detail-grid {
  margin-top: 6px;
}

@media (max-width: 900px) {
  .trust-signal-grid,
  .trust-next-links,
  .resource-trip-grid,
  .field-notes-grid,
  .homepage-routing-grid,
  .homepage-combo-list,
  .homepage-followup-grid,
  .topic-cluster-grid,
  .question-group-grid,
  .guide-case-grid,
  .homepage-snapshot-mini-links,
  .homepage-pulse-grid,
  .hub-pulse-grid,
  .storyboard-layout,
  .need-solver-panel,
  .need-solver-grid {
    grid-template-columns: 1fr;
  }
}

.hub-field-notebook {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  background: linear-gradient(135deg, #fffaf0, #edf3ed 58%, #f7efe4);
  border: 1px solid rgba(194, 202, 184, 0.95);
  box-shadow: 0 18px 42px rgba(42, 52, 35, 0.09);
}

.hub-field-notebook-visual {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: 8px;
  background: #263222;
}

.hub-field-notebook-visual img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  display: block;
}

.hub-field-notebook-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: grid;
  gap: 2px;
  max-width: min(320px, calc(100% - 28px));
  padding: 12px 14px;
  color: #fff;
  background: rgba(24, 31, 22, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.hub-field-notebook-badge strong {
  color: #fff;
}

.hub-field-notebook-badge span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.hub-field-notebook-body {
  display: grid;
  align-content: start;
  gap: 16px;
}

.hub-field-notebook-body h2 {
  max-width: 780px;
}

.hub-field-notebook-body > p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.75;
}

.hub-field-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hub-field-note-grid a {
  display: grid;
  gap: 7px;
  min-height: 138px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(202, 211, 194, 0.96);
  border-radius: 8px;
}

.hub-field-note-grid a:nth-child(2) {
  background: #f5efe1;
}

.hub-field-note-grid a:nth-child(3) {
  background: #eef4f2;
}

.hub-field-note-grid strong {
  color: var(--ink);
}

.hub-field-note-grid span {
  color: var(--muted);
  line-height: 1.56;
}

.hub-field-note-grid small {
  color: var(--green-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hub-field-notebook.resources-notebook {
  background: linear-gradient(135deg, #fff5df, #eef3e8 56%, #e9f1f4);
}

.hub-field-notebook.guides-notebook {
  background: linear-gradient(135deg, #eef3ed, #fff8e8 58%, #f1ebe0);
}

.hub-field-notebook.map-notebook {
  background: linear-gradient(135deg, #edf5f4, #fff7e8 52%, #efe9dc);
}

.hub-field-notebook.food-notebook {
  background: linear-gradient(135deg, #fff1dc, #edf4e8 56%, #f6efe2);
}

.hub-field-notebook.buildings-notebook,
.hub-field-notebook.crafting-notebook {
  background: linear-gradient(135deg, #f4efe5, #eef3ef 55%, #fff7e2);
}

.hub-field-notebook.villages-notebook,
.hub-field-notebook.weapons-notebook,
.hub-field-notebook.tools-notebook {
  background: linear-gradient(135deg, #eef4f3, #f8efd9 55%, #f2f4e9);
}

@media (max-width: 900px) {
  .hub-field-notebook,
  .hub-field-note-grid {
    grid-template-columns: 1fr;
  }

  .storyboard-feature {
    grid-template-columns: 1fr;
  }

  .storyboard-feature img {
    min-height: 220px;
  }

  .hub-field-notebook-visual,
  .hub-field-notebook-visual img {
    min-height: 220px;
  }
}
