/* ===== SACRED MASK — Indigenous Cultures Educational Project ===== */
/* Premium ethnic design: earth tones, gold accents, cinematic dark mode */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg-primary: #0c0806;
  --bg-secondary: #14100c;
  --bg-tertiary: #1c1610;
  --bg-card: rgba(30, 22, 16, 0.85);
  --bg-glass: rgba(20, 16, 12, 0.75);
  --text-primary: #f0e6d8;
  --text-secondary: #b8a894;
  --text-muted: #6b5d4f;
  --accent-gold: #d4a853;
  --accent-amber: #e8b84a;
  --accent-fire: #c45b2a;
  --accent-jade: #3d7a5a;
  --border: rgba(61, 47, 34, 0.6);
  --border-light: rgba(90, 72, 56, 0.4);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.6);
  --shadow-gold: 0 4px 24px rgba(212, 168, 83, 0.08);
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-gold); }

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

a { color: var(--accent-gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-amber); }

.shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(212, 168, 83, 0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER ===== */
.site-header {
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-primary);
}

.brand span {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--accent-fire), #a03018);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 700;
  color: #fff;
  box-shadow: 0 2px 12px rgba(196, 91, 42, 0.3);
}

.brand strong {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--accent-gold);
  font-weight: 600;
}

.brand small {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-left: 8px;
  font-weight: 400;
}

.header-mail {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
}
.header-mail:hover { color: var(--accent-gold); }

.editorial-nav {
  display: flex;
  gap: 36px;
  padding: 12px 28px;
  overflow-x: auto;
}

.editorial-nav a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  font-weight: 500;
  position: relative;
}

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

.editorial-nav a:hover::after,
.editorial-nav a[aria-current="page"]::after {
  width: 100%;
}

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

/* ===== HERO ===== */
.editorial-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 80px 28px 64px;
  align-items: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.editorial-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(212, 168, 83, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.editorial-copy {
  position: relative;
  z-index: 1;
}

.editorial-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent-fire);
  margin-bottom: 24px;
  font-weight: 500;
}

.eyebrow i {
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--accent-fire);
}

.editorial-copy h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.editorial-copy h1 em {
  color: var(--accent-gold);
  font-style: italic;
  font-weight: 500;
}

.editorial-copy > p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-actions small {
  display: block;
  width: 100%;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  letter-spacing: 0.3px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  letter-spacing: 0.3px;
}

.button.dark {
  background: linear-gradient(135deg, var(--accent-fire), #a03018);
  color: #fff;
  box-shadow: 0 4px 16px rgba(196, 91, 42, 0.25);
}

.button.dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 91, 42, 0.35);
}

.button.outline {
  background: transparent;
  color: var(--accent-gold);
  border: 1.5px solid var(--border-light);
}

.button.outline:hover {
  border-color: var(--accent-gold);
  background: rgba(212, 168, 83, 0.06);
  transform: translateY(-2px);
}

.text-link {
  font-size: 14px;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.text-link:hover { color: var(--accent-amber); gap: 10px; }

.hero-art {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.hero-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero-art:hover img {
  transform: scale(1.05);
}

.hero-art aside {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(12, 8, 6, 0.92);
  padding: 24px 28px;
  border-top: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.hero-art aside b {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-fire);
  font-weight: 500;
}

.hero-art aside h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 6px 0 8px;
  font-weight: 600;
}

.hero-art aside p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== STAT STRIP ===== */
.stat-strip {
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.stat-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.3;
}

.stat-strip .shell {
  display: flex;
  justify-content: space-around;
  padding: 40px 28px;
  flex-wrap: wrap;
  gap: 32px;
}

.stat-strip p {
  text-align: center;
}

.stat-strip strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--accent-gold);
  margin-bottom: 6px;
  font-weight: 600;
  line-height: 1;
}

.stat-strip span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== SECTION HEAD ===== */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1.15;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.3px;
}

.section-head h2 em {
  color: var(--accent-gold);
  font-style: italic;
  font-weight: 500;
}

