:root {
  --page: #0d0f14;
  --panel: #151922;
  --panel-2: #1b2230;
  --panel-3: #202938;
  --line: #2b3340;
  --line-soft: rgba(214, 217, 223, 0.14);
  --text: #f2ece1;
  --muted: #9aa3b2;
  --soft: #d6d9df;
  --red: #c43d44;
  --red-deep: #7c252b;
  --gold: #d6a75b;
  --green: #7ccb8a;
  --content: 1296px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 10;
  padding: 12px 16px;
  background: var(--gold);
  color: var(--page);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  min-height: 84px;
  padding: 0 max(24px, calc((100vw - var(--content)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--page);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.brand {
  display: grid;
  gap: 2px;
}

.brand span,
.site-footer strong {
  font-size: 18px;
  font-weight: 800;
}

.brand small {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.site-nav a {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer nav a {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-nav a[aria-current="page"],
.site-nav a:hover,
.site-footer a:hover {
  color: var(--text);
}

.local-review-banner {
  padding: 10px max(24px, calc((100vw - var(--content)) / 2));
  background: var(--gold);
  color: var(--page);
  font-size: 13px;
  font-weight: 800;
}

.hero,
.detail-hero {
  padding: 64px max(24px, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 56px;
  align-items: start;
  background: var(--panel);
}

.hero-copy {
  min-width: 0;
}

.breadcrumb,
.eyebrow,
.card-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin: 20px 0 22px;
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin: 12px 0 16px;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.direct-answer {
  max-width: 820px;
  margin: 0 0 22px;
  padding: 20px;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: #10151e;
}

.direct-answer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
}

.direct-answer p,
.intro,
.section-lede {
  color: var(--soft);
  font-size: 17px;
}

.intro {
  max-width: 780px;
}

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

.button,
.filter-row span,
.tag-row span,
.quick-facts small {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.button-primary,
.filter-row span:first-child,
.tag-row span:first-child {
  background: var(--red);
  color: white;
}

.button-secondary,
.filter-row span,
.tag-row span {
  border: 1px solid var(--line);
  background: var(--panel-2);
  color: var(--text);
}

.tag-row span:last-child {
  background: var(--green);
  color: var(--page);
}

.quick-facts,
.hero-media {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d0f14;
}

.quick-facts strong {
  display: block;
  margin-top: 16px;
  font-size: 56px;
  line-height: 1;
}

.quick-facts p,
.hero-media p,
.hero-media small {
  color: var(--muted);
}

.quick-facts hr {
  height: 1px;
  margin: 22px 0;
  border: 0;
  background: var(--line);
}

.section {
  padding: 72px max(24px, calc((100vw - var(--content)) / 2));
}

.section:nth-of-type(even) {
  background: var(--panel);
}

.feature-grid,
.weapon-grid,
.fact-grid,
.image-grid,
.trust-grid,
.source-grid {
  display: grid;
  gap: 20px;
}

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

.weapon-grid {
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.feature-grid article,
.weapon-card,
.fact-grid article,
.image-grid article,
.trust-grid article,
.source-card,
.article-list article,
.faq details {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
}

.feature-card span,
.weapon-card h3,
.fact-grid strong,
.source-card strong {
  color: var(--text);
  font-weight: 800;
}

.feature-card p,
.weapon-card p,
.source-card span,
.source-card p,
.article-list p,
.faq p,
.image-grid p,
.trust-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.weapon-card {
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  gap: 24px;
}

.weapon-card strong {
  color: var(--gold);
}

.weapon-card span:last-child {
  display: inline-block;
  margin-top: 18px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.image-placeholder {
  min-height: 190px;
  padding: 20px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(214, 167, 91, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(214, 167, 91, 0.08) 1px, transparent 1px),
    var(--panel-3);
  background-size: 18px 18px;
  text-align: center;
}

.image-placeholder strong {
  color: var(--gold);
  font-size: 12px;
}

.image-placeholder span {
  color: var(--muted);
  font-size: 12px;
}

.warning-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #132019;
}

.warning-band strong {
  color: var(--green);
  font-size: 18px;
}

.detail-hero {
  background: var(--page);
}

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

.route-summary,
.diagram {
  background: var(--panel);
}

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

.fact-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.step-list {
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.step-list li {
  min-height: 92px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.step-list span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--red);
  color: white;
  font-weight: 800;
}

.step-list p {
  margin: 0;
  color: var(--soft);
}

.route-line {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
}

.route-line span {
  min-height: 68px;
  padding: 18px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
  font-weight: 800;
}

.route-line b {
  align-self: center;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.accuracy-note {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 8px;
  background: var(--page);
  color: var(--gold);
}

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

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

.link-list {
  display: grid;
  gap: 10px;
}

.link-list a {
  min-height: 58px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 8px;
  background: var(--page);
}

.link-list strong {
  color: var(--red);
  font-size: 12px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq summary {
  cursor: pointer;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
}

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

.source-card {
  display: grid;
  gap: 8px;
}

.source-card span {
  overflow-wrap: anywhere;
}

.article-list {
  display: grid;
  gap: 14px;
}

.site-footer {
  padding: 44px max(24px, calc((100vw - var(--content)) / 2));
  display: grid;
  gap: 20px;
  background: #080a0e;
  color: var(--muted);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero,
  .detail-hero,
  .feature-grid,
  .weapon-grid,
  .fact-grid,
  .image-grid,
  .trust-grid,
  .source-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 44px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
  }
}

@media (max-width: 640px) {
  .hero,
  .detail-hero,
  .section {
    padding: 48px 18px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 27px;
  }

  .weapon-card,
  .step-list li {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
