/* ================================================================
   TRUE PLACES RVA — Combined Stylesheet
   Generated from static HTML prototypes
   ================================================================ */

/* ═══════════════════════════════════════
   CSS VARIABLES / ROOT
   ═══════════════════════════════════════ */

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

:root {
  --bg-deep: #090e0b;
  --bg-card: #111a14;
  --bg-card-hover: #162019;
  --bg-surface: #0d140f;
  --text-primary: #e2dbd0;
  --text-secondary: #9a9487;
  --text-muted: #5e5a52;
  --accent-warm: #c4956a;
  --accent-gold: #d4a574;
  --accent-green: #4a7a52;
  --accent-green-muted: #2d4a33;
  --accent-sage: #6b8f6b;
  --border: #1e2b22;
  --border-light: #2a3a2e;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Libre Franklin', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ═══════════════════════════════════════
   BASE / RESET
   ═══════════════════════════════════════ */

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--accent-warm);
  color: var(--bg-deep);
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(9, 14, 11, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s ease, padding 0.4s ease;
}

nav.scrolled {
  padding: 0.8rem 2.5rem;
}

nav.nav-home {
  border-bottom: none;
  transition: background 0.4s ease, padding 0.4s ease;
}

nav.nav-home.scrolled {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-brand-icon {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--accent-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-warm);
  letter-spacing: -0.02em;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-brand-text span {
  color: var(--accent-warm);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-warm);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

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

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

/* ═══════════════════════════════════════
   SEARCH (Home Page Nav)
   ═══════════════════════════════════════ */

.nav-search {
  position: relative;
  margin-left: auto;
  margin-right: 2rem;
}

.nav-search-input {
  width: 220px;
  padding: 0.5rem 0.9rem 0.5rem 2.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  outline: none;
  transition: all 0.3s ease;
}

.nav-search-input::placeholder {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.nav-search-input:focus {
  width: 280px;
  border-color: var(--accent-warm);
  background: rgba(255,255,255,0.08);
}

.nav-search-icon {
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  pointer-events: none;
  transition: color 0.3s;
}

.nav-search-input:focus ~ .nav-search-icon {
  color: var(--accent-warm);
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  display: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 200;
}

.search-dropdown.active {
  display: block;
}

.search-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.search-dropdown-item:last-child {
  border-bottom: none;
}

.search-dropdown-item:hover,
.search-dropdown-item.highlighted {
  background: var(--bg-card-hover);
}

.search-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-warm);
  flex-shrink: 0;
}

.search-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.search-item-name {
  font-size: 0.85rem;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-item-name mark {
  background: none;
  color: var(--accent-warm);
  font-weight: 500;
}

.search-item-category {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.search-no-results {
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

/* ═══════════════════════════════════════
   HERO — HOME PAGE (Image Background)
   ═══════════════════════════════════════ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero.visible .hero-image {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(9,14,11,0.4) 0%,
      rgba(9,14,11,0.3) 30%,
      rgba(9,14,11,0.4) 60%,
      rgba(9,14,11,0.85) 85%,
      rgba(9,14,11,1) 100%
    );
}

.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 200px 60px rgba(9,14,11,0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.4);
}

/* ─── Split hero layout ─── */
.hero-split {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  padding: 0 5vw;
  gap: 3rem;
}

.hero-left {
  flex: 1;
  text-align: left;
  max-width: 600px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.4);
}

.hero-left .hero-tagline {
  justify-content: flex-start;
}

.hero-left .hero-tagline::before {
  display: none;
}

.hero-left .hero-subtitle {
  margin: 0;
}

/* ─── Hero news feed (right side) ─── */
.hero-news {
  flex: 0 0 340px;
  max-height: 60vh;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
  align-self: center;
}

.hero-news-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.75rem;
  padding: 0.55rem 1.2rem;
  background: rgba(9,14,11,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(196,149,106,0.25);
  border-radius: 4px 4px 0 0;
  flex-shrink: 0;
}

.hero-news-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-warm);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-news-track {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
  max-height: calc(70vh - 2rem);
  padding-right: 0.5rem;
  mask-image: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
  scrollbar-width: none;
}

.hero-news-track::-webkit-scrollbar {
  display: none;
}

.hero-news-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.2rem;
  background: rgba(9,14,11,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(196,149,106,0.12);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.hero-news-card:hover {
  background: rgba(9,14,11,0.7);
  border-color: rgba(196,149,106,0.3);
  transform: translateX(-4px);
}

.hero-news-card-date {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-news-card-cat {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-warm);
  opacity: 0.8;
}

.hero-news-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
}

.hero-news-card-excerpt {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Hero news track is manual scroll only */

/* Mobile: stack vertically, hide news */
@media (max-width: 900px) {
  .hero-split {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
  }
  .hero-left {
    text-align: center;
    max-width: 100%;
  }
  .hero-left .hero-tagline::before {
    display: inline-block;
  }
  .hero-left .hero-subtitle {
    margin: 0 auto;
  }
  .hero-news {
    display: none;
  }
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-tagline::before,
.hero-tagline::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent-warm);
  vertical-align: middle;
  opacity: 0.5;
}

.hero-tagline::before { margin-right: 1rem; }
.hero-tagline::after { margin-left: 1rem; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-title-rva {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--accent-warm);
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-gold);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
  z-index: 2;
}

.hero-scroll-text {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent-warm), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ═══════════════════════════════════════
   HERO — SINGLE PLACE PAGE
   ═══════════════════════════════════════ */

.hero-category {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-category-line {
  width: 32px;
  height: 1px;
  background: var(--accent-warm);
}

.hero-category-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

/* Single place hero content override */
.hero-single .hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 5vw 4rem;
  max-width: 900px;
  text-align: left;
  text-shadow: none;
}