.section-head > p {
  max-width: 440px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== CURRENT / REVIEW GRID ===== */
.current {
  padding: 80px 28px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition-slow);
  position: relative;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-fire), var(--accent-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-color: var(--border-light);
}

.review-card:hover::before {
  opacity: 1;
}

.review-visual {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.review-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.review-card:hover .review-visual img {
  transform: scale(1.08);
}

.review-visual.rose { background: #3d1f1f; }
.review-visual.aqua { background: #1f2d2d; }
.review-visual.lilac { background: #2d1f2d; }
.review-visual.peach { background: #3d2a1a; }

.review-content {
  padding: 24px;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-meta b {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-fire);
  font-weight: 500;
}

.review-meta strong {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--accent-gold);
  font-weight: 600;
}

.review-content h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.review-content > p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.review-content dl {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.review-content dl div {
  display: flex;
  gap: 6px;
}

.review-content dt {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  font-weight: 500;
}

.review-content dd {
  font-size: 13px;
  color: var(--text-secondary);
}

.review-content a {
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ===== QUOTE BLOCK ===== */
.quote-block {
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 180px;
  color: var(--accent-gold);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}

.quote-block blockquote {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.5;
  color: var(--text-primary);
  max-width: 780px;
  margin: 0 auto 20px;
  font-style: italic;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.quote-block blockquote em {
  color: var(--accent-gold);
}

.quote-block cite {
  font-size: 13px;
  color: var(--text-muted);
  font-style: normal;
  letter-spacing: 0.5px;
}

/* ===== WARRIOR SECTION ===== */
.warrior-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 28px;
  position: relative;
}

.warrior-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-fire), transparent);
  opacity: 0.4;
}

.warrior-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.warrior-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.warrior-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.warrior-visual:hover img {
  transform: scale(1.05);
}

.warrior-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,8,6,0.95) 0%, rgba(12,8,6,0.3) 50%, transparent 100%);
}

.warrior-visual aside {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 2;
}

.warrior-visual aside b {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-fire);
  font-weight: 500;
}

.warrior-visual aside h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 6px 0 8px;
  font-weight: 600;
}

.warrior-visual aside p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.warrior-copy h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.15;
}

.warrior-copy > p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 16px;
}

.warrior-copy strong {
  color: var(--accent-gold);
  font-weight: 500;
}

.warrior-facts {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.warrior-facts article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: rgba(30, 22, 16, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.warrior-facts article:hover {
  border-color: var(--border-light);
  transform: translateX(4px);
}

.warrior-facts b {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-fire);
  padding-top: 2px;
}

.warrior-facts h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 600;
}

.warrior-facts p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== GODS SECTION ===== */
.gods-section {
  padding: 100px 28px;
  background: var(--bg-primary);
  position: relative;
}

.gods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.god-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition-slow);
  position: relative;
}

.god-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-fire), var(--accent-gold), var(--accent-jade));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.god-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.god-card:hover::before {
  opacity: 1;
}

.god-visual {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.god-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.god-card:hover .god-visual img {
  transform: scale(1.1);
}

.god-content {
  padding: 24px;
}

.god-content .tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-fire);
  margin-bottom: 10px;
  display: inline-block;
  padding: 4px 12px;
  background: rgba(196, 91, 42, 0.1);
  border-radius: 4px;
  font-weight: 500;
}

.god-content h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

.god-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== FIRE SECTION ===== */
.fire-section {
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border);
  padding: 100px 28px;
  position: relative;
}

.fire-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-fire), var(--accent-amber), var(--accent-fire));
}

.fire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.fire-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.fire-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-light);
}

.fire-card .fire-visual {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.fire-card .fire-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fire-card:hover .fire-visual img {
  transform: scale(1.05);
}

.fire-card .fire-content {
  padding: 28px;
}

.fire-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}

.fire-card p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.fire-card .fire-meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== COSMIC SECTION ===== */
.cosmic-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 28px;
  position: relative;
  overflow: hidden;
}

