:root {
  --bg: #474c54;
  --bg-dark: #3c4148;
  --bg-deeper: #33383f;
  --bg-card: #4d535c;
  --bg-card-h: #535a63;
  --orange: #e8641a;
  --orange-lt: #f07535;
  --orange-dim: rgba(232, 100, 26, .1);
  --orange-glow: rgba(232, 100, 26, .22);
  --orange-brd: rgba(232, 100, 26, .32);
  --cream: #f0ede8;
  --text: #f0ede8;
  --text-2: #9ba2ab;
  --text-3: #6a7180;
  --border: rgba(255, 255, 255, .07);
  --border-lt: rgba(255, 255, 255, .12);
  --shadow: rgba(0, 0, 0, .28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

img,
svg {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.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;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 1.1rem 3rem;
  background: rgba(58, 63, 70, .9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: padding .25s ease;
}

.nav.is-compact {
  padding-top: .72rem;
  padding-bottom: .72rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  justify-self: start;
  min-width: 0;
}

.nav-logo-svg {
  width: 28px;
  height: 26px;
  flex: 0 0 auto;
}

.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.nav-name {
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .22em;
}

.nav-tagline {
  color: var(--orange);
  font-family: "Space Mono", monospace;
  font-size: .52rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 2rem;
}

.nav-links a {
  position: relative;
  color: var(--text-2);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .06em;
  padding-bottom: 2px;
  transition: color .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--orange);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 5rem;
  overflow: hidden;
}

.hero-scan,
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(232, 100, 26, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 100, 26, .04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  transform: translate(-50%, -58%);
  background: radial-gradient(ellipse, rgba(232, 100, 26, .09) 0%, transparent 68%);
  pointer-events: none;
}

.particles {
  overflow: hidden;
}

.pt {
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
  animation: drift linear infinite;
}

@keyframes drift {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(1);
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: .25;
  }
  100% {
    opacity: 0;
    transform: translateY(-130px) translateX(var(--dx)) scale(.4);
  }
}

.hero-scan {
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, .03) 3px,
    rgba(0, 0, 0, .03) 4px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 1120px);
  text-align: center;
}

.hero-mark {
  width: 120px;
  height: 110px;
  margin-bottom: 2.2rem;
  filter: drop-shadow(0 0 28px rgba(232, 100, 26, .28));
  animation: mark-float 7s ease-in-out infinite;
}

@keyframes mark-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-brand {
  width: 100%;
  margin-bottom: 2.8rem;
}

.hero-title {
  max-width: 100%;
  margin: 0 0 .55rem;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.35rem, 11vw, 8.5rem);
  font-weight: 300;
  letter-spacing: .38em;
  line-height: .9;
}

.hero-sub {
  max-width: 100%;
  margin: 0 0 1rem;
  color: var(--text-2);
  font-family: "Space Mono", monospace;
  font-size: clamp(.6rem, 1.4vw, .82rem);
  letter-spacing: .5em;
  text-transform: uppercase;
}

.hero-divider {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}

.hero-divider::before,
.hero-divider::after {
  content: "";
  flex: 1;
  min-width: 36px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--orange-brd));
}

.hero-divider::before {
  background: linear-gradient(to left, transparent, var(--orange-brd));
}

.hero-slogan {
  max-width: 100%;
  color: var(--orange);
  font-family: "Space Mono", monospace;
  font-size: .67rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.hero-quote {
  max-width: 560px;
  margin: 0 auto 3.2rem;
}

.hero-quote p {
  margin: 0;
  color: var(--text-2);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
}

.hero-quote em {
  font-style: normal;
  color: var(--orange-lt);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 2px;
  cursor: pointer;
  font-size: .85rem;
  padding: .78rem 2rem;
  transition: transform .2s ease, box-shadow .2s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.btn-primary {
  color: #fff;
  background: var(--orange);
  border: none;
  font-weight: 500;
  letter-spacing: .04em;
}

.btn-primary:hover {
  background: var(--orange-lt);
  box-shadow: 0 10px 28px rgba(232, 100, 26, .35);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text-2);
  background: transparent;
  border: 1px solid var(--border-lt);
}

.btn-ghost:hover {
  border-color: var(--orange-brd);
  color: var(--cream);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: var(--text-3);
  transform: translateX(-50%);
  animation: cue-bob 2.2s ease-in-out infinite;
}

@keyframes cue-bob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

.scroll-cue span {
  font-family: "Space Mono", monospace;
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 13px;
  height: 13px;
}

.horizon {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--orange-brd) 20%, rgba(232, 100, 26, .55) 50%, var(--orange-brd) 80%, transparent 100%);
  box-shadow: 0 0 18px var(--orange-glow);
}