.hero-single .hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-single .hero-overlay {
  background:
    linear-gradient(180deg,
      rgba(9,14,11,0.3) 0%,
      rgba(9,14,11,0.05) 30%,
      rgba(9,14,11,0.15) 60%,
      rgba(9,14,11,0.85) 85%,
      rgba(9,14,11,1) 100%
    );
}

/* ═══════════════════════════════════════
   HERO — ONE MINUTE WONDERS (Text-Only + Film Grain)
   ═══════════════════════════════════════ */

.hero-omw {
  min-height: 85vh;
  height: auto;
  padding: 8rem 2rem 6rem;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.7;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196,149,106,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(74,122,82,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(196,149,106,0.02) 0%, transparent 40%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(196,149,106,0.12), rgba(196,149,106,0.04));
  border: 1px solid rgba(196,149,106,0.2);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-warm);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero-badge-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

/* ═══════════════════════════════════════
   HERO — ABOUT PAGE (Quote)
   ═══════════════════════════════════════ */

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

.hero-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(74, 122, 82, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 30% 70%, rgba(196, 149, 106, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-quote-ornament {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--accent-warm), transparent);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeIn 1s ease 0.3s forwards;
}

.hero-quote-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--text-primary);
  max-width: 800px;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-quote-text em {
  font-style: italic;
  color: var(--accent-gold);
}

.hero-quote-attribution {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-quote-ornament-bottom {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--accent-warm), transparent);
  margin-top: 3rem;
  opacity: 0;
  animation: fadeIn 1s ease 1s forwards;
}

/* ═══════════════════════════════════════
   PAGE HEADER (News, Contribute)
   ═══════════════════════════════════════ */

.page-header {
  padding: 10rem 2.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(74, 122, 82, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 30% 70%, rgba(196, 149, 106, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.page-header-ornament {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent-warm), transparent);
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 0.3s forwards;
}

.page-header-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.page-header-title em {
  font-style: italic;
  color: var(--accent-gold);
}

.page-header-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease 0.75s forwards;
}

/* Contribute page header overrides */
.page-header-contribute {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-header-contribute .page-header-ornament {
  height: 64px;
  margin-bottom: 2.5rem;
}

.page-header-contribute .page-header-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.2;
  max-width: 700px;
}

.page-header-contribute .page-header-subtitle {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  max-width: 500px;
}

.page-header-ornament-bottom {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent-warm), transparent);
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 1s forwards;
}

/* ═══════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════ */

.section {
  padding: 6rem 5vw;
  max-width: 1300px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-warm);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 3rem;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.section-header-line {
  width: 32px;
  height: 1px;
  background: var(--accent-warm);
}

/* ═══════════════════════════════════════
   METADATA BAR (Single Place)
   ═══════════════════════════════════════ */

.meta-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 5vw;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  background: var(--bg-surface);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.meta-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.meta-value {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-primary);
}

.meta-value a {
  color: var(--accent-warm);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.meta-value a:hover {
  border-bottom-color: var(--accent-warm);
}

.meta-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.meta-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  color: var(--text-secondary);
  transition: all 0.3s;
  text-decoration: none;
}

.meta-tag:hover {
  border-color: var(--accent-warm);
  color: var(--accent-warm);
}

/* ═══════════════════════════════════════
   EXPLORER'S INTEL BAR (Single Place)
   ═══════════════════════════════════════ */

.intel-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}

.intel-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent-warm);
  margin-top: -1px;
}

.intel-item {
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border);
}

.intel-item:last-child {
  border-right: none;
}

.intel-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.intel-icon {
  width: 14px;
  height: 14px;
  color: var(--accent-warm);
  flex-shrink: 0;
}

.intel-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.intel-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

.intel-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
  font-weight: 300;
}

/* ═══════════════════════════════════════
   CONTENT LAYOUT (Single Place)
   ═══════════════════════════════════════ */

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5vw;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
}

/* ═══════════════════════════════════════
   ARTICLE BODY (Single Place)
   ═══════════════════════════════════════ */

.article-body {}

.article-lede {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.article-lede::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 600;
  float: left;
  line-height: 0.8;
  margin: 0.08em 0.15em 0 0;
  color: var(--accent-warm);
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 3rem 0 1.2rem;
  letter-spacing: -0.01em;
}

.article-body p {
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.article-body p strong {
  font-weight: 500;
  color: var(--text-primary);
}

.article-pullquote {
  margin: 3rem 0;
  padding: 2rem 0 2rem 2rem;
  border-left: 2px solid var(--accent-warm);
  position: relative;
}

.article-pullquote p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 0;
}

.article-pullquote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.article-figure {
  margin: 3rem 0;
  position: relative;
}

.article-figure img {
  width: 100%;
  display: block;
  border-radius: 2px;
}

.article-figure figcaption {
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   VIDEO SECTION (Single Place Inline)
   ═══════════════════════════════════════ */

.video-section {
  margin: 4rem 0;
  position: relative;
}

.video-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.video-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(196,149,106,0.15), rgba(196,149,106,0.05));
  border: 1px solid rgba(196,149,106,0.25);
  padding: 0.4rem 1rem;
  border-radius: 2px;
}

.video-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-warm);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.video-badge-text {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.video-section-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
}

.video-container {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.4s;
}

.video-container:hover {
  border-color: var(--accent-warm);
}

.video-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.5) saturate(0.8);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.video-container:hover .video-poster {
  filter: brightness(0.4) saturate(0.6);
  transform: scale(1.03);
}

.video-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.video-play-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  z-index: 2;
}

.video-play-btn {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

.video-play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.video-container:hover .video-play-btn,
.video-card:hover .video-play-btn {
  border-color: var(--accent-warm);
  background: rgba(196,149,106,0.15);
  transform: scale(1.08);
}

.video-container:hover .video-play-btn::before,
.video-card:hover .video-play-btn::before {
  border-color: rgba(196,149,106,0.2);
  inset: -12px;
}

.video-play-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent rgba(255,255,255,0.9);
  margin-left: 3px;
  transition: border-color 0.3s;
}