.cosmic-section::after {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cosmic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cosmic-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.cosmic-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.cosmic-visual:hover img {
  transform: scale(1.05);
}

.cosmic-copy h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.15;
}

.cosmic-copy > p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 16px;
}

.calendar-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.calendar-facts article {
  background: rgba(30, 22, 16, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.calendar-facts article:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.calendar-facts b {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--accent-gold);
  margin-bottom: 8px;
  font-weight: 600;
}

.calendar-facts span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== TIMELINE ===== */
.timeline-section {
  padding: 100px 28px;
  background: var(--bg-primary);
}

.timeline {
  position: relative;
  margin-top: 48px;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-fire), var(--accent-gold), var(--accent-jade));
  opacity: 0.4;
}

.timeline-item {
  position: relative;
  padding-left: 48px;
  padding-bottom: 40px;
  transition: var(--transition);
}

.timeline-item:hover {
  transform: translateX(4px);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--bg-primary);
  border: 3px solid var(--border-light);
  border-radius: 50%;
  transition: var(--transition);
}

.timeline-item:hover::before {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
  box-shadow: 0 0 16px rgba(212, 168, 83, 0.3);
}

.timeline-item.active::before {
  border-color: var(--accent-fire);
  background: var(--accent-fire);
  box-shadow: 0 0 16px rgba(196, 91, 42, 0.3);
  animation: pulse-gold 2s infinite;
}

.timeline-item b {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-fire);
  font-weight: 500;
}

.timeline-item h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 6px 0 10px;
  font-weight: 600;
}

.timeline-item p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== PROMISE ===== */
.promise {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 28px;
  position: relative;
}

.promise::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.3;
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}

.promise-grid h2 {
  font-family: var(--font-serif);
  font-size: 34px;
  margin-top: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.promise-list {
  display: grid;
  gap: 32px;
}

.promise-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
}

.promise-list b {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-fire);
  padding-top: 4px;
}

.promise-list h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}

.promise-list p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== GUIDES HOME ===== */
.guides-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 100px 28px;
  align-items: center;
}

.guide-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.guide-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.guide-image:hover img {
  transform: scale(1.05);
}

.guide-copy h2 {
  font-family: var(--font-serif);
  font-size: 34px;
  margin: 16px 0 20px;
  font-weight: 600;
  line-height: 1.2;
}

.guide-copy > p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
  font-size: 16px;
}

.guide-copy ul {
  list-style: none;
  margin-bottom: 28px;
}

.guide-copy li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  transition: var(--transition);
}

.guide-copy li:hover {
  padding-left: 8px;
  color: var(--accent-gold);
}

.guide-copy li span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-fire);
  min-width: 28px;
  font-weight: 500;
}

/* ===== METHOD HOME ===== */
.method-home {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 100px 28px;
  position: relative;
}

.method-home::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.3;
}

.method-home .shell > div:first-child {
  margin-bottom: 48px;
}

.method-home h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  margin-top: 12px;
  font-weight: 600;
  line-height: 1.15;
}

.criteria {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.criteria article {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.criteria article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-light);
}

.criteria b {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-fire);
  font-weight: 500;
}

.criteria h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin: 10px 0 8px;
  font-weight: 600;
}

.criteria p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  text-align: center;
  padding: 100px 28px;
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border);
  position: relative;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.3;
}

.newsletter h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  margin: 16px 0 16px;
  font-weight: 600;
}

.newsletter > p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 16px;
}

.newsletter small {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding-top: 56px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand strong {
  font-size: 18px;
}

.footer-grid p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 12px;
  line-height: 1.7;
}

.footer-grid h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-grid a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 5px 0;
  transition: var(--transition);
}

.footer-grid a:hover { color: var(--accent-gold); padding-left: 4px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== PAGE INTRO / HERO ===== */
.page-hero {
  padding: 80px 28px 56px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.3;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1.1;
  margin: 20px 0 20px;
  font-weight: 600;
}

.page-hero h1 em {
  color: var(--accent-gold);
  font-style: italic;
  font-weight: 500;
}

.page-hero > p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

.page-intro {
  padding: 64px 28px 48px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.page-intro h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 1.15;
  margin: 20px 0 16px;
  font-weight: 600;
}

.page-intro > p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.7;
}