.showcase-news[hidden] {
  display: none;
}

.showcase-news {
  padding: 2rem 3rem;
  background:
    linear-gradient(rgba(51, 56, 63, .78), rgba(51, 56, 63, .78)),
    linear-gradient(90deg, rgba(232, 100, 26, .045) 1px, transparent 1px),
    linear-gradient(rgba(232, 100, 26, .045) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  border-bottom: 1px solid var(--border);
}

.showcase-inner {
  display: grid;
  grid-template-columns: minmax(220px, .48fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(60, 65, 72, .72);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
  overflow: hidden;
}

.showcase-media {
  min-height: 220px;
  background: var(--bg-deeper);
  overflow: hidden;
}

.showcase-media img,
.showcase-media svg {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.showcase-copy {
  min-width: 0;
  padding: 1.8rem 2rem 1.8rem .4rem;
}

.showcase-kicker {
  margin: 0 0 .7rem;
  color: var(--orange);
  font-family: "Space Mono", monospace;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.showcase-copy h2 {
  margin: 0 0 .75rem;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.showcase-copy p:not(.showcase-kicker) {
  max-width: 680px;
  margin: 0 0 1.2rem;
  color: var(--text-2);
}

.showcase-link {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  color: var(--orange);
  font-family: "Space Mono", monospace;
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.stats-bar {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  padding: 1.6rem 3rem;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-n {
  color: var(--orange);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 300;
  line-height: 1;
}

.stat-l {
  margin-top: .35rem;
  color: var(--text-3);
  font-family: "Space Mono", monospace;
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 3rem;
}

.eyebrow {
  margin: 0 0 .5rem;
  color: var(--orange);
  font-family: "Space Mono", monospace;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.sec-title {
  margin: 0;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.95rem;
  font-weight: 300;
  letter-spacing: .1em;
}

.sec-head,
.posts-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.8rem;
}

.see-all {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--text-2);
  font-family: "Space Mono", monospace;
  font-size: .68rem;
  letter-spacing: .1em;
  transition: color .2s ease;
}

.see-all:hover {
  color: var(--orange);
}

.featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .3s ease;
}

.featured-card:hover {
  box-shadow: 0 12px 48px var(--shadow), 0 0 0 1px var(--orange-brd);
}

.featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.8rem 3rem;
}

.feat-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--orange);
  font-family: "Space Mono", monospace;
  font-size: .63rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.feat-label::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}

.feat-title {
  margin: 0 0 1rem;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.feat-excerpt {
  margin: 0 0 1.8rem;
  color: var(--text-2);
  font-size: .9rem;
  line-height: 1.72;
}

.feat-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem 1.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}

.meta-t {
  color: var(--text-3);
  font-family: "Space Mono", monospace;
  font-size: .6rem;
  letter-spacing: .04em;
}

.meta-sep {
  width: 3px;
  height: 3px;
  background: var(--text-3);
  border-radius: 50%;
}

.featured-visual,
.card-thumb {
  position: relative;
  background: var(--bg-deeper);
  overflow: hidden;
}

.featured-visual {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.featured-visual svg,
.card-thumb svg {
  width: 100%;
  height: 100%;
  display: block;
}

.article-photo {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.divider {
  height: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(to right, transparent, var(--border-lt), transparent);
}

.posts-toolbar {
  margin-bottom: 1.6rem;
}

.search-box {
  display: flex;
  align-items: center;
  gap: .6rem;
  min-width: 260px;
  padding: .62rem .85rem;
  color: var(--text-3);
  background: rgba(51, 56, 63, .62);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.search-box:focus-within {
  border-color: var(--orange-brd);
  box-shadow: 0 0 0 3px var(--orange-dim);
}

.search-box svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.search-box input {
  width: 100%;
  min-width: 0;
  color: var(--cream);
  background: transparent;
  border: 0;
  outline: 0;
}

.search-box input::placeholder {
  color: var(--text-3);
}

.cat-pills {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cat-pill {
  color: var(--text-2);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  font-family: "Space Mono", monospace;
  font-size: .66rem;
  letter-spacing: .1em;
  padding: .44rem 1.1rem;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.cat-pill:hover,
.cat-pill.on {
  color: var(--orange);
  background: var(--orange-dim);
  border-color: var(--orange-brd);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.post-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, background .2s ease;
}

.post-card:hover {
  background: var(--bg-card-h);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .25), 0 0 0 1px var(--orange-brd);
  transform: translateY(-4px);
}

.card-thumb {
  aspect-ratio: 16 / 9;
}

.card-thumb-bg {
  position: absolute;
  inset: 0;
  transition: transform .5s ease;
}

.post-card:hover .card-thumb-bg {
  transform: scale(1.04);
}

.card-cat {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 2;
  color: var(--orange);
  background: rgba(45, 48, 54, .84);
  border: 1px solid var(--orange-brd);
  border-radius: 2px;
  backdrop-filter: blur(4px);
  font-family: "Space Mono", monospace;
  font-size: .56rem;
  letter-spacing: .14em;
  padding: .22rem .6rem;
  text-transform: uppercase;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem 1.5rem 1.5rem;
}

.card-title {
  margin: 0 0 .7rem;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.3;
  overflow-wrap: anywhere;
  transition: color .2s ease;
}

.post-card:hover .card-title {
  color: var(--orange-lt);
}

.card-excerpt {
  display: -webkit-box;
  flex: 1;
  margin: 0 0 1.2rem;
  color: var(--text-2);
  font-size: .82rem;
  line-height: 1.62;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.card-meta,
.card-read {
  font-family: "Space Mono", monospace;
  font-size: .58rem;
  letter-spacing: .04em;
}

.card-meta {
  color: var(--text-3);
}

.card-read {
  display: flex;
  align-items: center;
  gap: .3rem;
  color: var(--orange);
  text-transform: uppercase;
  transition: gap .2s ease;
  white-space: nowrap;
}

.post-card:hover .card-read {
  gap: .6rem;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 2.2rem;
  color: var(--text-2);
  background: rgba(51, 56, 63, .5);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
}

.reader {
  padding-top: 2rem;
}

body.post-view .hero,
body.post-view .horizon,
body.post-view .showcase-news,
body.post-view .stats-bar,
body.post-view #featured,
body.post-view #posts,
body.post-view .newsletter,
body.post-view .footer,
body.post-view main > .divider {
  display: none;
}

body.post-view .reader {
  max-width: none;
  min-height: 100vh;
  padding: 7.4rem 0 4.5rem;
}

body.post-view .reader-shell {
  display: block;
  width: min(1060px, 100%);
  margin: 0 auto;
  padding: 0 2rem;
}

.reader-back {
  display: inline-flex;
  margin: 0 0 1rem;
  color: var(--orange);
  font-family: "Space Mono", monospace;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reader-shell {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2rem;
  align-items: start;
}

.article-panel {
  min-width: 0;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
  overflow: hidden;
}

body.post-view .article-panel {
  background: #f3eee6;
  border-color: rgba(0, 0, 0, .12);
  border-left-width: 4px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
}

.article-hero {
  height: 240px;
  background: var(--bg-deeper);
  overflow: hidden;
}

.article-hero svg {
  width: 100%;
  height: 100%;
  display: block;
}

body.post-view .article-hero {
  height: 220px;
}

.article-body {
  padding: 2.5rem 3rem 3rem;
}

body.post-view .article-body {
  padding: 3.2rem clamp(1.35rem, 5vw, 5rem) 4rem;
}

.article-kicker {
  margin: 0 0 .9rem;
  color: var(--orange);
  font-family: "Space Mono", monospace;
  font-size: .64rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.article-title {
  margin: 0 0 1rem;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

body.post-view .article-title {
  color: #20242a;
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  line-height: 1.05;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1rem;
  margin-bottom: 2rem;
  color: var(--text-3);
  font-family: "Space Mono", monospace;
  font-size: .62rem;
}

body.post-view .article-meta {
  color: #68707a;
  margin-bottom: 2.6rem;
}

.article-content {
  color: var(--text-2);
  font-size: 1rem;
  overflow-wrap: anywhere;
}

body.post-view .article-content {
  color: #2e333a;
  font-size: 1.08rem;
  line-height: 1.9;
}

.article-content h3 {
  margin: 2rem 0 .65rem;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
}

body.post-view .article-content h3 {
  color: #20242a;
  font-size: 1.9rem;
  margin-top: 2.4rem;
}

.article-content p {
  margin: 0 0 1.15rem;
}

body.post-view .article-content p {
  margin-bottom: 1.3rem;
}

.article-content ul {
  margin: .3rem 0 1.3rem;
  padding-left: 1.2rem;
}

.article-content li {
  margin-bottom: .55rem;
}

.article-inline-image {
  margin: 2rem 0;
}

.article-inline-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: var(--bg-deeper);
}

.article-inline-image figcaption {
  margin-top: .6rem;
  color: var(--text-3);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  text-align: center;
}

body.post-view .article-inline-image figcaption {
  color: #68707a;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}

body.post-view .article-tags {
  border-top-color: rgba(0, 0, 0, .12);
}

.article-tag {
  color: var(--text-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: "Space Mono", monospace;
  font-size: .58rem;
  letter-spacing: .08em;
  padding: .25rem .65rem;
  text-transform: uppercase;
}

body.post-view .article-tag {
  color: #3b424b;
  border-color: rgba(0, 0, 0, .15);
}

.side-panel {
  position: sticky;
  top: 6.4rem;
  display: grid;
  gap: .8rem;
}

body.post-view .side-panel {
  position: static;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.side-title {
  margin: 0 0 .5rem;
  color: var(--text-3);
  font-family: "Space Mono", monospace;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.mini-post {
  display: block;
  padding: 1rem;
  color: var(--text-2);
  background: rgba(51, 56, 63, .52);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.mini-post:hover,
.mini-post.is-active {
  color: var(--cream);
  background: rgba(51, 56, 63, .82);
  border-color: var(--orange-brd);
}

.mini-post strong {
  display: block;
  color: inherit;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.03rem;
  font-weight: 600;
  line-height: 1.22;
}

.mini-post span {
  display: block;
  margin-top: .45rem;
  color: var(--text-3);
  font-family: "Space Mono", monospace;
  font-size: .56rem;
}

.newsletter {
  position: relative;
  overflow: hidden;
  padding: 5.2rem 3rem;
  background:
    linear-gradient(rgba(51, 56, 63, .84), rgba(51, 56, 63, .84)),
    linear-gradient(90deg, rgba(232, 100, 26, .08) 1px, transparent 1px),
    linear-gradient(rgba(232, 100, 26, .08) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.nl-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.nl-eyebrow {
  margin: 0 0 .8rem;
  color: var(--orange);
  font-family: "Space Mono", monospace;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.nl-title {
  margin: 0;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.6rem;
  font-weight: 300;
  letter-spacing: .08em;
  line-height: .95;
}

.nl-desc {
  max-width: 520px;
  margin: 1.4rem auto 2rem;
  color: var(--text-2);
}

.nl-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-deeper);
  border: 1px solid var(--border-lt);
  border-radius: 4px;
  overflow: hidden;
}

.nl-input {
  flex: 1;
  min-width: 0;
  padding: .9rem 1rem;
  color: var(--cream);
  background: transparent;
  border: 0;
  outline: 0;
}

.nl-input::placeholder {
  color: var(--text-3);
}

.nl-submit {
  flex: 0 0 auto;
  color: #fff;
  background: var(--orange);
  border: 0;
  cursor: pointer;
  font-size: .84rem;
  font-weight: 500;
  padding: 0 1.4rem;
  transition: background .2s ease;
}

.nl-submit:hover {
  background: var(--orange-lt);
}

.nl-status {
  min-height: 1.5rem;
  margin: .9rem 0 0;
  color: var(--text-2);
  font-size: .84rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem 3rem;
  color: var(--text-3);
  background: var(--bg-dark);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.footer-brand svg {
  width: 28px;
  height: 26px;
}

.footer-name {
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  letter-spacing: .22em;
}

.footer-copy {
  margin: 0;
  font-size: .82rem;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
  font-size: .82rem;
}

.footer-links a:hover {
  color: var(--orange);
}

.subpage {
  min-height: 100vh;
  padding-top: 4.6rem;
}

.sub-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 3rem 5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.sub-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18%;
  width: min(780px, 84vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to right, transparent, rgba(232, 100, 26, .52), transparent);
  box-shadow: 0 0 28px var(--orange-glow);
}

.sub-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(232, 100, 26, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 100, 26, .045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 44%, rgba(0, 0, 0, .92), rgba(0, 0, 0, .16) 68%, transparent);
}

.sub-content {
  position: relative;
  z-index: 2;
  width: min(840px, 100%);
  text-align: center;
}

.sub-mark {
  width: 96px;
  height: 86px;
  margin-bottom: 1.7rem;
  filter: drop-shadow(0 0 24px rgba(232, 100, 26, .3));
  animation: mark-float 7s ease-in-out infinite;
}

.sub-title {
  margin: 0;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: .98;
  letter-spacing: .08em;
}

.sub-copy {
  max-width: 720px;
  margin: 1.6rem auto 0;
  color: var(--text-2);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.55;
}

.sub-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}

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

.info-card {
  min-width: 0;
  padding: 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
}

.info-card span {
  display: inline-flex;
  margin-bottom: .9rem;
  color: var(--orange);
  font-family: "Space Mono", monospace;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.info-card h3 {
  margin: 0 0 .65rem;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

.info-card p {
  margin: 0;
  color: var(--text-2);
  font-size: .86rem;
  line-height: 1.65;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 2rem;
  align-items: start;
}

.about-copy {
  padding: 2rem 0;
}

.about-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--text-2);
}

.about-stack {
  display: grid;
  gap: 1rem;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
    gap: 1.2rem;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .hero-title {
    letter-spacing: .3em;
  }

  .featured-card,
  .reader-shell {
    grid-template-columns: 1fr;
  }

  .featured-visual {
    min-height: 240px;
    order: -1;
  }

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

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

  .about-section {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: .62rem;
    padding: .68rem .86rem;
  }

  .nav-logo {
    justify-self: center;
    max-width: 100%;
    gap: .55rem;
  }

  .nav-logo-svg {
    width: 25px;
    height: 24px;
  }

  .nav-wordmark {
    align-items: center;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: .48rem .86rem;
  }

  .nav-links a {
    font-size: .68rem;
    line-height: 1.2;
    padding: .12rem 0;
  }

  .hero {
    min-height: 100svh;
    padding: 7.3rem 1rem 4.2rem;
  }

  .subpage {
    padding-top: 7.8rem;
  }

  .sub-hero {
    min-height: 62vh;
    padding: 5rem 1.2rem 4rem;
  }

  .sub-copy {
    font-size: 1.12rem;
  }

  .sub-mark {
    width: 78px;
    height: 70px;
    margin-bottom: 1.2rem;
  }

  .hero-mark {
    width: 88px;
    height: 82px;
    margin-bottom: 1.4rem;
  }

  .hero-title {
    font-size: clamp(3.15rem, 18vw, 6rem);
    letter-spacing: .18em;
    line-height: .92;
  }

  .hero-sub {
    font-size: .58rem;
    letter-spacing: .18em;
    line-height: 1.8;
  }

  .hero-slogan {
    font-size: .58rem;
    letter-spacing: .14em;
  }

  .hero-quote p {
    font-size: 1.25rem;
  }

  .stats-bar,
  .showcase-news,
  .section,
  .newsletter,
  .footer {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem 1rem;
  }

  .showcase-inner {
    grid-template-columns: 1fr;
  }

  .showcase-media {
    min-height: 190px;
  }

  .showcase-copy {
    padding: 0 1.25rem 1.55rem;
  }

  .sec-head,
  .posts-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-box {
    min-width: 0;
    width: 100%;
  }

  .posts-grid,
  .info-grid,
  .side-panel {
    grid-template-columns: 1fr;
  }

  .featured-card,
  .post-card,
  .article-panel {
    border-radius: 3px;
  }

  .featured-body,
  .article-body {
    padding: 1.8rem 1.25rem;
  }

  .feat-title {
    font-size: 1.65rem;
  }

  .feat-meta,
  .card-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: .58rem;
  }

  .card-body {
    padding: 1.15rem 1.15rem 1.25rem;
  }

  body.post-view .reader {
    padding-top: 6.7rem;
  }

  body.post-view .reader-shell {
    padding: 0 .86rem;
  }

  body.post-view .article-hero {
    height: 170px;
  }

  body.post-view .article-body {
    padding: 2rem 1.05rem 2.6rem;
  }

  .article-title {
    font-size: 2rem;
  }

  body.post-view .article-title {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  body.post-view .article-content {
    font-size: 1rem;
    line-height: 1.82;
  }

  body.post-view .side-panel {
    grid-template-columns: 1fr;
  }

  .nl-title {
    font-size: 2.6rem;
  }

  .nl-form {
    flex-direction: column;
  }

  .nl-submit {
    min-height: 46px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .nav-name {
    font-size: .88rem;
    letter-spacing: .18em;
  }

  .nav-tagline {
    font-size: .43rem;
    letter-spacing: .16em;
  }

  .nav-links {
    gap: .44rem .64rem;
  }

  .nav-links a {
    font-size: .62rem;
  }

  .hero {
    padding-top: 7.9rem;
  }

  .hero-mark {
    width: 74px;
    height: 68px;
    margin-bottom: 1rem;
  }

  .hero-brand {
    margin-bottom: 1.75rem;
  }

  .hero-title {
    font-size: clamp(2.7rem, 17vw, 4.1rem);
    letter-spacing: .08em;
  }

  .hero-sub {
    font-size: .5rem;
    letter-spacing: .08em;
  }

  .hero-divider {
    gap: .45rem;
  }

  .hero-divider::before,
  .hero-divider::after {
    min-width: 26px;
  }

  .hero-slogan {
    font-size: .52rem;
    letter-spacing: .09em;
  }

  .hero-quote {
    margin-bottom: 2.3rem;
  }

  .hero-quote p {
    font-size: 1.08rem;
  }

  .stats-bar,
  .showcase-news,
  .section,
  .newsletter,
  .footer {
    padding-left: .9rem;
    padding-right: .9rem;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }

  .showcase-media {
    min-height: 160px;
  }

  .cat-pill {
    font-size: .58rem;
    padding: .4rem .82rem;
  }

  .card-meta,
  .card-read,
  .meta-t {
    font-size: .54rem;
  }

  .reader-back {
    font-size: .58rem;
  }

  body.post-view .reader {
    padding-top: 6.35rem;
  }

  body.post-view .article-hero {
    height: 145px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