.video-container:hover .video-play-triangle,
.video-card:hover .video-play-triangle {
  border-color: transparent transparent transparent var(--accent-warm);
}

.video-label,
.video-play-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.video-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.5);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  z-index: 2;
}

/* ═══════════════════════════════════════
   SIDEBAR (Single Place)
   ═══════════════════════════════════════ */

.sidebar {
  position: sticky;
  top: 6rem;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.5rem;
}

.sidebar-card-title {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.visit-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.visit-info-row:last-child { margin-bottom: 0; }

.visit-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-warm);
  opacity: 0.7;
}

.visit-info-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.visit-info-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.visit-info-value {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.5;
}

.visit-info-value a {
  color: var(--accent-warm);
  text-decoration: none;
}

.sidebar-map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.sidebar-map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(74,122,82,0.15) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(74,122,82,0.1) 0%, transparent 50%);
}

.sidebar-map-text {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 1;
}

.nearby-place {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.3s;
}

.nearby-place:last-child { border-bottom: none; }

.nearby-place:hover .nearby-place-name { color: var(--accent-warm); }

.nearby-place-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nearby-place-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nearby-place-name {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-primary);
  transition: color 0.3s;
}

.nearby-place-distance {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════
   FEATURED PLACE CARD (Home Page)
   ═══════════════════════════════════════ */

.featured {
  padding: 6rem 5vw;
  max-width: 1300px;
  margin: 0 auto;
}

.featured-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.4s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.featured-card:hover {
  border-color: var(--border-light);
}

.featured-image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.featured-card:hover .featured-image img {
  transform: scale(1.03);
}

.featured-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(17,26,20,0.4) 100%);
  pointer-events: none;
}

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

.featured-badge {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.featured-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent-warm);
  border-radius: 50%;
  opacity: 0.6;
}

.featured-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.featured-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.featured-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-gold);
}

.featured-excerpt {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.featured-link:hover {
  gap: 1rem;
  color: var(--accent-gold);
}

.featured-link-arrow {
  transition: transform 0.3s ease;
  font-size: 1rem;
  line-height: 1;
}

.featured-link:hover .featured-link-arrow {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════
   RECENT PLACES GRID (Home Page)
   ═══════════════════════════════════════ */

.recent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.place-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.place-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
}

.place-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.place-card-image-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.place-card:hover .place-card-image-bg {
  transform: scale(1.05);
}

.place-card-image-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
}

.place-card-image-bg.pattern-canal {
  background: linear-gradient(135deg, #0a1a1a 0%, #0d2626 40%, #0a1f20 100%);
}
.place-card-image-bg.pattern-canal::after {
  background:
    repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 21px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px);
}

.place-card-image-bg.pattern-steps {
  background: linear-gradient(135deg, #1a1410 0%, #241c15 40%, #1a1510 100%);
}
.place-card-image-bg.pattern-steps::after {
  background:
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,0.02) 12px, rgba(255,255,255,0.02) 13px);
}

.place-card-image-bg.pattern-quarry {
  background: linear-gradient(135deg, #12141a 0%, #181c24 40%, #14161c 100%);
}
.place-card-image-bg.pattern-quarry::after {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.03) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 40%, rgba(255,255,255,0.02) 0%, transparent 50%);
}

.place-card-image-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  white-space: nowrap;
}

.place-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-warm);
  background: rgba(9,14,11,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
  border: 1px solid rgba(196,149,106,0.15);
}

.place-card-body {
  padding: 1.5rem;
}

.place-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  line-height: 1.2;
  transition: color 0.3s;
}

.place-card:hover .place-card-title {
  color: var(--accent-gold);
}

.place-card-excerpt {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.place-card-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.place-card-location svg {
  width: 12px;
  height: 12px;
  opacity: 0.5;
}

/* ═══════════════════════════════════════
   MAP PREVIEW (Home Page)
   ═══════════════════════════════════════ */

.map-preview {
  padding: 0 5vw 5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.map-preview-header {
  margin-bottom: 2rem;
}

.map-preview-frame {
  display: block;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  text-decoration: none;
  transition: border-color 0.4s ease;
}

.map-preview-frame:hover {
  border-color: var(--accent-warm);
}

.map-preview-embed {
  position: absolute;
  inset: 0;
}

.map-preview-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(9,14,11,0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  pointer-events: none;
  transition: background 0.4s ease;
}

.map-preview-frame:hover .map-preview-overlay {
  background: linear-gradient(180deg, transparent 40%, rgba(9,14,11,0.8) 100%);
}

.map-preview-cta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-warm);
  border: 1px solid var(--accent-warm);
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.map-preview-frame:hover .map-preview-cta {
  background: rgba(196,149,106,0.1);
}

/* ═══════════════════════════════════════
   ONE MINUTE WONDERS SECTION (Home Page)
   ═══════════════════════════════════════ */

.omw-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 5vw;
}

.omw-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.omw-header {
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.omw-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(196,149,106,0.15), rgba(196,149,106,0.05));
  border: 1px solid rgba(196,149,106,0.25);
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.omw-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-warm);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.omw-badge-text {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.omw-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.omw-title em {
  font-style: italic;
  color: var(--accent-gold);
}

.omw-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
}

