:root {
  --forest: #103a2e;
  --forest-dark: #071a16;
  --forest-deep: #0b2a22;
  --ink: #0d241f;
  --sand: #a99b63;
  --sand-light: #d8cca0;
  --warm: #f7f3ea;
  --paper: #fffdf8;
  --line: #d7cdb7;
  --muted: #66766f;
  --good: #1f6a4f;
  --warn: #8b6424;
  --danger: #9f2f23;
  --shadow-soft: 0 18px 50px rgba(13, 36, 31, 0.14);
  --shadow-hard: 0 26px 70px rgba(3, 18, 15, 0.34);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(16, 58, 46, 0.14);
  background: rgba(247, 243, 234, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(150px, 16vw, 205px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.desktop-nav a,
.mobile-menu a,
.site-footer a {
  text-decoration: none;
}

.desktop-nav a {
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 6px;
  color: #274940;
  font-size: 0.93rem;
  font-weight: 760;
}

.desktop-nav a:hover {
  background: rgba(16, 58, 46, 0.08);
  color: var(--forest);
}

.header-cta,
.primary-button,
.ghost-button,
.text-button,
.footer-button,
.quick-path,
.mobile-tabs button,
.menu-toggle,
.secondary-button {
  border: 0;
  cursor: pointer;
}

.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--forest);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(16, 58, 46, 0.22);
}

.header-cta:hover,
.primary-button:hover {
  background: #0a2c23;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: #ebe2d0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  gap: clamp(28px, 4vw, 64px);
  min-height: auto;
  overflow: hidden;
  padding: clamp(34px, 4.5vw, 60px) clamp(18px, 5vw, 72px) clamp(30px, 3.5vw, 44px);
  background-color: var(--forest-deep);
  background-image:
    linear-gradient(103deg, rgba(7, 26, 22, 0.86) 0%, rgba(8, 30, 25, 0.66) 40%, rgba(11, 42, 34, 0.34) 72%, rgba(16, 58, 46, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 26, 22, 0.55), rgba(7, 26, 22, 0) 42%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 42px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 42px),
    url("assets/photos/hero-vojak.jpg");
  background-size: auto, auto, auto, auto, cover;
  background-position: center, center, center, center, center 30%;
  background-repeat: no-repeat, no-repeat, repeat, repeat, no-repeat;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(247, 243, 234, 0), var(--warm));
  pointer-events: none;
}

