:root {
  /* Volcanic Crimson & Dark Pitch Palette */
  --ink: #070707;
  --ink-secondary: #0e0c0c;
  --paper: #e6e0d8;
  --paper-bright: #ffffff;
  --muted: #9e968b;
  
  /* Primary Accents */
  --crimson: #d23918;
  --crimson-glow: rgba(210, 57, 24, 0.45);
  --fuchsia: #d23918;
  --orange: #d23918;
  --orange-light: #e64522;
  
  --gold: #cfa35e;
  --cyan: #00f0ff;
  --lime: #ccff00;
  
  --line: rgba(210, 57, 24, 0.22);
  --panel: #110e0e;
  --card-bg: #121010;
  
  --display-title: "Oswald", "Barlow Condensed", sans-serif;
  --display: "Playfair Display", "Ibarra Real Nova", Georgia, serif;
  --sans: "Plus Jakarta Sans", sans-serif;
  --mono: "Space Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
}

body:has(dialog[open]),
body.menu-open {
  overflow: hidden;
}

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

button, input {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid var(--orange-light);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1320px, calc(100% - 48px));
  margin: auto;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font: 12px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral);
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 760px;
  margin: 18px 0 0;
  font: 800 clamp(2.4rem, 6.5vw, 5.2rem)/.96 var(--display);
  letter-spacing: -.055em;
}

.section-intro {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.08rem;
  margin-top: 23px;
}

/* Nav Sentinel & Header Navigation Wrapper */
.sentinel {
  height: 1px;
  width: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(1280px, calc(100% - 16px));
  margin: 6px auto;
  position: relative;
  z-index: 90;
}

#site-header {
  flex: 1;
  position: relative;
  z-index: 90;
  margin: 0;
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, width 0.28s ease;
}

.header-subscribe-standalone {
  flex-shrink: 0;
  background: var(--fuchsia);
  color: #FFFFFF;
  border: 2px solid var(--fuchsia);
  font-weight: 700;
  height: 60px;
  padding: 0 24px;
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(255, 0, 170, .45);
  transition: all .2s ease;
}

.header-subscribe-standalone:hover {
  background: var(--lime);
  color: #1A0033;
  border-color: var(--lime);
  box-shadow: 0 0 26px rgba(204, 255, 0, .6);
  transform: translateY(-2px);
}

#site-header.is-docked-bottom {
  position: fixed;
  top: auto;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  margin: 0;
  width: min(640px, calc(100% - 24px));
  box-shadow: 0 16px 42px rgba(0, 0, 0, .45);
  animation: slideUpNav 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpNav {
  0% {
    transform: translateX(-50%) translateY(120%);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

.nav {
  min-height: 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 0 12px;
}

.nav-left {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-center {
  justify-self: center;
  text-align: center;
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-trigger {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 50%;
  font: 22px/1 Georgia, serif;
  transition: color .2s, background .2s;
  cursor: pointer;
}

.search-trigger:hover {
  color: var(--orange);
  background: rgba(0, 0, 0, .06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.055em;
  font-family: var(--sans);
  white-space: nowrap;
}

.brand em {
  color: var(--orange);
  font-style: normal;
}

.menu-button-always {
  display: inline-flex;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
  border: 0;
  font-size: 1.3rem;
  transition: background .2s, color .2s;
}

.menu-button-always:hover {
  background: rgba(0, 0, 0, .06);
  color: var(--orange);
}

/* Drop-up Search Sheet */
.search-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.search-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.search-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 130;
  height: clamp(440px, 68vh, 680px);
  background: var(--panel);
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, .6);
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.search-sheet.open {
  transform: translateY(0);
  pointer-events: auto;
}

.search-sheet-handle {
  width: 42px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .25);
  margin: 0 auto 14px;
}

.search-sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
}

.search-sheet-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
  padding-right: 4px;
}

.oversized-input-wrapper {
  margin-top: 8px;
}

.oversized-search-input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--orange-light);
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  padding: 10px 0;
  outline: none;
}

