/* ◈ TRILLIONAIRE CLINIC — SOVEREIGN STYLESHEET ◈ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=IBM+Plex+Mono:wght@300;400;500&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ═══ IMPERIAL DESIGN TOKENS ═══ */
:root {
  --void: #080810;
  --sovereign-dark: #0D0D18;
  --obsidian: #13131F;
  --midnight-glass: #1C1C2E;
  --crystalline: #252538;
  --platinum-bone: #F2EDE8;
  --ivory: #FAF7F2;
  --arctic: #FFFFFF;
  --gold: #C8A45A;
  --gold-hover: #E8C47A;
  --gold-muted: #A8845A;
  --gold-ghost: rgba(200, 164, 90, 0.094);
  --amethyst: #7B5EA7;
  --deep-violet: #4A3570;
  --astral-purple: #A07FD0;
  --cyan: #4ECDC4;
  --emergency: #FF6B6B;
  --life-green: #6BCB77;
  --text-primary: rgba(255, 255, 255, 0.94);
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.4);
  --text-dim: rgba(255, 255, 255, 0.2);
  --font-display: 'Cormorant Garamond', serif;
  --font-serif: 'Playfair Display', serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --font-body: 'DM Sans', sans-serif;
  --font-micro: 'IBM Plex Mono', monospace;
  --ease-sovereign: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-reveal: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-height: 64px;
}

/* ═══ RESET & BASE ═══ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-muted) var(--void);
}

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

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

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

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--gold);
  color: var(--void);
}

/* ═══ SCROLL PROGRESS ═══ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 10000;
  width: 0;
  transition: none;
}

/* ═══ CUSTOM CURSOR ═══ */
.cursor-outer {
  position: fixed;
  width: 24px;
  height: 24px;
  border: 0.5px solid rgba(200, 164, 90, 0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-sovereign), height 0.3s var(--ease-sovereign), border-color 0.3s, opacity 0.3s;
}

.cursor-inner {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
}

.cursor-hover .cursor-outer {
  width: 48px;
  height: 48px;
  border-color: rgba(200, 164, 90, 0.6);
}

.cursor-hover .cursor-inner {
  opacity: 0;
}

@media (pointer:coarse) {

  .cursor-outer,
  .cursor-inner {
    display: none;
  }
}