.hero-map {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-map::before {
  content: "";
  position: absolute;
  right: -8vw;
  top: 6vh;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(216, 204, 160, 0.28);
  clip-path: polygon(36% 2%, 70% 8%, 92% 31%, 86% 68%, 62% 94%, 30% 86%, 9% 62%, 14% 25%);
  transform: rotate(9deg);
}

.map-ring {
  position: absolute;
  right: clamp(26px, 9vw, 140px);
  top: clamp(92px, 18vh, 190px);
  border: 1px solid rgba(216, 204, 160, 0.36);
  border-radius: 50%;
}

.ring-one {
  width: 360px;
  height: 360px;
}

.ring-two {
  width: 190px;
  height: 190px;
  translate: 85px 85px;
}

.map-line {
  position: absolute;
  right: clamp(42px, 12vw, 190px);
  top: clamp(250px, 42vh, 420px);
  width: min(42vw, 620px);
  height: 2px;
  background: rgba(216, 204, 160, 0.36);
  transform-origin: right center;
}

.line-one {
  transform: rotate(-17deg);
}

.line-two {
  transform: rotate(31deg);
}

.map-label {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 28px;
  border: 1px solid rgba(216, 204, 160, 0.36);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 900;
}

.label-west {
  right: 40vw;
  top: 62vh;
}

.label-north {
  right: 26vw;
  top: 26vh;
}

.label-east {
  right: 8vw;
  top: 51vh;
}

.hero-copy,
.search-panel {
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  max-width: 840px;
  padding-bottom: 0;
}

.hero-copy h1,
.hero-copy .lead,
.hero-copy .eyebrow {
  text-shadow: 0 2px 28px rgba(3, 16, 13, 0.55);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sand-light);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.34rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-proof span {
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(216, 204, 160, 0.34);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

.search-panel,
.filters-panel,
.claim-card,
.detail-dialog,
.report-dialog {
  border: 1px solid rgba(16, 58, 46, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow-soft);
}

.search-panel {
  align-self: center;
  padding: clamp(20px, 3vw, 30px);
  border-color: rgba(216, 204, 160, 0.34);
  background: #f7f3ea;
  box-shadow: var(--shadow-hard);
  color: var(--ink);
}

.search-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(16, 58, 46, 0.14);
  color: #52665f;
  font-size: 0.86rem;
}

.search-panel-top strong {
  color: var(--forest);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-label,
.purpose-group legend,
.category-group legend {
  display: block;
  margin-bottom: 10px;
  color: #344d46;
  font-size: 0.86rem;
  font-weight: 850;
}

.selected-category {
  display: grid;
  gap: 3px;
  margin-bottom: 20px;
  padding: 13px 15px;
  border: 1px solid rgba(16, 58, 46, 0.18);
  border-radius: 6px;
  background: #fbf8f0;
}

.selected-category .field-label {
  margin-bottom: 0;
  color: #52665f;
}

.selected-category strong {
  color: var(--forest);
  font-size: 1.2rem;
  line-height: 1.1;
}

.selected-category small {
  color: var(--muted);
  font-size: 0.8rem;
}

.location-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-bottom: 22px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #c8bea8;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 0 13px;
}

textarea {
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(169, 155, 99, 0.45);
  outline-offset: 2px;
}

.ghost-button {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #b8ac91;
  border-radius: 6px;
  background: #ece1cd;
  color: var(--ink);
  font-weight: 820;
}

.ghost-button:hover {
  background: #e2d4bb;
}

.category-group,
.purpose-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.category-group {
  margin-bottom: 18px;
}

.purpose-group legend,
.category-group legend {
  grid-column: 1 / -1;
}

.purpose-group label,
.category-group label {
  position: relative;
}

.purpose-group input,
.category-group input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.purpose-group span,
.category-group span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 10px;
  border: 1px solid #c4b89f;
  border-radius: 6px;
  background: #fbf8f0;
  color: #314940;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.category-group span {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 78px;
  padding: 12px 13px;
  text-align: left;
}

.category-group strong {
  font-size: 0.96rem;
}

.category-group small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 740;
  line-height: 1.3;
}

.purpose-group input:checked + span,
.category-group input:checked + span {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.category-group input:checked + span small {
  color: rgba(255, 255, 255, 0.74);
}

.search-button {
  width: 100%;
}

.quick-paths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px) 44px;
  background: var(--warm);
}

.quick-path {
  position: relative;
  display: grid;
  align-content: end;
  gap: 6px;
  min-height: 150px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(7, 26, 22, 0.28);
  border-radius: 0;
  background-color: var(--forest-deep);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: left;
}

.quick-path::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 22, 0.35) 0%, rgba(7, 26, 22, 0.55) 45%, rgba(7, 26, 22, 0.9) 100%);
  transition: background 0.2s ease;
}

.quick-path > * {
  position: relative;
  z-index: 1;
}

.quick-path[data-category="live"] {
  background-image: url("assets/photos/kat-strelnica.jpg");
}

.quick-path[data-category="airsoft"] {
  background-image: url("assets/photos/kat-airsoft.jpg");
}

.quick-path[data-category="laser"] {
  background-image: url("assets/photos/kat-lasertag.jpg");
}

.quick-path[data-category="paintball"] {
  background-image: url("assets/photos/kat-paintball.jpg");
}

.quick-path:first-child {
  border-radius: 8px 0 0 8px;
}

.quick-path:last-child {
  border-radius: 0 8px 8px 0;
}

.quick-path:hover {
  z-index: 1;
  border-color: var(--sand);
}