.oversized-search-input::placeholder {
  color: rgba(255, 255, 255, .28);
}

.sheet-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.nav-links {
  display: flex;
  gap: 36px;
  color: var(--ink);
  font: 12px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links a {
  padding: 6px 0;
  position: relative;
  transition: color .2s;
}

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

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button, .icon-button {
  border: 1px solid transparent;
  min-height: 42px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  transition: transform .2s, background .2s, border-color .2s, color .2s;
}

.button:hover, .icon-button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--fuchsia);
  color: #FFFFFF;
  font-weight: 700;
  border: 1px solid var(--fuchsia);
  box-shadow: 0 0 18px rgba(255, 0, 170, 0.4);
}

.button-primary:hover {
  background: var(--lime);
  color: #1A0033;
  border-color: var(--lime);
  box-shadow: 0 0 24px rgba(204, 255, 0, 0.55);
}

.button-dark {
  background: var(--ink-secondary);
  color: var(--paper);
  border: 1px solid var(--line);
  font-weight: 700;
}

.button-dark:hover {
  background: var(--fuchsia);
  color: #FFFFFF;
  border-color: var(--fuchsia);
  box-shadow: 0 0 18px rgba(255, 0, 170, 0.4);
}

.button-outline {
  border-color: var(--cyan);
  color: var(--cyan);
  background: transparent;
}

.button-outline:hover {
  background: var(--cyan);
  color: #1A0033;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.5);
}

.icon-button {
  width: 42px;
  padding: 0;
  background: transparent;
  color: var(--ink);
  border-color: transparent;
}

.menu-button {
  display: none;
}

/* Page Banner Headers for Sub-Pages */
.page-header {
  padding: 110px 0 60px;
}

.page-header h1 {
  max-width: 1150px;
  margin: 20px 0 24px;
  font: 800 clamp(3rem, 6.5vw, 6.2rem)/.91 var(--display);
  letter-spacing: -.06em;
}

.page-header .lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.6;
}

/* Hero Section & Integrated Story Card (Homepage) */
.hero-section {
  padding: 48px 0 32px;
}

.hero-story-card {
  position: relative;
  width: 100%;
  height: clamp(500px, 65vh, 580px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(36px, 5.5vw, 68px);
  background: var(--card-bg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .55);
}

.hero-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75;
  transition: opacity .4s ease, transform .4s ease;
}

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,16,15,.15) 0%, rgba(17,16,15,.65) 45%, rgba(17,16,15,.96) 100%);
  pointer-events: none;
}

.hero-card-content {
  position: relative;
  z-index: 2;
  max-width: 940px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.hero-card-content h2 {
  margin: 4px 0 0;
  color: var(--paper);
  font: 800 clamp(2.2rem, 4.5vw, 4.2rem)/.96 var(--display);
  letter-spacing: -.04em;
  transition: opacity .3s ease;
}

.hero-card-content .dek {
  margin: 0;
  color: var(--gold);
  font: 700 clamp(1.1rem, 2vw, 1.45rem)/1.2 var(--display);
  transition: opacity .3s ease;
}

.hero-card-content .excerpt {
  margin: 0 0 10px;
  color: #ded7ce;
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  max-width: 780px;
  transition: opacity .3s ease;
}

.hero-card-controls {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(17, 16, 15, .65);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
}

.hero-control {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: #fff;
  background: rgba(0,0,0,.3);
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  transition: background .2s, border-color .2s;
}

.hero-control:hover {
  background: var(--fuchsia);
  border-color: var(--fuchsia);
  box-shadow: 0 0 12px rgba(255, 0, 170, 0.6);
}

.hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transition: background .2s, transform .2s;
}