.omw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.omw-card {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.omw-card:hover {
  border-color: var(--accent-warm);
  transform: translateY(-2px);
}

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

.omw-card:hover .omw-card-bg {
  transform: scale(1.05);
}

.omw-card-bg.bg-mill {
  background:
    radial-gradient(ellipse at 40% 50%, rgba(196,149,106,0.08) 0%, transparent 60%),
    linear-gradient(135deg, #0d140f 0%, #111a14 50%, #0d140f 100%);
}

.omw-card-bg.bg-canal {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(74,122,82,0.08) 0%, transparent 60%),
    linear-gradient(135deg, #0d140f 0%, #111a14 50%, #0d140f 100%);
}

.omw-card-bg.bg-chimbo {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(212,165,116,0.06) 0%, transparent 60%),
    linear-gradient(135deg, #0d140f 0%, #111a14 50%, #0d140f 100%);
}

.omw-card-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.omw-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.omw-play-btn {
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

.omw-play-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.omw-card:hover .omw-play-btn {
  border-color: var(--accent-warm);
  background: rgba(196,149,106,0.12);
  transform: scale(1.08);
}

.omw-card:hover .omw-play-btn::before {
  border-color: rgba(196,149,106,0.15);
  inset: -10px;
}

.omw-play-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 13px;
  border-color: transparent transparent transparent rgba(255,255,255,0.8);
  margin-left: 2px;
  transition: border-color 0.3s;
}

.omw-card:hover .omw-play-triangle {
  border-color: transparent transparent transparent var(--accent-warm);
}

.omw-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(9,14,11,0.85) 0%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.omw-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
}

.omw-card-duration {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.4);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   CATEGORIES (Home Page)
   ═══════════════════════════════════════ */

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

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.category-card:hover {
  border-color: var(--accent-warm);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.category-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-primary);
  transition: color 0.3s;
}

.category-card:hover .category-card-name {
  color: var(--accent-gold);
}