/* ═══ PRELOADER ═══ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--void);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s, visibility 0.6s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#preloader .monogram {
  width: 120px;
  height: 120px;
  opacity: 0;
  animation: monogramIn 1.2s 0.3s forwards;
}

#preloader .monogram svg {
  width: 100%;
  height: 100%;
}

#preloader .heartbeat-line {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 55%;
}

#preloader .heartbeat-line svg {
  width: 100%;
  height: 40px;
  transform: translateY(-50%);
}

#preloader .heartbeat-line path {
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawLine 1.5s 1.5s forwards;
}

.preloader-ring {
  width: 140px;
  height: 140px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: absolute;
  opacity: 0;
  animation: ringExpand 1.2s 0.1s forwards;
}

.preloader-skip {
  position: absolute;
  bottom: 60px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 0.3s 1.5s forwards;
  transition: color 0.3s;
}

.preloader-skip:hover {
  color: var(--gold);
}

@keyframes ringExpand {
  0% {
    transform: scale(0);
    opacity: 0
  }

  50% {
    opacity: 1
  }

  100% {
    transform: scale(1);
    opacity: 0.3
  }
}

@keyframes monogramIn {
  0% {
    opacity: 0;
    transform: scale(0.8)
  }

  100% {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0
  }
}

@keyframes fadeIn {
  to {
    opacity: 1
  }
}

/* ═══ NAVIGATION ═══ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.6s, border-color 0.6s, backdrop-filter 0.6s;
  border-bottom: 0.5px solid transparent;
}

#navbar.scrolled {
  background: rgba(13, 13, 24, 0.85);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom-color: var(--gold-ghost);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo svg {
  width: 36px;
  height: 36px;
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.05)
  }
}

.nav-logo span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-sovereign), left 0.3s var(--ease-sovereign);
}

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

.nav-links a:hover::after {
  width: 100%;
  left: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-selector {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
}

.lang-selector span {
  cursor: pointer;
  transition: color 0.3s;
  padding: 2px 4px;
}

.lang-selector span:hover,
.lang-selector span.active {
  color: var(--gold);
}

.nav-divider {
  width: 1px;
  height: 24px;
  background: var(--gold-muted);
  opacity: 0.4;
}

.btn-audience {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
  z-index: 1;
}

.btn-audience::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-sovereign);
  z-index: -1;
}

.btn-audience:hover {
  color: var(--void);
}

.btn-audience:hover::before {
  transform: translateX(0);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 10001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  position: absolute;
  transition: all 0.4s var(--ease-sovereign);
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 16, 0.97);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px;
  font-style: italic;
  color: var(--text-secondary);
  transition: color 0.3s;
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.active a {
  animation: menuItemIn 0.5s forwards;
}

.mobile-menu.active a:nth-child(1) {
  animation-delay: 0.05s
}

.mobile-menu.active a:nth-child(2) {
  animation-delay: 0.09s
}

.mobile-menu.active a:nth-child(3) {
  animation-delay: 0.13s
}

.mobile-menu.active a:nth-child(4) {
  animation-delay: 0.17s
}

.mobile-menu.active a:nth-child(5) {
  animation-delay: 0.21s
}

.mobile-menu.active a:nth-child(6) {
  animation-delay: 0.25s
}

.mobile-menu.active a:nth-child(7) {
  animation-delay: 0.29s
}

@keyframes menuItemIn {
  to {
    transform: translateY(0);
    opacity: 1
  }
}

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

/* ═══ HERO ═══ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--void);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 8, 16, 0.7) 0%, rgba(8, 8, 16, 0.3) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 6vw;
  max-width: 1200px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.hero-content h1 .line {
  display: block;
  overflow: hidden;
}

.hero-content h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: heroLineIn 1.2s var(--ease-reveal) forwards;
}

.hero-content h1 .line:nth-child(2) span {
  animation-delay: 0.3s;
}

.hero-content h1 .line:nth-child(3) span {
  animation-delay: 0.6s;
}

@keyframes heroLineIn {
  to {
    transform: translateY(0)
  }
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.2vw, 18px);
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.8;
  margin-top: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 1.0s var(--ease-reveal) forwards;
  letter-spacing: 0.01em;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-top: 36px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 1.4s var(--ease-reveal) forwards;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--void);
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s;
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(200, 164, 90, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-ghost {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background 0.4s, color 0.4s;
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--void);
}

.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 1.8s var(--ease-reveal) forwards;
  flex-wrap: wrap;
}

.hero-trust span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 0.5s 2.2s forwards;
  transition: opacity 0.5s;
}

.scroll-indicator.hidden {
  opacity: 0 !important;
}

.scroll-indicator .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.5)
  }

  50% {
    opacity: 1;
    transform: scaleY(1)
  }
}

.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ═══ AMBIENT TRANSITION ═══ */
.ambient-band {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.ambient-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--void) 0%, var(--sovereign-dark) 40%, var(--obsidian) 60%, var(--void) 100%);
}

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

/* ═══ SECTION COMMONS ═══ */
.section {
  padding: 120px 48px;
  position: relative;
}

.section-dark {
  background: var(--void);
}

.section-obsidian {
  background: var(--obsidian);
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}

.section-line {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease-reveal), transform 0.8s var(--ease-reveal);
}

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

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

/* ═══ STATISTICS ═══ */
#statistics {
  padding: 100px 48px;
  background: var(--void);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gold-ghost);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 120px);
  color: var(--gold);
  line-height: 1;
  font-weight: 300;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ═══ DOCTRINE ═══ */
#doctrine {
  background: var(--sovereign-dark);
  overflow: hidden;
}

.doctrine-grid {
  display: grid;
  grid-template-columns: 58fr 42fr;
  max-width: 1400px;
  margin: 0 auto;
  gap: 0;
  min-height: 80vh;
}

.doctrine-image {
  position: relative;
  padding: 60px;
}

.doctrine-image .img-frame {
  position: relative;
  width: 100%;
  padding-top: 137%;
  border: 4px solid var(--gold);
  overflow: hidden;
}

.doctrine-image .img-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctrine-image .img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(8, 8, 16, 0.6);
}

.doctrine-data {
  position: absolute;
  bottom: 40px;
  left: 60px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  background: var(--sovereign-dark);
  padding: 12px 16px;
  border: 1px solid var(--gold-ghost);
}

.doctrine-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.doctrine-text p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 24px;
  max-width: 65ch;
}

.covenant-list {
  margin-top: 32px;
}

.covenant-list h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.covenant-list li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid var(--gold-ghost);
}