.hero-dot[aria-current="true"] {
  background: var(--lime);
  transform: scale(1.4);
  box-shadow: 0 0 8px rgba(204, 255, 0, 0.7);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 170px;
  border: 1px solid var(--fuchsia);
  border-radius: 999px;
  padding: 14px 26px;
  color: #FFFFFF;
  background: var(--fuchsia);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  box-shadow: 0 0 20px rgba(255, 0, 170, 0.45);
  transition: all .2s ease;
}

.read-more:hover {
  background: var(--lime);
  color: #1A0033;
  border-color: var(--lime);
  box-shadow: 0 0 24px rgba(204, 255, 0, 0.6);
}

/* Statement Section */
.statement {
  background: var(--paper);
  color: var(--ink);
}

.statement .section-heading {
  color: var(--ink);
}

.statement .section-intro {
  color: #625c54;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.value {
  padding: 28px;
  background: #fff;
  border: 1px solid #e5ded5;
  border-radius: 18px;
}

.value-number {
  color: var(--orange);
  font: 14px var(--mono);
  font-weight: 600;
}

.value h3 {
  margin: 36px 0 8px;
  font-size: 1.25rem;
  letter-spacing: -.03em;
}

.value p {
  margin: 0;
  color: #625c54;
  font-size: .96rem;
  line-height: 1.5;
}

/* Story Cards & Grids */
.archive-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.text-link {
  color: var(--orange-light);
  font-weight: 600;
  font-size: .92rem;
  border: 0;
  padding: 0;
  background: none;
  transition: color .2s;
}

.text-link:hover {
  color: var(--paper);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

/* Bento Grid Layout Variants */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 340px;
  gap: 28px;
  margin-top: 56px;
}

.bento-grid .story-card {
  height: 100%;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

/* Feature 1st card in Bento as a 2x2 large hero cell */
.bento-grid .story-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-grid .story-card:nth-child(1) .story-image {
  aspect-ratio: auto;
  height: 65%;
}

.bento-grid .story-card:nth-child(1) h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

/* 4th card in Bento as a 2x1 wide horizontal cell */
.bento-grid .story-card:nth-child(4) {
  grid-column: span 2;
  grid-row: span 1;
  flex-direction: row;
}

.bento-grid .story-card:nth-child(4) .story-image {
  width: 48%;
  height: 100%;
  aspect-ratio: auto;
}

.bento-grid .story-card:nth-child(4) .story-content {
  width: 52%;
  justify-content: center;
  padding: 32px 36px;
}

/* Standard Bento cells */
.bento-grid .story-card:nth-child(2) .story-image,
.bento-grid .story-card:nth-child(3) .story-image,
.bento-grid .story-card:nth-child(5) .story-image,
.bento-grid .story-card:nth-child(6) .story-image {
  aspect-ratio: auto;
  height: 52%;
}

@media (max-width: 980px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
  }
  .bento-grid .story-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
  .bento-grid .story-card:nth-child(4) {
    grid-column: span 2;
    flex-direction: column;
  }
  .bento-grid .story-card:nth-child(4) .story-image,
  .bento-grid .story-card:nth-child(4) .story-content {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .bento-grid .story-card:nth-child(1),
  .bento-grid .story-card:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
    flex-direction: column;
  }
  .bento-grid .story-card .story-image {
    aspect-ratio: 4 / 5 !important;
    height: auto !important;
  }
}

.story-card {
  width: 100%;
  overflow: hidden;
  text-align: left;
  padding: 0;
  color: var(--paper);
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  cursor: pointer;
}

.story-card:hover {
  transform: translateY(-8px);
  border-color: var(--fuchsia);
  box-shadow: 0 16px 40px rgba(255, 0, 170, .28);
}

.story-card:focus-visible {
  outline-offset: 4px;
}

.story-image {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  background: #282420;
}