.quick-path:hover::before {
  background: linear-gradient(180deg, rgba(7, 26, 22, 0.2) 0%, rgba(16, 58, 46, 0.5) 45%, rgba(16, 58, 46, 0.86) 100%);
}

.quick-path strong {
  font-size: 1.05rem;
}

.quick-path span {
  color: rgba(255, 255, 255, 0.82);
}

.results-shell,
.how-section,
.operator-section {
  padding: 52px clamp(18px, 5vw, 72px);
}

.results-shell {
  background:
    linear-gradient(180deg, var(--warm), #fffaf0 22%, #fffaf0),
    repeating-linear-gradient(90deg, rgba(16, 58, 46, 0.035) 0, rgba(16, 58, 46, 0.035) 1px, transparent 1px, transparent 44px);
}

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

.results-shell .eyebrow,
.operator-section .eyebrow {
  color: var(--sand);
}

.section-heading > p,
#results-summary {
  max-width: 440px;
  color: var(--muted);
}

.mobile-tabs {
  display: none;
  gap: 8px;
  margin-bottom: 14px;
}

.mobile-tabs button {
  flex: 1;
  min-height: 42px;
  border: 1px solid #c8bea8;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
}

.mobile-tabs .active {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.results-layout {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: 18px;
  align-items: start;
}

.filters-panel {
  position: sticky;
  top: 94px;
  padding: 18px;
  background: #fdf8ee;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.panel-heading h3 {
  margin: 0;
}

.text-button,
.footer-button {
  background: transparent;
  color: var(--forest);
  font-weight: 850;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin-bottom: 8px;
  color: #304941;
  font-weight: 760;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--forest);
}

.filters-panel .field-label {
  margin-top: 18px;
}

input[type="range"] {
  padding: 0;
  accent-color: var(--forest);
}

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

.range-card {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding: 19px;
  border: 1px solid rgba(16, 58, 46, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf8, #fbf5e9);
  box-shadow: 0 12px 32px rgba(13, 36, 31, 0.08);
}

.range-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--forest);
}

.range-card:hover {
  border-color: rgba(16, 58, 46, 0.38);
  box-shadow: 0 18px 42px rgba(13, 36, 31, 0.12);
}

.card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.card-top h3 {
  margin: 0 0 4px;
  font-size: 1.28rem;
}

.location-line {
  color: var(--muted);
  font-size: 0.95rem;
}

.status-badge,
.match-pill,
.unknown-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.status-badge.verified {
  background: rgba(31, 106, 79, 0.12);
  color: var(--good);
}

.status-badge.partial {
  background: rgba(139, 100, 36, 0.14);
  color: var(--warn);
}

.match-list,
.unknown-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.match-pill {
  background: rgba(16, 58, 46, 0.09);
  color: var(--forest);
}

.unknown-pill {
  border: 1px dashed rgba(139, 100, 36, 0.58);
  background: #fff8e8;
  color: #72511e;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--forest);
  border-radius: 6px;
  background: transparent;
  color: var(--forest);
  font-weight: 850;
  text-decoration: none;
}

.secondary-button:hover {
  background: rgba(16, 58, 46, 0.08);
}

.map-panel {
  position: sticky;
  top: 94px;
}

.map-canvas {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(16, 58, 46, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 58, 46, 0.94), rgba(9, 32, 27, 0.88)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 38px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 38px);
  box-shadow: var(--shadow-soft);
}

.map-canvas::before {
  content: "";
  position: absolute;
  inset: 10% 17% 12% 23%;
  border: 2px solid rgba(216, 204, 160, 0.28);
  border-radius: 45% 52% 48% 54%;
  transform: rotate(8deg);
}

.map-canvas::after {
  content: "Slovensko";
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-point {
  position: absolute;
  z-index: 1;
  width: 34px;
  height: 34px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--sand-light);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(3, 18, 15, 0.34);
}