.covenant-list li::before {
  content: '◻';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.doctrine-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 32px;
  transition: gap 0.3s;
}

.doctrine-link:hover {
  gap: 16px;
}

.doctrine-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.doctrine-link:hover svg {
  transform: translateX(4px);
}

/* ═══ DISCIPLINES ═══ */
#disciplines {
  background: var(--void);
  padding: 120px 48px 160px;
}

.disciplines-header {
  max-width: 1400px;
  margin: 0 auto 60px;
}

.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.discipline-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 0.5px solid var(--gold-ghost);
  padding: 40px 32px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease-sovereign), border-color 0.5s, box-shadow 0.5s;
  position: relative;
  overflow: hidden;
}

.discipline-card:nth-child(odd) {
  transform: translateY(24px);
}

.discipline-card:hover {
  transform: translateY(-8px) !important;
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(200, 164, 90, 0.08), inset 0 0 40px rgba(200, 164, 90, 0.03);
}

.discipline-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  color: var(--gold);
}

.discipline-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1;
}

.discipline-card[data-accent="purple"] .discipline-icon {
  color: var(--amethyst);
}

.discipline-card[data-accent="cyan"] .discipline-icon {
  color: var(--cyan);
}

.discipline-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.discipline-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  opacity: 0.7;
}

.discipline-enter {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  padding-top: 28px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}

.discipline-card:hover .discipline-enter {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ COUNCIL ═══ */
#council {
  background: var(--sovereign-dark);
  padding: 120px 0;
}

.council-header {
  padding: 0 48px;
  max-width: 1400px;
  margin: 0 auto 40px;
}

.council-filters {
  display: flex;
  gap: 4px;
  padding: 0 48px;
  max-width: 1400px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 20px;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: all 0.3s;
}

.filter-btn:hover {
  color: var(--text-primary);
}

.filter-btn.active {
  background: var(--gold);
  color: var(--void);
  border-color: var(--gold);
}

.council-track {
  display: flex;
  gap: 28px;
  padding: 0 48px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.council-track::-webkit-scrollbar {
  display: none;
}

.doctor-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.doctor-portrait {
  position: relative;
  width: 100%;
  padding-top: 130%;
  overflow: hidden;
}

.doctor-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.6s;
}

.doctor-card:hover .doctor-portrait img {
  filter: grayscale(0%) sepia(30%) saturate(1.2) hue-rotate(15deg);
}

.doctor-info {
  padding: 20px 0;
}

.doctor-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--text-primary);
}

.doctor-info .title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.doctor-info .credentials {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.doctor-info .credentials span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  border: 1px solid var(--gold-ghost);
  color: var(--text-muted);
}

.doctor-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.doctor-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.4
  }

  50% {
    opacity: 1
  }
}

.doctor-status span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.doctor-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(8, 8, 16, 0.95));
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-sovereign);
}

.doctor-card:hover .doctor-overlay {
  transform: translateY(0);
}

.doctor-overlay p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.doctor-overlay .btn-sm {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: inline-block;
  transition: background 0.3s, color 0.3s;
}

.doctor-overlay .btn-sm:hover {
  background: var(--gold);
  color: var(--void);
}

.council-footer {
  padding: 60px 48px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.council-footer p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
}

.council-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
}

/* ═══ PATIENT JOURNEY ═══ */
#journey {
  background: var(--void);
  padding: 120px 48px;
}

.journey-header {
  max-width: 1400px;
  margin: 0 auto 60px;
}

.journey-timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gold-ghost);
}

.journey-line-progress {
  position: absolute;
  left: 24px;
  top: 0;
  width: 1px;
  background: var(--gold);
  height: 0;
  transition: height 0.1s;
}

.journey-station {
  position: relative;
  padding: 0 0 60px 72px;
}

.journey-station::before {
  content: attr(data-num);
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  border: 1px solid var(--gold-ghost);
  background: var(--void);
  z-index: 1;
}

.journey-station h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.journey-station p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
}

/* ═══ APPOINTMENT ═══ */
#appointment {
  background: var(--void);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

#appointment-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.08;
}

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

.appt-grid {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.appt-info h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.appt-info p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.appt-modalities {
  margin-top: 28px;
}

.appt-modalities li {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.appt-modalities li::before {
  content: '◉';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
}

.appt-privacy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-top: 28px;
  border-top: 1px solid var(--gold-ghost);
  padding-top: 20px;
  line-height: 1.8;
}

.appt-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(200, 164, 90, 0.2);
  padding: 16px 0 12px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.25s;
  letter-spacing: 0.02em;
}