.story-content {
  padding: 26px 28px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tag {
  display: inline-block;
  padding: 5px 11px;
  background: var(--lime);
  color: #1A0033;
  border-radius: 999px;
  font: 700 10px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(204, 255, 0, 0.35);
}

.story-card h3 {
  margin: 14px 0 12px;
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: -.03em;
  font-family: var(--display);
}

.story-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-card small {
  color: var(--muted);
  margin-top: auto;
  font-size: .78rem;
  font-family: var(--mono);
}

/* Spotlight Section */
.spotlight {
  background: #1c130d;
  border-block: 1px solid rgba(255, 129, 77, .25);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  margin-top: 48px;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature {
  padding: 25px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
}

.feature h3 {
  margin: 10px 0 6px;
  font-size: 1.22rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.feature-photo {
  min-height: 400px;
  padding: 28px;
  display: flex;
  align-items: flex-end;
  border-radius: 16px;
  background: linear-gradient(0deg, rgba(0,0,0,.78), rgba(0,0,0,.05)), url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.feature-photo p {
  max-width: 390px;
  margin: 8px 0 0;
  color: #e6ded5;
}

/* Social & Instagram Section */
.social {
  text-align: center;
}

.social .section-intro {
  margin-inline: auto;
}

.instagram-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding: 18px 28px;
  text-align: left;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color .2s, transform .2s;
}

.instagram-card:hover {
  border-color: var(--orange-light);
  transform: translateY(-2px);
}

.instagram-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffca49, #f75b3e 45%, #b344ad);
  font-weight: 800;
  color: #fff;
  font-size: 1.2rem;
}

.instagram-card strong,
.instagram-card span {
  display: block;
}

.instagram-card span {
  margin-top: 1px;
  color: var(--muted);
  font-size: .88rem;
}

/* Newsletter CTA */
.cta {
  margin: 0 auto 96px;
  padding: clamp(36px, 7vw, 72px);
  position: relative;
  overflow: hidden;
  background: var(--orange);
  border-radius: 24px;
  text-align: center;
}

.cta::after {
  content: "VR";
  position: absolute;
  right: -20px;
  bottom: -70px;
  font: 800 250px/.75 var(--display);
  color: rgba(255, 255, 255, .14);
  pointer-events: none;
}

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

.cta h2 {
  max-width: 650px;
  margin: auto;
  font: 800 clamp(2.4rem, 5.8vw, 4.5rem)/.93 var(--display);
  letter-spacing: -.06em;
}

.cta p {
  max-width: 480px;
  margin: 18px auto 28px;
  color: rgba(255, 255, 255, .9);
  font-size: 1.08rem;
}

/* Footer */
footer {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 20px;
}

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

/* Dialog & Modals */
dialog {
  width: min(720px, calc(100% - 32px));
  max-height: min(780px, calc(100svh - 32px));
  padding: 0;
  color: var(--paper);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .7);
}

dialog::backdrop {
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(5px);
}

.dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 28px 20px;
  border-bottom: 1px solid var(--line);
}

.dialog-body {
  padding: 26px 28px 32px;
  overflow-y: auto;
  max-height: calc(100svh - 200px);
}

.dialog-title {
  margin: 12px 0 6px;
  font: 800 clamp(1.8rem, 4.5vw, 3rem)/.98 var(--display);
  letter-spacing: -.04em;
}

.dialog-meta {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  font-family: var(--mono);
}

.article-copy {
  color: #ded7ce;
  line-height: 1.7;
  font-size: 1.05rem;
}

.article-copy p {
  margin: 0 0 20px;
}

.article-dek-subhead {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.35;
  margin-bottom: 24px !important;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.article-figure {
  margin: 28px 0;
  width: 100%;
}

.article-inline-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.article-caption {
  margin-top: 8px;
  font-size: 0.84rem;
  color: var(--muted);
  font-family: var(--mono);
  text-align: center;
}

.dialog-footer {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}

.close {
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--paper);
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background .2s;
}

.close:hover {
  background: rgba(255, 255, 255, .18);
}

.newsletter {
  width: min(500px, calc(100% - 32px));
}