.map-point.partial {
  background: #fff3c8;
  border-color: rgba(255, 255, 255, 0.78);
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.pin {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 6px;
  border-radius: 50%;
  vertical-align: -1px;
}

.pin.verified {
  background: var(--forest);
}

.pin.partial {
  background: var(--sand);
}

.how-section {
  background:
    linear-gradient(180deg, var(--forest), var(--forest-dark)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 46px);
  color: #fff;
}

.how-section .eyebrow,
.how-section .section-heading p {
  color: var(--sand-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.process-grid article {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--sand-light);
  color: var(--forest-dark);
  font-weight: 950;
}

.process-grid p,
.operator-section p {
  color: rgba(255, 255, 255, 0.76);
}

.operator-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 460px);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, #081d18, #123a2f),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 40px);
  color: #fff;
}

.operator-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/photos/camo-pattern.png");
  background-size: 240px;
  opacity: 0.07;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.operator-section > * {
  position: relative;
  z-index: 1;
}

.operator-section h2 {
  max-width: 620px;
}

.claim-card {
  padding: 22px;
  background: #fffdf8;
  color: var(--ink);
}

.claim-card input {
  margin-bottom: 14px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--good);
  font-weight: 850;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: center;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #061512;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.site-footer a:hover,
.footer-button:hover {
  color: #fff;
}

.footer-button {
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
}

dialog {
  width: min(920px, calc(100vw - 28px));
  max-height: calc(100svh - 28px);
  padding: 0;
  border: 0;
  color: var(--ink);
}

dialog::backdrop {
  background: rgba(7, 26, 22, 0.66);
}

.detail-dialog,
.report-dialog {
  overflow: auto;
}

.close-dialog {
  position: sticky;
  top: 12px;
  left: calc(100% - 54px);
  z-index: 2;
  width: 42px;
  height: 42px;
  margin: 12px 12px 0;
  border: 1px solid #d8d0bf;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
}

#detail-content {
  padding: 0 28px 30px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.detail-hero h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.detail-contact {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
  border-radius: 8px;
  background: #f4eddf;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.fact-box {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.fact-box strong {
  display: block;
  margin-bottom: 4px;
}

.verify-note {
  margin-top: 18px;
  padding: 14px;
  border-left: 4px solid var(--sand);
  background: #fff8e8;
  color: #584830;
}

.report-dialog form {
  padding: 28px;
}

@media (max-width: 1120px) {
  .results-layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .map-panel {
    grid-column: 1 / -1;
    position: static;
  }

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

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .mobile-menu.open {
    display: grid;
    grid-column: 1 / -1;
    gap: 8px;
    padding: 10px 0;
  }

  .mobile-menu a {
    min-height: 40px;
    padding: 8px 0;
    color: #26453d;
    font-weight: 800;
  }

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

  .hero-copy {
    padding-bottom: 0;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 5.8rem);
  }

  .location-row,
  .purpose-group,
  .category-group,
  .quick-paths,
  .process-grid,
  .operator-section,
  .detail-hero,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .quick-path,
  .quick-path:first-child,
  .quick-path:last-child {
    border-radius: 8px;
  }

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

  .mobile-tabs {
    position: sticky;
    top: 76px;
    z-index: 10;
    display: flex;
    padding: 8px 0;
    background: #fffaf0;
  }

  .filters-panel,
  .map-panel {
    display: none;
    position: static;
  }

  .results-shell[data-mobile-view="filters"] .filters-panel,
  .results-shell[data-mobile-view="map"] .map-panel {
    display: block;
  }

  .results-shell[data-mobile-view="filters"] .results-list,
  .results-shell[data-mobile-view="map"] .results-list {
    display: none;
  }

  .section-heading {
    display: block;
  }

  #detail-content {
    padding: 0 18px 24px;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand {
    width: 136px;
  }

  .hero,
  .results-shell,
  .how-section,
  .operator-section {
    padding-inline: 14px;
  }

  .quick-paths {
    padding-inline: 14px;
  }

  .card-top,
  .card-actions {
    display: grid;
  }

  .secondary-button,
  .primary-button {
    width: 100%;
  }

  .hero-proof span {
    width: 100%;
  }
}