/* ===== STORY / ABOUT ===== */
.story {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  padding: 80px 28px;
  align-items: start;
}

.story-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  position: sticky;
  top: 120px;
}

.story-card span {
  font-size: 52px;
  display: block;
  margin-bottom: 16px;
}

.story-card p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-fire);
  margin-bottom: 10px;
  font-weight: 500;
}

.story-card h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.prose h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  margin: 36px 0 16px;
  color: var(--text-primary);
  font-weight: 600;
}

.prose h2:first-child { margin-top: 0; }

.prose p {
  margin-bottom: 18px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.prose a { color: var(--accent-gold); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding: 56px 28px;
}

.contact-grid article {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.contact-grid article:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow);
}

.contact-grid article b {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-fire);
  font-weight: 500;
}

.contact-grid article h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  margin: 10px 0 12px;
  font-weight: 600;
}

.contact-grid article p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact-grid aside {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  height: fit-content;
}

.contact-grid aside p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-grid aside strong {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 500;
}

.contact-note {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 56px 28px;
}

.contact-note h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  margin-bottom: 28px;
  font-weight: 600;
}

.contact-note > div > div {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.contact-note p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

/* ===== ARCHIVE / MASKS / DRUMS ===== */
.archive {
  padding: 56px 28px;
}

.archive-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.archive-note strong {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--accent-gold);
  font-weight: 600;
}

.archive-note p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.archive-grid > article {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.archive-grid > article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-light);
}

.archive-art {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.archive-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.archive-grid > article:hover .archive-art img {
  transform: scale(1.05);
}

.archive-art span {
  font-size: 48px;
  color: var(--accent-gold);
  opacity: 0.3;
}

.archive-copy {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.archive-copy > p:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.archive-copy > p:first-child b {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-fire);
  font-weight: 500;
}

.archive-copy > p:first-child strong {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--accent-gold);
  font-weight: 600;
}

.archive-copy h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

.archive-copy > p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  flex: 1;
  line-height: 1.6;
}

.archive-copy dl {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}

.archive-copy dl div { display: flex; gap: 6px; }
.archive-copy dt { font-size: 11px; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }
.archive-copy dd { font-size: 13px; color: var(--text-secondary); }
.archive-copy a { font-size: 13px; font-weight: 500; }

/* ===== GUIDE LIST ===== */
.guide-list {
  padding: 56px 28px;
}

.guide-list article {
  display: grid;
  grid-template-columns: 52px 1fr 44px;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.guide-list article:hover {
  background: rgba(212, 168, 83, 0.03);
  padding-left: 12px;
}

.guide-list b {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent-fire);
  font-weight: 500;
}

.guide-list h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 4px;
  font-weight: 600;
}

.guide-list p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.guide-list span {
  font-size: 22px;
  color: var(--accent-gold);
  text-align: right;
  transition: var(--transition);
}

.guide-list article:hover span {
  transform: translateX(4px);
}

/* ===== FEATURE GUIDE ===== */
.feature-guide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0 28px 56px;
  align-items: stretch;
}

.feature-guide > div {
  position: relative;
  min-height: 400px;
  border-radius: var(--radius) 0 0 var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  border-right: none;
}

.feature-guide > div img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.feature-guide > div:hover img {
  transform: scale(1.05);
}

.feature-guide article {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-guide b {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-fire);
  font-weight: 500;
}

.feature-guide h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  margin: 12px 0 16px;
  font-weight: 600;
}

.feature-guide p {
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.7;
  font-size: 16px;
}

.feature-guide ol {
  padding-left: 20px;
  color: var(--text-secondary);
}

.feature-guide li {
  padding: 6px 0;
  line-height: 1.6;
}

/* ===== METHOD STEPS ===== */
.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 56px 28px;
}

.method-steps article {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.method-steps article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-light);
}

.method-steps b {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-fire);
  font-weight: 500;
}