.newsletter h2 {
  margin: 0 0 8px;
  font: 800 2.5rem/.95 var(--display);
  letter-spacing: -.05em;
}

.newsletter p {
  color: var(--muted);
  margin: 0;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.signup-form input {
  min-height: 52px;
  padding: 0 18px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
}

.signup-form input:focus {
  border-color: var(--orange-light);
  outline: none;
}

.form-note {
  margin-top: 15px !important;
  font-size: .78rem;
  color: var(--muted);
}

.status {
  min-height: 21px;
  margin: 12px 0 0 !important;
  color: var(--orange-light) !important;
  font-size: .86rem;
}

/* Mobile Navigation Overlay */
.mobile-menu {
  position: fixed;
  z-index: 85;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 90px 24px 40px;
  background: rgba(17, 16, 15, 0.96);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(440px, 100%);
  text-align: center;
}

.mobile-menu a, .mobile-menu button {
  width: 100%;
  padding: 14px 0;
  text-align: center;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  transition: color .2s, border-color .2s;
}

.mobile-menu a:hover, .mobile-menu button:hover {
  color: var(--orange-light);
  border-bottom-color: var(--orange-light);
}

.mobile-menu .menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Toast Notifications */
.toast {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  max-width: min(380px, calc(100% - 40px));
  padding: 15px 18px;
  color: var(--paper);
  background: #2e2a26;
  border: 1px solid rgba(255, 129, 77, .7);
  border-radius: 12px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, .4);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Search Page Components */
.searchbox-wrapper {
  position: relative;
  margin-top: 10px;
}

.searchbox {
  width: 100%;
  padding: 18px 24px;
  padding-right: 50px;
  color: var(--paper);
  background: #201e1b;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 1.15rem;
  transition: border-color .2s;
}

.searchbox:focus {
  outline: none;
  border-color: var(--orange-light);
  box-shadow: 0 0 0 3px rgba(255, 129, 77, .25);
}

.search-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 1.2rem;
  display: none;
  padding: 6px;
  border-radius: 50%;
}

.search-clear:hover {
  color: var(--paper);
}

.search-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.filter-chip {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
  font-size: .86rem;
  font-family: var(--mono);
  transition: background .2s, color .2s, border-color .2s;
}

.filter-chip:hover,
.filter-chip.active {
  background: var(--orange-light);
  color: #fff;
  border-color: var(--orange-light);
}

.results-meta {
  margin-top: 24px;
  color: var(--muted);
  font-size: .9rem;
  font-family: var(--mono);
}