.category-card-count {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   NEWSLETTER (Home Page)
   ═══════════════════════════════════════ */

.newsletter {
  padding: 6rem 5vw;
  text-align: center;
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.newsletter-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 3px 0 0 3px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-input:focus {
  border-color: var(--accent-warm);
}

.newsletter-btn {
  padding: 0.85rem 1.5rem;
  background: var(--accent-warm);
  border: 1px solid var(--accent-warm);
  border-radius: 0 3px 3px 0;
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* ═══════════════════════════════════════
   EXPLORE PAGE — MAP
   ═══════════════════════════════════════ */

.explore-body {
  height: 100%;
  overflow: hidden;
  line-height: normal;
}

#map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Explore nav override */
.nav-explore {
  padding: 0.9rem 2rem;
  border-bottom: 1px solid var(--border);
}

/* Explore Sidebar */
.explore-sidebar {
  position: fixed;
  top: 52px;
  left: 0;
  bottom: 0;
  width: 380px;
  background: rgba(9, 14, 11, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-right: 1px solid var(--border);
  z-index: 50;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease;
}

.explore-sidebar.collapsed {
  transform: translateX(-380px);
}

.sidebar-toggle {
  position: fixed;
  top: 66px;
  left: 380px;
  z-index: 51;
  width: 32px;
  height: 56px;
  background: rgba(9, 14, 11, 0.95);
  border: 1px solid var(--border);
  border-left: none;
  border-radius: 0 4px 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.4s ease;
}

.explore-sidebar.collapsed ~ .sidebar-toggle {
  left: 0;
}

.sidebar-toggle:hover {
  color: var(--accent-warm);
}

.sidebar-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.4s ease;
}

.explore-sidebar.collapsed ~ .sidebar-toggle svg {
  transform: rotate(180deg);
}

.sidebar-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.sidebar-subtitle {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Category Filters */
.sidebar-filters {
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.filter-pill {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  background: none;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-pill:hover {
  border-color: var(--border-light);
  color: var(--text-secondary);
}

.filter-pill.active {
  border-color: var(--accent-warm);
  color: var(--accent-warm);
  background: rgba(196,149,106,0.08);
}

/* Place List */
.sidebar-list {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.sidebar-list::-webkit-scrollbar {
  width: 4px;
}

.sidebar-list::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.place-list-item {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
}

.place-list-item:hover,
.place-list-item.active {
  background: var(--bg-card-hover);
}

.place-list-item.active {
  border-left: 2px solid var(--accent-warm);
  padding-left: calc(1.5rem - 2px);
}

.place-list-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.place-list-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  overflow: hidden;
  flex: 1;
}

.place-list-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
}

.place-list-item:hover .place-list-name,
.place-list-item.active .place-list-name {
  color: var(--accent-gold);
}

.place-list-meta {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.place-list-excerpt {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.5;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Custom Mapbox Popup */
.mapboxgl-popup-content {
  background: rgba(9, 14, 11, 0.95) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border) !important;
  border-radius: 4px !important;
  padding: 0 !important;
  box-shadow: 0 12px 48px rgba(0,0,0,0.6) !important;
  max-width: 320px !important;
  min-width: 260px;
}

.mapboxgl-popup-tip {
  border-top-color: rgba(9, 14, 11, 0.95) !important;
}

.mapboxgl-popup-close-button {
  color: var(--text-muted) !important;
  font-size: 18px !important;
  padding: 4px 8px !important;
  right: 4px !important;
  top: 4px !important;
  z-index: 10;
}

.mapboxgl-popup-close-button:hover {
  color: var(--accent-warm) !important;
  background: none !important;
}

.popup-inner {
  padding: 1.25rem;
}

.popup-category {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.5rem;
}

.popup-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.popup-excerpt {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.popup-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  text-decoration: none;
  transition: gap 0.3s;
}

.popup-link:hover { gap: 0.8rem; }

.popup-link:focus,
.popup-link:focus-visible,
.mapboxgl-popup-content a:focus,
.mapboxgl-popup-content a:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.popup-location {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.popup-location svg {
  width: 11px;
  height: 11px;
  opacity: 0.5;
}

/* Map Style Toggle */
.map-style-toggle {
  position: fixed;
  bottom: 2rem;
  right: 1rem;
  z-index: 50;
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.style-btn {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  background: rgba(9, 14, 11, 0.9);
  color: var(--text-muted);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.style-btn:not(:last-child) {
  border-right: 1px solid var(--border);
}

.style-btn:hover { color: var(--text-secondary); }

.style-btn.active {
  background: rgba(196,149,106,0.12);
  color: var(--accent-warm);
}

/* Place Count Badge */
.place-count {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(9, 14, 11, 0.9);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.5rem 1.2rem;
}

.place-count strong {
  color: var(--accent-warm);
  font-weight: 400;
}

/* Custom Markers */
.custom-marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--accent-warm);
  background: rgba(196,149,106,0.3);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 12px rgba(196,149,106,0.2);
}

.custom-marker:hover,
.custom-marker.active {
  background: var(--accent-warm);
  box-shadow: 0 0 20px rgba(196,149,106,0.5);
}

.custom-marker.pulse {
  animation: markerPulse 2s ease infinite;
}

/* Connector Line */
.connector-svg {
  position: fixed;
  inset: 0;
  z-index: 55;
  pointer-events: none;
  overflow: visible;
}

.connector-line {
  fill: none;
  stroke: rgba(196,149,106,0.5);
  stroke-width: 1.5;
  stroke-dasharray: 6, 4;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.connector-line.visible { opacity: 0.7; }

.connector-dot {
  fill: var(--accent-warm);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.connector-dot.visible { opacity: 0.85; }

/* Sidebar Drag Handle (mobile) */
.sidebar-drag-handle {
  display: none;
}

/* ═══════════════════════════════════════
   ABOUT PAGE — MISSION SECTION
   ═══════════════════════════════════════ */

.mission-section {
  border-top: 1px solid var(--border);
  padding: 6rem 5vw;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.mission-heading {
  position: sticky;
  top: 6rem;
}

.mission-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.mission-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.mission-title span {
  color: var(--accent-warm);
  font-style: italic;
}

.mission-body p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.mission-body p:last-child {
  margin-bottom: 0;
}

.mission-body p strong {
  font-weight: 500;
  color: var(--text-primary);
}

.mission-body .highlight-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.65;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent-warm);
  margin: 2.5rem 0;
}

/* ═══════════════════════════════════════
   ABOUT PAGE — PILLARS SECTION
   ═══════════════════════════════════════ */

.pillars-section {
  border-top: 1px solid var(--border);
  padding: 6rem 5vw;
  background: var(--bg-surface);
}

.pillars-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.pillars-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pillars-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

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

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2.5rem 2rem;
  transition: border-color 0.4s ease, background 0.4s ease;
  position: relative;
}

.pillar-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

.pillar-ornament {
  width: 32px;
  height: 1px;
  background: var(--accent-warm);
  margin-bottom: 2rem;
  transition: width 0.4s ease;
}

.pillar-card:hover .pillar-ornament {
  width: 48px;
}

.pillar-number {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.pillar-text {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
}

.pillar-accent-line {
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-warm), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pillar-card:hover .pillar-accent-line {
  opacity: 0.4;
}

/* ═══════════════════════════════════════
   ABOUT PAGE — GET INVOLVED SECTION
   ═══════════════════════════════════════ */

.involved-section {
  border-top: 1px solid var(--border);
  padding: 6rem 5vw;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.involved-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.involved-ornament-line {
  width: 40px;
  height: 1px;
  background: var(--border-light);
}

.involved-ornament-dot {
  width: 6px;
  height: 6px;
  border: 1px solid var(--accent-warm);
  border-radius: 50%;
}

.involved-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.involved-title em {
  font-style: italic;
  color: var(--accent-gold);
}

.involved-text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.involved-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-warm);
  text-decoration: none;
  border: 1px solid var(--accent-warm);
  padding: 0.9rem 2rem;
  border-radius: 2px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.involved-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,149,106,0.1), rgba(196,149,106,0.02));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.involved-cta:hover {
  background: rgba(196,149,106,0.08);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.involved-cta:hover::before {
  opacity: 1;
}

.involved-cta-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.involved-cta:hover .involved-cta-arrow {
  transform: translateX(3px);
}

.involved-email {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   NEWS PAGE
   ═══════════════════════════════════════ */

/* ─── News hero (image from latest article) ─── */
.news-hero {
  position: relative;
  height: 35vh;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 2.5rem 5vw;
}

.news-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 6s ease-out;
}

.news-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(9,14,11,0.3) 0%,
    rgba(9,14,11,0.5) 40%,
    rgba(9,14,11,0.9) 85%,
    rgba(9,14,11,1) 100%
  );
}

.news-hero-content {
  position: relative;
  z-index: 2;
}

.news-hero-content .page-header-label {
  text-align: left;
}

.news-hero-content .page-header-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: left;
}

.news-hero-content .page-header-subtitle {
  text-align: left;
}

.news-hero-featured {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.2rem 1.5rem;
  background: rgba(9,14,11,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(196,149,106,0.15);
  border-radius: 4px;
  text-decoration: none;
  max-width: 320px;
  transition: all 0.3s ease;
}

.news-hero-featured:hover {
  background: rgba(9,14,11,0.7);
  border-color: rgba(196,149,106,0.3);
}

.news-hero-featured-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.news-hero-featured-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
}

.news-hero-featured-cat {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.news-hero-featured-arrow {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-top: 0.3rem;
}

@media (max-width: 768px) {
  .news-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
  }
  .news-hero-featured {
    max-width: 100%;
  }
}

.news-feed {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2.5rem 6rem;
}

/* ─── Dispatch cards (full-background image) ─── */
.dispatch-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 4px;
  overflow: hidden;
  min-height: 280px;
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dispatch-card.has-bg {
  background: var(--bg-card);
}

.dispatch-card:not(.has-bg) {
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.dispatch-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.dispatch-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.dispatch-card:hover .dispatch-card-bg {
  transform: scale(1.03);
}

.dispatch-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(9,14,11,0.35) 0%,
    rgba(9,14,11,0.6) 30%,
    rgba(9,14,11,0.88) 70%,
    rgba(9,14,11,0.96) 100%
  );
}

.dispatch-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  padding: 2rem 2.5rem;
  gap: 0.6rem;
}

.dispatch-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.dispatch-card-date {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.dispatch-card-cat {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.dispatch-card-source {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.15rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.dispatch-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.25;
  transition: color 0.3s ease;
  max-width: 600px;
}

.dispatch-card:hover .dispatch-card-title {
  color: var(--accent-gold);
}

.dispatch-card-excerpt {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 550px;
}

.dispatch-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-top: 0.25rem;
  transition: gap 0.3s ease;
}

.dispatch-card:hover .dispatch-card-link {
  gap: 0.85rem;
}

.dispatch-card:hover .dispatch-card-link span {
  transform: translateX(3px);
}

.dispatch-card-link span {
  transition: transform 0.3s ease;
}

/* Ornament Divider */
.news-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0 4rem;
}

.news-ornament-line {
  width: 40px;
  height: 1px;
  background: var(--border-light);
}

.news-ornament-dot {
  width: 6px;
  height: 6px;
  border: 1px solid var(--accent-warm);
  border-radius: 50%;
}

/* ═══════════════════════════════════════
   ONE MINUTE WONDERS PAGE
   ═══════════════════════════════════════ */

.featured-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw 5rem;
}

.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.video-card:hover {
  border-color: var(--accent-warm);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(196,149,106,0.1);
}

.video-card-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(0.8);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.video-card:hover .video-card-poster {
  filter: brightness(0.35) saturate(0.6);
  transform: scale(1.03);
}

.video-card-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9,14,11,0.1) 0%,
    rgba(9,14,11,0.05) 40%,
    rgba(9,14,11,0.5) 80%,
    rgba(9,14,11,0.85) 100%
  );
  pointer-events: none;
}