.method-steps h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 10px 0 12px;
  font-weight: 600;
}

.method-steps p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== RUBRIC ===== */
.rubric {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 28px;
  position: relative;
}

.rubric::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.3;
}

.rubric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.rubric-grid article {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.rubric-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.rubric-grid b {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-fire);
  font-weight: 500;
}

.rubric-grid h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin: 10px 0 8px;
  font-weight: 600;
}

.rubric-grid p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== DISCLOSURE ===== */
.disclosure {
  padding: 56px 28px;
  max-width: 840px;
}

.disclosure h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  margin-bottom: 16px;
  font-weight: 600;
}

.disclosure p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 16px;
}

/* ===== LEGAL ===== */
.legal-head {
  padding: 56px 28px 36px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.legal-head::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.3;
}

.legal-head h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  margin: 14px 0 8px;
  font-weight: 600;
}

.legal-head > p {
  color: var(--text-muted);
  font-size: 14px;
}

.legal {
  padding: 44px 28px;
  max-width: 840px;
}

.legal h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 36px 0 14px;
  color: var(--text-primary);
  font-weight: 600;
}

.legal p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 16px;
}

.legal aside {
  display: block;
  margin-top: 36px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

/* ===== PEOPLES / TRIBES ===== */
.tribe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
  padding: 56px 28px;
}

.tribe-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition-slow);
  position: relative;
}

.tribe-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-fire), var(--accent-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tribe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.tribe-card:hover::before {
  opacity: 1;
}

.tribe-visual {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.tribe-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tribe-card:hover .tribe-visual img {
  transform: scale(1.08);
}

.tribe-content {
  padding: 28px;
}

.tribe-content .meta {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.tribe-content .meta span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-fire);
  padding: 4px 12px;
  background: rgba(196, 91, 42, 0.1);
  border-radius: 4px;
  font-weight: 500;
}

.tribe-content h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}

.tribe-content p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.65;
}

.tribe-content a {
  font-size: 14px;
  font-weight: 500;
}

/* ===== MYTHS ===== */
.myth-list {
  padding: 56px 28px;
}

.myth-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: var(--transition);
}

.myth-item:hover {
  padding-left: 8px;
}

.myth-visual {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
}

.myth-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.myth-item:hover .myth-visual img {
  transform: scale(1.05);
}

.myth-content b {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-fire);
  font-weight: 500;
}

.myth-content h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  margin: 10px 0 12px;
  font-weight: 600;
}

.myth-content p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 15px;
}

.myth-content .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.myth-content .tags span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-weight: 500;
  transition: var(--transition);
}

.myth-content .tags span:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .editorial-hero,
  .story,
  .guides-home,
  .feature-guide,
  .contact-grid,
  .promise-grid,
  .warrior-grid,
  .fire-grid,
  .cosmic-grid {
    grid-template-columns: 1fr;
  }

  .feature-guide > div {
    border-radius: var(--radius) var(--radius) 0 0;
    min-height: 280px;
    border-right: 1px solid var(--border);
    border-bottom: none;
  }

  .feature-guide article {
    border-left: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .method-steps,
  .gods-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .myth-item {
    grid-template-columns: 1fr;
  }

  .myth-visual {
    aspect-ratio: 16/9;
  }

  .editorial-copy h1,
  .page-hero h1,
  .page-intro h1 {
    font-size: 36px;
  }

  .section-head h2,
  .warrior-copy h2,
  .cosmic-copy h2,
  .method-home h2,
  .newsletter h2 {
    font-size: 30px;
  }

  .calendar-facts {
    grid-template-columns: 1fr 1fr;
  }

  .warrior-visual {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-top {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .stat-strip .shell {
    flex-direction: column;
    gap: 20px;
  }

  .guide-list article {
    grid-template-columns: 36px 1fr;
  }

  .guide-list span { display: none; }

  .calendar-facts {
    grid-template-columns: 1fr;
  }

  .editorial-hero {
    padding: 48px 20px;
  }

  .shell {
    padding: 0 20px;
  }
}
