:root {
  --ink: #f4f7f2;
  --muted: #b8c0b2;
  --panel: #151915;
  --panel-2: #20271f;
  --line: #3b453b;
  --paper: #efe8d7;
  --paper-ink: #202219;
  --maple: #b86422;
  --blue: #8eb1c7;
  --charcoal: #080a09;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--ink);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  color: var(--ink);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: #222222;
  border-bottom: 1px solid rgba(244, 247, 242, 0.1);
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: linear-gradient(90deg, #b95e17, #d2731f 50%, #a34f12);
  color: #170904;
}

.nav-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 950;
}

.brand {
  display: grid;
  grid-template-columns: 42px auto;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 12px;
}

.brand-text span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.top-meta {
  justify-self: end;
  color: rgba(245, 242, 233, 0.66);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font: 900 11px/1.3 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.nav-bar ul {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
}

.nav-bar a,
.footer-links a {
  text-decoration: none;
}

.review-banner {
  position: sticky;
  z-index: 9;
  top: 111px;
  padding: 10px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(184, 100, 34, 0.38);
  background: rgba(245, 242, 233, 0.92);
  color: #202020;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 900;
}

.wireframe-hero {
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 5vw, 72px) 54px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.92), rgba(8, 10, 9, 0.55) 42%, rgba(8, 10, 9, 0.16)),
    url("/wp-content/uploads/2026/03/IMG_4617-scaled.jpg") center / cover no-repeat;
}

.wireframe-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 12px;
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.page-title {
  padding: clamp(88px, 10vw, 130px) clamp(20px, 5vw, 72px) clamp(54px, 7vw, 88px);
  background:
    linear-gradient(135deg, rgba(142, 177, 199, 0.15), transparent 44%),
    var(--charcoal);
  border-bottom: 1px solid var(--line);
}

.page-title h1 {
  max-width: 980px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 12px;
  color: var(--maple);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 900;
}

.hero-content .eyebrow {
  color: var(--blue);
}

.subhead {
  margin-bottom: 30px;
  color: rgba(244, 247, 242, 0.82);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 650;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(244, 247, 242, 0.75);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 850;
  background: rgba(244, 247, 242, 0.1);
}

.button.primary {
  border-color: var(--maple);
  background: var(--maple);
  color: #140c07;
}

.section {
  padding: clamp(64px, 9vw, 126px) clamp(20px, 5vw, 72px);
}

.section.dark {
  background: var(--charcoal);
}

.section.panel {
  background: var(--panel);
}

.section.paper {
  background: var(--paper);
  color: var(--paper-ink);
}

.section-header {
  max-width: 980px;
  margin-bottom: 34px;
}

.section h2,
.page-title h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.lede {
  max-width: 800px;
  color: rgba(244, 247, 242, 0.72);
  font-size: clamp(18px, 2vw, 24px);
}

.paper .lede,
.page-title .lede {
  color: rgba(244, 247, 242, 0.72);
}

.paper .lede {
  color: rgba(32, 34, 25, 0.72);
}

.story-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
}

.story-panel,
.archive-panel {
  min-height: 480px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(142, 177, 199, 0.13), rgba(184, 100, 34, 0.08)),
    var(--panel-2);
}

.placeholder-map,
.wide-placeholder {
  min-height: 320px;
  border: 1px solid rgba(244, 247, 242, 0.16);
  background:
    radial-gradient(circle at 24% 38%, rgba(142, 177, 199, 0.26), transparent 24%),
    radial-gradient(circle at 68% 64%, rgba(184, 100, 34, 0.2), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015));
  position: relative;
}

.placeholder-map::before,
.wide-placeholder::before {
  content: attr(data-label);
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: rgba(244, 247, 242, 0.64);
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 850;
}

.label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 850;
}

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

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

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

.card {
  min-height: 230px;
  padding: 22px;
  display: grid;
  align-content: space-between;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  text-decoration: none;
}

.paper .card {
  border-color: rgba(32, 34, 25, 0.22);
  background: rgba(255, 255, 255, 0.5);
}

.card h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1;
}

.card p {
  color: rgba(244, 247, 242, 0.68);
}

.paper .card p {
  color: rgba(32, 34, 25, 0.68);
}

.metric {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.9;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.feature-card {
  min-height: 330px;
  padding: 24px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(244, 247, 242, 0.16);
  background:
    linear-gradient(180deg, rgba(8, 10, 9, 0.05), rgba(8, 10, 9, 0.9)),
    linear-gradient(135deg, rgba(142, 177, 199, 0.32), rgba(184, 100, 34, 0.18));
}

.note-card {
  min-height: 250px;
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(32, 34, 25, 0.22);
  color: var(--paper-ink);
}

.date {
  margin-bottom: 18px;
  color: rgba(32, 34, 25, 0.62);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.inventory-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.inventory-list li {
  padding: 14px 16px;
  border: 1px solid rgba(244, 247, 242, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #050605;
  color: rgba(244, 247, 242, 0.62);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .card-grid,
  .card-grid.three,
  .card-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .top-bar,
  .nav-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav ul {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .review-banner,
  .hero-nav + .review-banner {
    position: static;
  }

  .story-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .card-grid,
  .card-grid.three,
  .card-grid.two {
    grid-template-columns: 1fr;
  }

  .wireframe-hero {
    padding-top: 160px;
  }
}