.video-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}

.video-card-category {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.6rem;
}

.video-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}

.video-coming-soon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: rgba(9,14,11,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
  z-index: 3;
}

/* Video Grid */
.grid-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw 6rem;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.video-grid .video-play-btn {
  width: 56px;
  height: 56px;
}

.video-grid .video-play-btn::before {
  inset: -8px;
}

.video-grid .video-card:hover .video-play-btn::before {
  inset: -12px;
}

.video-grid .video-play-triangle {
  border-width: 9px 0 9px 16px;
  margin-left: 3px;
}

.video-grid .video-card-info {
  padding: 1.5rem;
}

.video-grid .video-card-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

/* Placeholder backgrounds for grid cards */
.video-placeholder-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.video-card:hover .video-placeholder-bg {
  transform: scale(1.03);
}

.placeholder-canal {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(20,60,70,0.8) 0%, transparent 70%),
    radial-gradient(ellipse at 70% 30%, rgba(15,40,50,0.6) 0%, transparent 60%),
    linear-gradient(160deg, #0a1e24 0%, #0d2830 40%, #091a1f 100%);
}

.placeholder-chimborazo {
  background:
    radial-gradient(ellipse at 40% 50%, rgba(90,60,40,0.5) 0%, transparent 65%),
    radial-gradient(ellipse at 70% 70%, rgba(60,40,25,0.4) 0%, transparent 50%),
    linear-gradient(145deg, #1a120c 0%, #2a1c12 45%, #140e08 100%);
}

.placeholder-icehouse {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(30,60,35,0.5) 0%, transparent 65%),
    radial-gradient(ellipse at 25% 70%, rgba(20,45,25,0.4) 0%, transparent 50%),
    linear-gradient(170deg, #0a140c 0%, #122218 50%, #0a140c 100%);
}

.placeholder-quarry {
  background:
    radial-gradient(ellipse at 60% 50%, rgba(40,45,50,0.5) 0%, transparent 65%),
    radial-gradient(ellipse at 30% 30%, rgba(35,40,48,0.3) 0%, transparent 50%),
    linear-gradient(155deg, #0e1214 0%, #181e22 40%, #0e1214 100%);
}

/* Submit Section (OMW Page) */
.submit-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
  padding: 5rem 5vw;
}

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

.submit-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.submit-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.submit-btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-warm);
  text-decoration: none;
  border: 1px solid var(--accent-warm);
  padding: 0.8rem 2rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: rgba(196,149,106,0.1);
  box-shadow: 0 0 20px rgba(196,149,106,0.1);
}

/* ═══════════════════════════════════════
   CONTRIBUTE / FORM PAGE
   ═══════════════════════════════════════ */

.intro-section {
  border-top: 1px solid var(--border);
  padding: 4rem 5vw 2rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.intro-text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
}

.intro-text strong {
  font-weight: 500;
  color: var(--text-primary);
}

.form-section {
  padding: 3rem 5vw 6rem;
  max-width: 720px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 2.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.form-label .required {
  color: var(--accent-warm);
  margin-left: 0.25rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.9rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  font-weight: 300;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent-warm);
  background: var(--bg-card-hover);
  box-shadow: 0 0 0 3px rgba(196, 149, 106, 0.08);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235e5a52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

/* File Upload */
.file-upload-area {
  position: relative;
  border: 2px dashed var(--border-light);
  border-radius: 3px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s ease, background 0.3s ease;
  cursor: pointer;
  background: var(--bg-card);
}

.file-upload-area:hover,
.file-upload-area.dragover {
  border-color: var(--accent-warm);
  background: var(--bg-card-hover);
}

.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 1rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.file-upload-area:hover .file-upload-icon {
  color: var(--accent-warm);
}

.file-upload-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.file-upload-text span {
  color: var(--accent-warm);
  font-weight: 400;
}

.file-upload-hint {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.file-upload-preview {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--accent-sage);
  display: none;
}

.file-upload-preview.has-file {
  display: block;
}

/* Radio Group */
.radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.radio-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-custom {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease;
  flex-shrink: 0;
}

.radio-custom::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-warm);
  transform: scale(0);
  transition: transform 0.2s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
  border-color: var(--accent-warm);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
  transform: scale(1);
}