/* Team / About Cards */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.about-card {
  padding: 28px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.about-card h3 {
  margin: 16px 0 8px;
  font-size: 1.3rem;
  font-family: var(--display);
}

.about-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.team-member {
  padding: 24px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.team-member h4 {
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.team-member span {
  display: block;
  color: var(--orange-light);
  font: 11px var(--mono);
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.team-member p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .about-grid, .team-grid, .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .header-subscribe-standalone {
    display: none !important;
  }
  .nav-links, .nav-actions .button-outline {
    display: none;
  }
  .menu-button {
    display: inline-flex;
  }
  .article-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-photo {
    min-height: 300px;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .about-grid, .team-grid, .value-grid {
    grid-template-columns: 1fr;
  }
  .page-header {
    padding-top: 50px;
  }
  .searchbox {
    padding: 14px 18px;
    font-size: 1rem;
  }
}

/* ==================== ART DIRECTION LANDING PAGE STYLES ==================== */

.brand-art-title {
  font-family: var(--display-title);
  font-size: clamp(3.2rem, 9.5vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--paper-bright);
  font-weight: 700;
  margin: 0 0 16px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.brand-art-title span {
  display: inline-block;
  font-size: 0.35em;
  vertical-align: super;
  color: var(--crimson);
}

.hero-art-section {
  position: relative;
  min-height: clamp(580px, 80vh, 780px);
  padding: 40px 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(7,7,7,0.3) 0%, rgba(7,7,7,0.75) 60%, rgba(7,7,7,0.98) 100%),
              url("https://images.unsplash.com/photo-1523398002811-999ca8dec234?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
  margin-top: 24px;
  margin-bottom: 80px;
}

.hero-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px clamp(24px, 5vw, 56px);
  z-index: 2;
}

.coords-badge {
  font: 700 12px/1.4 var(--mono);
  color: var(--paper-bright);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: right;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--crimson);
  box-shadow: 0 0 16px var(--crimson-glow);
  min-width: 280px;
}

.coords-badge strong {
  display: block;
  color: var(--crimson);
  font-weight: 700;
  min-height: 18px;
  letter-spacing: 0.05em;
  transition: color 0.15s ease;
}

.circular-seal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--crimson);
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(12px);
  font: 700 11px var(--mono);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 0 20px var(--crimson-glow);
  z-index: 10;
}

.seal-spinner {
  display: inline-block;
  color: var(--crimson);
  font-size: 15px;
  animation: spinSeal 7s linear infinite;
}

@keyframes spinSeal {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-main-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(24px, 5vw, 56px);
  max-width: 900px;
}

.badge-tagline {
  display: inline-block;
  border: 1px solid var(--crimson);
  padding: 6px 14px;
  color: var(--crimson);
  font: 11px var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-manifesto-text {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--paper);
  line-height: 1.55;
  max-width: 580px;
  margin-bottom: 28px;
}

.hero-nav-index {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px clamp(24px, 5vw, 56px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 2;
  font: 12px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.hero-nav-index a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.hero-nav-index a:hover {
  color: var(--crimson);
}

.hero-nav-index a span {
  color: var(--crimson);
  font-size: 10px;
}

/* Explore 5 District Pillars */
.pillars-section {
  margin-bottom: 100px;
}

.pillars-header {
  margin-bottom: 40px;
}

.pillars-header h2 {
  font-family: var(--display-title);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 10px 0 8px;
}

.pillars-header p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 540px;
  margin: 0;
}

.pillar-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.pillar-card {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: var(--paper-bright);
  background: var(--card-bg);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--crimson);
  box-shadow: 0 16px 40px var(--crimson-glow);
}

.pillar-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pillar-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.pillar-card:hover .pillar-bg img {
  transform: scale(1.06);
  opacity: 0.75;
}

.pillar-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(7,7,7,0.1) 0%, rgba(7,7,7,0.85) 75%, rgba(7,7,7,0.98) 100%);
}

.pillar-content {
  position: relative;
  z-index: 3;
}

.pillar-number {
  font: 700 12px var(--mono);
  color: var(--crimson);
  display: block;
  margin-bottom: 6px;
}

.pillar-content h3 {
  font-family: var(--display-title);
  font-size: 1.65rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 6px;
  line-height: 1;
}

.pillar-content p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.35;
}

/* Featured Story & Impact Stats Section */
.featured-impact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 100px;
}

.glitch-photo-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 380px;
  background: #110e0e;
}

.glitch-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: contrast(1.15) saturate(1.1);
}

.glitch-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(210,57,24,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.featured-story-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-story-card h2 {
  font-family: var(--display-title);
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}

.featured-story-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.stats-card-column {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 20px;
}

.stat-item strong {
  display: block;
  font-family: var(--display-title);
  font-size: 3.2rem;
  color: var(--crimson);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.stat-item span {
  font: 11px var(--mono);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 4px;
}

/* Event Ticket Banner */
.event-ticket-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--crimson);
  padding: clamp(36px, 5vw, 56px);
  background: linear-gradient(90deg, rgba(7,7,7,0.92) 0%, rgba(7,7,7,0.7) 60%, rgba(210,57,24,0.3) 100%),
              url("https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  box-shadow: 0 20px 60px rgba(210, 57, 24, 0.25);
}

.event-ticket-info h2 {
  font-family: var(--display-title);
  font-size: clamp(3rem, 7vw, 5.5rem);
  text-transform: uppercase;
  line-height: 0.88;
  margin: 10px 0 16px;
  letter-spacing: -0.02em;
}

.event-details-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font: 12px var(--mono);
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.event-details-row span {
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.6);
}