.form-group label {
  position: absolute;
  top: 16px;
  left: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all 0.25s ease;
  pointer-events: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group select:focus~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
  top: -4px;
  font-size: 8px;
  color: var(--gold);
}

.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

.form-group textarea {
  resize: none;
  min-height: 48px;
  transition: min-height 0.3s, border-color 0.25s;
}

.form-group textarea:focus {
  min-height: 120px;
}

.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.radio-group label {
  position: static;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  pointer-events: all;
  text-transform: uppercase;
}

.radio-group input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold-muted);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.radio-group input[type="radio"]:checked {
  border-color: var(--gold);
}

.radio-group input[type="radio"]:checked::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn-submit {
  width: 100%;
  height: 64px;
  background: var(--gold);
  color: var(--void);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: box-shadow 0.4s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  box-shadow: 0 0 40px rgba(200, 164, 90, 0.3);
}

.btn-submit:active {
  transform: scale(0.99);
}

/* ═══ CHRONICLES ═══ */
#chronicles {
  background: var(--sovereign-dark);
  padding: 120px 48px;
}

.chronicles-header {
  max-width: 1400px;
  margin: 0 auto 60px;
}

.chronicles-track {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.chronicles-slider {
  display: flex;
  transition: transform 0.8s var(--ease-sovereign);
}

.chronicle-card {
  flex: 0 0 calc(33.333% - 16px);
  margin: 0 12px;
  background: linear-gradient(145deg, #FAF7F2 0%, #F2EDE8 100%);
  padding: 48px 40px;
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.chronicle-id {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 24px;
}

.chronicle-card blockquote {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--sovereign-dark);
  line-height: 1.6;
  flex: 1;
  letter-spacing: 0.01em;
}

.chronicle-author {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold-muted);
  line-height: 1.6;
}

.chronicle-rating {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.chronicles-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.chronicles-dots span {
  width: 24px;
  height: 1px;
  background: var(--gold-ghost);
  transition: width 0.4s, background 0.4s;
  cursor: pointer;
}

.chronicles-dots span.active {
  width: 48px;
  background: var(--gold);
}

/* ═══ COVENANT ═══ */
#covenant {
  background: var(--void);
  padding: 120px 0;
  overflow: hidden;
}

.covenant-header {
  padding: 0 48px;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.covenant-panels {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.covenant-panels::-webkit-scrollbar {
  display: none;
}

.covenant-panel {
  flex: 0 0 100vw;
  min-height: 90vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 10vw;
}

.covenant-panel:nth-child(1) {
  background: var(--obsidian);
}

.covenant-panel:nth-child(2) {
  background: linear-gradient(135deg, var(--midnight-glass) 0%, var(--deep-violet) 100%);
}

.covenant-panel:nth-child(3) {
  background: #050508;
}

.covenant-panel .tier-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: inline-block;
  margin-bottom: 24px;
}

.covenant-panel:nth-child(2) .tier-badge {
  background: var(--gold);
  color: var(--void);
}

.covenant-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.covenant-panel .tier-price {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 32px;
  text-transform: uppercase;
}

.covenant-panel ul {
  columns: 2;
  column-gap: 40px;
}

.covenant-panel li {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  padding: 8px 0 8px 20px;
  position: relative;
  break-inside: avoid;
  line-height: 1.6;
}

.covenant-panel li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.covenant-panel:nth-child(3) li::before {
  color: var(--platinum-bone);
}

.covenant-panel:nth-child(3) .tier-badge {
  border-color: var(--platinum-bone);
  color: var(--platinum-bone);
}

.covenant-panel .btn-tier {
  display: inline-block;
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background 0.4s, color 0.4s;
}

.covenant-panel .btn-tier:hover {
  background: var(--gold);
  color: var(--void);
}

/* ═══ INTELLIGENCE ═══ */
#intelligence {
  background: var(--sovereign-dark);
  padding: 120px 48px;
}

.intel-header {
  max-width: 1400px;
  margin: 0 auto 60px;
}

.intel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.intel-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.intel-card .img-wrap {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}

.intel-card .img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.intel-card:hover .img-wrap img {
  transform: scale(1.05);
}

.intel-card .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(8, 8, 16, 0.8));
}