.radio-option input[type="radio"]:focus-visible + .radio-custom {
  box-shadow: 0 0 0 3px rgba(196, 149, 106, 0.15);
}

.radio-label-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
}

.form-note {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 0.6rem;
  line-height: 1.6;
}

/* Form Divider */
.form-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
}

.form-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-divider-text {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Submit Button */
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--accent-warm);
  border: 1px solid var(--accent-warm);
  padding: 1rem 2.5rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.form-submit:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(196, 149, 106, 0.2);
}

.form-submit:hover::before {
  opacity: 1;
}

.form-submit:active {
  transform: translateY(0);
}

.form-submit-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.form-submit:hover .form-submit-arrow {
  transform: translateX(3px);
}

/* Two-column Form Row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-brand span {
  color: var(--accent-warm);
  opacity: 0.5;
}

.footer-text {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   ANIMATIONS / KEYFRAMES
   ═══════════════════════════════════════ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes markerPulse {
  0% { box-shadow: 0 0 0 0 rgba(196,149,106,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(196,149,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(196,149,106,0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Grid stagger */
.reveal-stagger .reveal {
  transition-delay: calc(var(--i, 0) * 0.12s);
}

.reveal-stagger-1 { transition-delay: 0s; }
.reveal-stagger-2 { transition-delay: 0.12s; }
.reveal-stagger-3 { transition-delay: 0.24s; }
.reveal-stagger-4 { transition-delay: 0.36s; }

/* ═══════════════════════════════════════
   WORDPRESS UTILITY CLASSES
   ═══════════════════════════════════════ */

.content-wrapper-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2.5rem 6rem;
}

.news-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.news-pagination {
  text-align: center;
  padding: 2rem 0;
}

.news-pagination a,
.news-pagination span {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  margin: 0 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s;
}

.news-pagination a:hover,
.news-pagination .current {
  color: var(--accent-warm);
  border-color: var(--accent-warm);
}

.footer-quote {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  opacity: 0.6;
}

