:root {
  --bg: #070707;
  --ink: #f7f2ea;
  --muted: #b9b1a6;
  --gold: #dfad42;
  --red: #ed4036;
  --line: rgba(255, 255, 255, .16);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  margin: 0;
  padding-bottom: 82px;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a { color: inherit; }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p { margin-top: 0; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 7, .94);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(var(--max), calc(100% - 36px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand { display: inline-flex; align-items: center; }
.brand-logo {
  width: clamp(150px, 20vw, 235px);
  mix-blend-mode: screen;
  filter: contrast(1.08);
}

.navlinks {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2.2vw, 26px);
  flex-wrap: wrap;
}

.navlinks a {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
}

.navlinks a:hover { color: var(--gold); }

.page-wrap {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.blog-hero {
  padding: clamp(58px, 9vw, 112px) 0 54px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.blog-hero h1,
.article-header h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-family: "DIN Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.25rem, 5.6vw, 4.8rem);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: .94;
  text-transform: uppercase;
}

.lede {
  max-width: 850px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.blog-feature {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid rgba(223, 173, 66, .4);
  border-radius: 8px;
  background: #000;
  text-decoration: none;
}

.blog-feature img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  opacity: .82;
  transition: opacity .18s ease, transform .24s ease;
}

.blog-feature:hover img {
  opacity: .96;
  transform: scale(1.015);
}

.blog-feature-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 42px 28px 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.92));
}

.blog-feature-caption span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.blog-feature-caption strong {
  display: block;
  max-width: 760px;
  color: var(--ink);
  font-family: "DIN Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: .95;
  text-transform: uppercase;
}

.blog-tools {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 0 0;
}

.search-label {
  color: var(--gold);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.search-input {
  width: min(100%, 480px);
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: 0;
  background: #11110f;
  color: var(--ink);
  font: inherit;
}

.search-input:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(223, 173, 66, .17); }
.search-input::placeholder { color: #827d75; }
.search-status { margin: 0; color: #827d75; font-size: .86rem; }
.blog-actions { display: flex; gap: 12px; margin-top: 22px; }
.home-button {
  display: inline-block;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}
.home-button:hover { border-color: var(--gold); color: var(--gold); }

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 34px 0 80px;
}

.post-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.016));
}

.post-card[hidden] { display: none; }
.post-card-media { overflow: hidden; border-bottom: 1px solid var(--line); background: #000; }
.post-card-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; opacity: .9; transition: opacity .18s ease, transform .24s ease; }
.post-card:hover .post-card-media img { opacity: 1; transform: scale(1.02); }
.post-card-media-empty { display: none; }
.post-number {
  position: absolute;
  top: 12px;
  left: 12px;
  min-width: 42px;
  padding: 5px 8px;
  background: rgba(0,0,0,.72);
  color: var(--gold);
  font-family: "DIN Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}
.post-card { position: relative; }
.post-card-copy { padding: 20px 20px 22px; }

.post-card h2 {
  margin-bottom: 10px;
  font-family: "DIN Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: .98;
  text-transform: uppercase;
}

.post-card p { margin-bottom: 0; color: var(--muted); }
.post-date {
  margin: auto 20px 18px;
  color: #8d877e;
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after { content: "  ->"; color: var(--red); }
.text-link:hover { color: var(--ink); }

.article { padding: clamp(50px, 8vw, 96px) 0 90px; }
.article-actions { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
.article-actions .back-link { margin-bottom: 0; }
.back-link {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--gold);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.back-link::before { content: "<-  "; color: var(--red); }
.article-header { max-width: 1010px; }
.article-header h1 { margin-bottom: 18px; }
.article-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; color: #8d877e; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.article-meta strong { color: var(--gold); }

.post-image {
  width: 100%;
  max-height: 660px;
  margin: 0 0 48px;
  border: 1px solid var(--line);
  object-fit: cover;
  background: #000;
}

.article-copy { max-width: 800px; color: #d3cbc0; font-size: clamp(1.08rem, 1.6vw, 1.28rem); }
.article-copy p { margin-bottom: 1.35em; }
.article-copy a { color: var(--gold); text-decoration-thickness: 1px; text-underline-offset: 4px; }
.article-cta { max-width: 800px; margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line); }
.article-cta p { margin-bottom: 12px; color: var(--muted); }

.call-sticky {
  position: fixed;
  right: 0;
  bottom: 5px;
  left: 0;
  z-index: 30;
  padding: 5px 12px 6px;
  text-align: center;
}

.neonsign {
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: min(100%, 220px);
  padding: 7px 14px;
  border: 1px solid #ff3047;
  border-radius: 7px;
  background: #050000;
  box-shadow: 0 0 11px rgba(255, 48, 71, .6), inset 0 0 14px rgba(255, 48, 71, .18);
  color: #fff2bf;
  font: 800 15px/1 "Avenir Next", Arial, sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.neonsign .word {
  font-size: 15px;
  letter-spacing: 3px;
  padding-left: 3px;
  text-shadow: 0 0 6px #ffdf7a, 0 0 16px #ff9d2f, 0 0 34px #ff2f45;
}

.neonsign:hover { border-color: var(--gold); color: var(--gold); }
.neonicons { display: inline-flex; align-items: center; gap: 13px; opacity: .66; }
.neonicons svg { width: 12px; height: 12px; fill: none; stroke: #ffbe46; stroke-width: 2; }

.sheet {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 22px;
  background: rgba(0,0,0,.82);
}
.sheet.on { display: flex; }
.sheetcard {
  width: min(380px, 100%);
  padding: 30px 26px 26px;
  text-align: center;
  background: #0b0908;
  border: 1px solid #2a1113;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(255,47,69,.25);
}
.sheetcard h3 { margin: 0 0 4px; font-size: 16px; letter-spacing: 2px; text-transform: uppercase; }
.sheetcard .q { color: #8f8c85; margin: 0 0 22px; font-size: 13.5px; }
.sheetcard a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 11px;
  padding: 14px 16px;
  border: 1px solid #3a2c14;
  border-radius: 7px;
  color: #ffbe46;
  font-size: 14.5px;
  letter-spacing: 1.5px;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
}
.sheetcard a:hover { background: #ffbe46; color: #000; border-color: #ffbe46; }
.sheetcard .sm { display: block; margin-top: 3px; color: #8f8c85; font-size: 11px; letter-spacing: .6px; text-transform: none; font-weight: 400; }
.sheetclose { margin-top: 6px; padding: 8px; background: none; border: 0; color: #6b6152; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; }
.site-footer { padding: 28px 0 24px; border-top: 1px solid var(--line); color: #8d877e; font-size: .84rem; }
.site-footer a { color: var(--gold); text-decoration: none; }

@media (max-width: 720px) {
  .nav { display: block; padding: 15px 0 12px; }
  .brand-logo { width: 190px; }
  .navlinks { justify-content: flex-start; gap: 10px 16px; margin-top: 14px; }
  .navlinks a { font-size: .66rem; }
  .blog-tools { display: block; }
  .search-label { display: block; margin-bottom: 9px; }
  .search-status { margin-top: 9px; }
  .blog-feature img { aspect-ratio: 4 / 3; }
  .blog-feature-caption { padding: 52px 18px 18px; }
  .post-grid { grid-template-columns: 1fr; }
  .post-card-copy { padding: 18px; }
  .post-date { margin: auto 18px 18px; }
  .post-number { font-size: 1.5rem; }
  .blog-hero h1, .article-header h1 { font-size: clamp(2.15rem, 10vw, 3.25rem); }
  .post-image { max-height: 480px; margin-bottom: 34px; }
  .neonicons { display: none; }
}