.intel-card .img-wrap .hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200, 164, 90, 0.12);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.intel-card:hover .img-wrap .hover-overlay {
  opacity: 1;
}

.hover-overlay span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.intel-card .card-body {
  padding: 20px 0;
}

.intel-card .category {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.intel-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 8px;
}

.intel-card .meta {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ═══ GLOBAL SANCTUARIES ═══ */
#sanctuaries {
  background: var(--void);
  padding: 120px 48px;
}

.sanctuaries-header {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto 60px;
}

#globe-canvas {
  width: 100%;
  max-width: 600px;
  height: 600px;
  margin: 0 auto 60px;
  display: block;
}

.sanctuaries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.sanctuary-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--gold-ghost);
  transition: border-color 0.4s, box-shadow 0.4s;
}

.sanctuary-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(200, 164, 90, 0.05);
}

.sanctuary-card h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.sanctuary-card p {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

/* ═══ FAQ ═══ */
#faq {
  background: var(--sovereign-dark);
  padding: 120px 48px;
}

.faq-header {
  max-width: 900px;
  margin: 0 auto 60px;
}

.faq-chapters {
  max-width: 900px;
  margin: 0 auto;
}

.faq-chapter {
  margin-bottom: 48px;
}

.faq-chapter h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.faq-item {
  border-bottom: 1px solid var(--gold-ghost);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  flex: 1;
  padding-right: 20px;
}

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  transition: transform 0.4s var(--ease-sovereign);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-sovereign);
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  padding: 0 0 20px;
  max-width: 700px;
}

/* ═══ FOOTER ═══ */
#footer {
  background: var(--void);
  border-top: 1px solid var(--gold-ghost);
}

.footer-top {
  text-align: center;
  padding: 80px 48px 60px;
}

.footer-top .footer-logo {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-top h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 32px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 48px 60px;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid var(--gold-ghost);
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col a,
.footer-col p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  display: block;
  padding: 4px 0;
  transition: color 0.3s;
  line-height: 1.6;
}

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

.footer-col .tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-newsletter {
  display: flex;
  margin-top: 16px;
  border-bottom: 1px solid rgba(200, 164, 90, 0.2);
}

.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-primary);
  padding: 10px 0;
  outline: none;
  letter-spacing: 0.05em;
}

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

.footer-newsletter button {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 10px 16px;
  transition: color 0.3s;
}

.footer-newsletter button:hover {
  color: var(--gold-hover);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

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

.footer-bottom-links a {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s;
}

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

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: var(--text-dim);
  transition: color 0.3s;
}

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

.footer-social svg {
  width: 16px;
  height: 16px;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width:1024px) {
  .disciplines-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .covenant-panel ul {
    columns: 1;
  }

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

  .doctrine-image {
    padding: 40px;
  }

  .doctrine-text {
    padding: 40px;
  }

  .appt-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width:768px) {
  .section {
    padding: 80px 24px;
  }

  .nav-links,
  .nav-right .lang-selector,
  .nav-right .nav-divider,
  .nav-right .btn-audience {
    display: none;
  }

  .hamburger {
    display: block;
  }

  #navbar {
    padding: 0 24px;
  }

  .hero-content {
    padding: 0 6vw;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-trust {
    flex-direction: column;
    gap: 8px;
  }

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

  .stat-number {
    font-size: clamp(36px, 12vw, 80px);
  }

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

  .discipline-card:nth-child(odd) {
    transform: none;
  }

  .chronicle-card {
    flex: 0 0 calc(100% - 24px);
  }

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

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

  #globe-canvas {
    height: 400px;
  }

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

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

  .council-header,
  .council-filters,
  .council-footer {
    padding: 0 24px;
  }

  .covenant-panel {
    padding: 60px 24px;
  }

  #statistics {
    padding: 60px 24px;
  }

  #chronicles {
    padding: 80px 24px;
  }

  #covenant {
    padding: 80px 0;
  }

  #faq {
    padding: 80px 24px;
  }

  .footer-top {
    padding: 60px 24px 40px;
  }

  .footer-cols {
    padding: 0 24px 40px;
  }

  .footer-bottom {
    padding: 16px 24px;
  }
}

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

  .stat-item::after {
    display: none !important;
  }

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

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-content h1 .line span {
    transform: none;
  }

  .hero-sub,
  .hero-ctas,
  .hero-trust {
    opacity: 1;
  }

  .scroll-indicator {
    opacity: 1;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}