.explore-page {
  position: absolute;
  top: 52px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

body.page-template-explore {
  overflow: hidden;
}

/* ═══════════════════════════════════════
   RESPONSIVE — max-width: 900px
   ═══════════════════════════════════════ */

@media (max-width: 900px) {

  /* Nav */
  nav { padding: 0.9rem 1.25rem; }
  nav.scrolled { padding: 0.6rem 1.25rem; }
  .nav-links { display: none; }
  .nav-search { display: none; }

  .nav-brand-icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .nav-brand-text {
    font-size: 0.95rem;
  }

  /* Hero (Home) */
  .hero-content { padding: 0 1.25rem; }
  .hero-scroll { display: none; }

  /* Section */
  .section { padding: 4rem 1.25rem; }

  /* Featured (Home) */
  .featured { padding: 4rem 1.25rem; }

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

  .featured-image {
    min-height: 280px;
  }

  .featured-image-overlay {
    background: linear-gradient(180deg, transparent 50%, rgba(17,26,20,0.3) 100%);
  }

  .featured-content {
    padding: 2rem 1.5rem 2.5rem;
  }

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

  /* Recent Grid (Home) */
  .recent-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* OMW Section (Home) */
  .omw-section { padding: 4rem 1.25rem; }

  .omw-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Categories (Home) */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  /* Newsletter (Home) */
  .newsletter { padding: 4rem 1.25rem; }

  .newsletter-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .newsletter-input {
    border-right: 1px solid var(--border);
    border-radius: 3px;
  }

  .newsletter-btn {
    border-radius: 3px;
    padding: 1rem;
  }

  /* Intel Bar (Single Place) */
  .intel-card {
    grid-template-columns: 1fr;
  }

  .intel-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1.15rem 1.5rem;
  }

  .intel-item:last-child {
    border-bottom: none;
  }

  .intel-bar {
    padding: 0 1.25rem;
  }

  /* Content Wrapper (Single Place) */
  .content-wrapper {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.25rem;
    gap: 2.5rem;
  }

  .sidebar {
    position: static;
  }

  /* Meta Bar (Single Place) */
  .meta-bar {
    padding: 1.25rem 1.25rem;
    gap: 1.25rem;
    flex-direction: column;
  }

  .meta-item {
    flex-direction: row;
    align-items: baseline;
    gap: 0.75rem;
  }

  .meta-label {
    min-width: 85px;
    flex-shrink: 0;
  }

  .meta-tags { gap: 0.4rem; }
  .meta-tag { font-size: 0.55rem; padding: 0.25rem 0.55rem; }

  /* Article (Single Place) */
  .article-lede {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .article-lede::first-letter {
    font-size: 3.2rem;
  }

  .article-body h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
  }

  .article-body p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .article-pullquote {
    margin: 2rem 0;
    padding: 1.5rem 0 1.5rem 1.25rem;
  }

  .article-pullquote p {
    font-size: 1.15rem;
  }

  /* Video Section (Single Place) */
  .video-section {
    margin: 2.5rem 0;
  }

  .video-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
  }

  .video-play-btn {
    width: 56px;
    height: 56px;
  }

  .video-play-triangle {
    border-width: 8px 0 8px 14px;
  }

  .video-label {
    font-size: 0.55rem;
  }

  /* Sidebar Card (Single Place) */
  .sidebar-card {
    padding: 1.25rem;
  }

  /* About Page */
  .hero-quote {
    padding: 7rem 1.5rem 4rem;
    min-height: 80vh;
  }

  .hero-quote-text {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .hero-quote-ornament,
  .hero-quote-ornament-bottom {
    height: 40px;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .hero-quote-attribution {
    font-size: 0.6rem;
    margin-top: 1.75rem;
  }

  .mission-section {
    padding: 4rem 1.25rem;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-heading {
    position: static;
  }

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

  .mission-body p {
    font-size: 0.95rem;
  }

  .mission-body .highlight-text {
    font-size: 1.1rem;
  }

  .pillars-section {
    padding: 4rem 1.25rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pillar-card {
    padding: 2rem 1.5rem;
  }

  .pillar-title {
    font-size: 1.4rem;
  }

  .pillar-text {
    font-size: 0.88rem;
  }

  .involved-section {
    padding: 4rem 1.25rem;
  }

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

  .involved-text {
    font-size: 0.95rem;
  }

  /* News Page */
  .page-header {
    padding: 8rem 1.5rem 3rem;
  }

  .news-feed {
    padding: 0 1.25rem 4rem;
  }

  .dispatch-card {
    min-height: 220px;
  }

  .dispatch-card-content {
    min-height: 220px;
    padding: 1.5rem 1.25rem;
  }

  .dispatch-card-title {
    font-size: 1.25rem;
  }

  .dispatch-card-excerpt {
    font-size: 0.84rem;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* One Minute Wonders Page */
  .hero-omw {
    min-height: 70vh;
    padding: 7rem 1.25rem 5rem;
  }

  .featured-section {
    padding: 0 1.25rem 3.5rem;
  }

  .grid-section {
    padding: 0 1.25rem 4rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .submit-section {
    padding: 3.5rem 1.25rem;
  }

  /* Contribute Page */
  .page-header-contribute {
    padding: 8rem 1.5rem 3rem;
    min-height: 50vh;
  }

  .page-header-contribute .page-header-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .page-header-contribute .page-header-ornament,
  .page-header-ornament-bottom {
    height: 40px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .page-header-contribute .page-header-subtitle {
    font-size: 0.95rem;
  }

  .intro-section {
    padding: 3rem 1.25rem 1.5rem;
  }

  .intro-text {
    font-size: 0.95rem;
  }

  .form-section {
    padding: 2rem 1.25rem 4rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .radio-group {
    flex-direction: column;
    gap: 1rem;
  }

  /* Footer */
  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.25rem;
    gap: 0.75rem;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — EXPLORE PAGE (max-width: 768px)
   ═══════════════════════════════════════ */

@media (max-width: 768px) {
  .explore-sidebar {
    width: 100%;
    height: 45vh;
    top: auto;
    bottom: 0;
    border-right: none;
    border-top: 1px solid var(--border);
    transform: translateY(0);
  }

  .explore-sidebar.collapsed {
    transform: translateY(calc(100% - 52px));
  }

  .sidebar-toggle {
    display: none;
  }

  .sidebar-drag-handle {
    display: block;
    width: 40px;
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    margin: 0.5rem auto;
    cursor: grab;
  }

  .map-style-toggle {
    bottom: auto;
    top: 60px;
    right: 0.5rem;
  }

  .place-count { display: none; }

  #map { bottom: 45vh; }

  .explore-sidebar.collapsed ~ #map { bottom: 52px; }
}

@media (min-width: 769px) {
  .sidebar-drag-handle { display: none; }
  #map { left: 380px; }
  .explore-sidebar.collapsed ~ #map { left: 0; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — max-width: 600px
   ═══════════════════════════════════════ */

@media (max-width: 600px) {

  /* Hero (Home) */
  .hero { min-height: 500px; height: 85vh; }
  .hero-title { font-size: 3rem; }
  .hero-tagline { font-size: 0.58rem; letter-spacing: 0.18em; }
  .hero-tagline::before,
  .hero-tagline::after { width: 20px; }

  /* Featured (Home) */
  .featured-image { min-height: 220px; }

  /* Place Cards (Home) */
  .place-card-image { height: 180px; }

  /* Categories (Home) */
  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-card {
    padding: 1.15rem;
  }

  .category-card-name {
    font-size: 1rem;
  }

  /* OMW Cards (Home) */
  .omw-card { aspect-ratio: 16 / 10; }

  .section-title { margin-bottom: 2rem; }

  /* Single Place Hero */
  .hero-single .hero-title { font-size: 2.4rem; }
  .hero-category-text { font-size: 0.6rem; }
  .hero-category { margin-bottom: 1rem; }

  /* About Page */
  .hero-quote {
    min-height: 70vh;
    padding: 6rem 1.25rem 3rem;
  }

  .hero-quote-text {
    font-size: 1.5rem;
  }

  .pillars-header {
    margin-bottom: 2.5rem;
  }

  /* News Page */
  .page-header {
    padding: 7rem 1.25rem 2.5rem;
  }

  .page-header-title {
    font-size: 2.2rem;
  }

  .page-header-subtitle {
    font-size: 0.95rem;
  }

  .news-title {
    font-size: 1.4rem;
  }

  .news-excerpt {
    font-size: 0.9rem;
  }

  /* One Minute Wonders Page */
  .hero-omw {
    min-height: 65vh;
    padding: 6rem 1rem 4rem;
  }

  .hero-omw .hero-title {
    font-size: 2.2rem;
  }

  .hero-omw .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-badge {
    margin-bottom: 1.5rem;
  }

  .video-card-info {
    padding: 1.25rem;
  }

  .video-card-title {
    font-size: 1.3rem !important;
  }

  .video-grid .video-card-title {
    font-size: 1.1rem !important;
  }

  .video-play-btn {
    width: 56px !important;
    height: 56px !important;
  }

  .video-play-triangle {
    border-width: 8px 0 8px 14px !important;
  }

  .submit-title {
    font-size: 1.6rem;
  }

  .submit-text {
    font-size: 0.9rem;
  }

  /* Contribute Page */
  .page-header-contribute {
    min-height: 45vh;
    padding: 7rem 1.25rem 2.5rem;
  }

  .page-header-contribute .page-header-title {
    font-size: 1.5rem;
  }

  .file-upload-area {
    padding: 2rem 1.25rem;
  }
}