/* Media Queries for 5 Pillars & Impact Grid */
@media (max-width: 1100px) {
  .pillar-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .featured-impact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-card-column {
    grid-column: span 2;
    flex-direction: row;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .pillar-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-impact-grid {
    grid-template-columns: 1fr;
  }
  .stats-card-column {
    grid-column: span 1;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .pillar-grid-5 {
    grid-template-columns: 1fr;
  }
}

/* ==================== ARTICLE PAGE ART DIRECTION STYLES ==================== */

.story-art-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  min-height: 520px;
  margin-bottom: 60px;
  position: relative;
}

.story-art-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-art-hero-left .story-breadcrumb {
  font: 11px var(--mono);
  letter-spacing: 0.12em;
  color: var(--crimson);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.story-art-hero-left h1 {
  font-family: var(--display-title);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--paper-bright);
  margin: 0 0 20px;
}

.story-art-hero-left .dek {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.35;
  color: var(--gold);
  margin-bottom: 28px;
}

.story-author-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--crimson);
}

.author-meta {
  font: 12px var(--mono);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.author-meta strong {
  display: block;
  color: var(--paper-bright);
  font-size: 13px;
}

.story-share-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font: 11px var(--mono);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.story-share-row button {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--paper-bright);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font: 11px var(--mono);
  transition: border-color 0.2s, color 0.2s;
}

.story-share-row button:hover {
  border-color: var(--crimson);
  color: var(--crimson);
}

.story-art-hero-right {
  position: relative;
  height: 100%;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card-bg);
}

.story-art-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-art-hero-right .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,7,7,0.1) 0%, rgba(7,7,7,0.6) 60%, rgba(7,7,7,0.92) 100%);
}

.hero-seal-watermark {
  position: absolute;
  top: 24px;
  left: 24px;
  font: 11px var(--mono);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(8,8,8,0.7);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--crimson);
}

/* Vintage Parchment Canvas */
.paper-reading-canvas {
  background: #EAE5DC;
  color: #1A1715;
  border-radius: 28px;
  padding: clamp(32px, 6vw, 68px);
  margin-bottom: 80px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  font-family: var(--sans);
  font-size: clamp(1.08rem, 1.35vw, 1.22rem);
  line-height: 1.85;
}

.drop-cap {
  float: left;
  font-family: var(--display-title);
  font-size: clamp(4.2rem, 8vw, 6.5rem);
  line-height: 0.78;
  padding-top: 4px;
  padding-right: 14px;
  padding-bottom: 4px;
  color: var(--crimson);
  font-weight: 700;
}

.pull-quote-card {
  background: rgba(210, 57, 24, 0.06);
  border-left: 4px solid var(--crimson);
  padding: 32px 36px;
  margin: 44px 0;
  border-radius: 0 16px 16px 0;
}

.pull-quote-card blockquote {
  margin: 0;
  font-family: var(--display-title);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
  color: #1A1715;
  letter-spacing: -0.01em;
}

.pull-quote-card cite {
  display: block;
  font: 700 12px var(--mono);
  color: var(--crimson);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 14px;
  font-style: normal;
}

.article-section-header {
  font-family: var(--display-title);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: #1A1715;
  margin: 48px 0 20px;
  letter-spacing: -0.01em;
}

.tag-chips-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(26, 23, 21, 0.15);
}

.tag-chip {
  font: 11px var(--mono);
  color: #1A1715;
  background: rgba(26, 23, 21, 0.08);
  border: 1px solid rgba(26, 23, 21, 0.18);
  padding: 6px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .story-art-hero {
    grid-template-columns: 1fr;
  }
}
