/* ========== VARIABLES & RESET ========== */
:root {
  --bg-dark: #060503;
  --bg-parchment: #14100a;
  --bg-card: rgba(30, 24, 16, 0.85);
  --gold: #daa520;
  --gold-light: #f2d680;
  --gold-dim: #a08030;
  --gold-glow: rgba(218, 165, 32, 0.35);
  --bronze: #c08040;
  --crimson: #a03030;
  --text-primary: #e0d4b8;
  --text-secondary: #b8a888;
  --text-scripture: #d8c8a0;
  --border-gold: rgba(218, 165, 32, 0.2);
  --border-warm: rgba(192, 128, 64, 0.12);
  --glow-gold: 0 0 30px rgba(212, 165, 74, 0.15);
  --glow-candle: 0 0 60px rgba(212, 165, 74, 0.08);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.125rem;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.8;
}

/* ========== CANVAS BACKGROUND ========== */
#sacred-geometry {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* ========== GLOW ORBS (candlelight) ========== */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.glow-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 74, 0.12), transparent 70%);
  top: -100px;
  right: -150px;
  animation: candle1 12s ease-in-out infinite;
}

.glow-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(160, 118, 74, 0.1), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: candle2 15s ease-in-out infinite;
}

@keyframes candle1 {
  0%, 100% { opacity: 0.8; transform: translate(0, 0) scale(1); }
  25% { opacity: 1; }
  50% { opacity: 0.6; transform: translate(-20px, 15px) scale(1.05); }
  75% { opacity: 0.9; }
}

@keyframes candle2 {
  0%, 100% { opacity: 0.7; transform: translate(0, 0); }
  50% { opacity: 1; transform: translate(15px, -10px); }
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.8rem 0;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.nav.scrolled {
  background: rgba(13, 10, 7, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant SC', serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  font-family: 'Cormorant', serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* ========== LAYOUT ========== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.section-intro {
  text-align: center;
  color: var(--text-secondary);
  max-width: 650px;
  margin: -1rem auto 3rem;
  font-size: 1.1rem;
  font-style: italic;
}

/* ========== DECORATIVE DIVIDERS ========== */
.section::before {
  content: '';
  display: block;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  margin: 0 auto 3rem;
}

.section:first-of-type::before {
  display: none;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  position: relative;
}

.hero-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(300px, 50vw, 500px);
  height: clamp(300px, 50vw, 500px);
  margin-top: calc(clamp(300px, 50vw, 500px) / -2);
  margin-left: calc(clamp(300px, 50vw, 500px) / -2);
  pointer-events: none;
  animation: rotate-slow 120s linear infinite;
}

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

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-inscription {
  font-family: 'Cormorant', serif;
  font-size: 7.2px;
  letter-spacing: 0.25em;
  font-weight: 600;
}

.pi-symbol {
  font-family: 'Cormorant SC', serif;
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 900;
  color: var(--gold-light);
  text-shadow:
    0 0 20px rgba(240, 212, 138, 0.8),
    0 0 50px rgba(212, 165, 74, 0.5),
    0 0 100px rgba(212, 165, 74, 0.25),
    0 0 180px rgba(180, 130, 50, 0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
  animation: glow-pulse 4s ease-in-out infinite;
  position: relative;
}

@keyframes glow-pulse {
  0%, 100% {
    text-shadow:
      0 0 20px rgba(240, 212, 138, 0.8),
      0 0 50px rgba(212, 165, 74, 0.5),
      0 0 100px rgba(212, 165, 74, 0.25),
      0 0 180px rgba(180, 130, 50, 0.12);
  }
  50% {
    text-shadow:
      0 0 30px rgba(255, 230, 160, 1),
      0 0 70px rgba(240, 212, 138, 0.7),
      0 0 140px rgba(212, 165, 74, 0.35),
      0 0 250px rgba(180, 130, 50, 0.15);
  }
}

.hero h1 {
  font-family: 'Cormorant SC', serif;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  padding-left: 0.2em;
  color: var(--gold-light);
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(240, 212, 138, 0.2);
}

.hero-date {
  font-family: 'Cormorant', serif;
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.date-highlight {
  color: var(--gold);
  font-weight: 600;
}

.hero-sub {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--gold-dim);
  opacity: 0.35;
  max-width: 500px;
  word-break: break-all;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

.hero-ornament {
  color: var(--gold-dim);
  font-size: 1.2rem;
  letter-spacing: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.cta-btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-family: 'Cormorant', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(13, 10, 7, 0.85);
  border: 1px solid var(--gold-dim);
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all 0.4s ease;
  position: relative;
}

.cta-btn:hover {
  background: rgba(212, 165, 74, 0.08);
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator span {
  display: block;
  width: 20px;
  height: 36px;
  border: 1px solid var(--gold-dim);
  border-radius: 10px;
  position: relative;
  opacity: 0.4;
}

.scroll-indicator span::after {
  content: '';
  display: block;
  width: 3px;
  height: 7px;
  background: var(--gold-dim);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-bounce 2.5s infinite;
}

@keyframes scroll-bounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.2; transform: translateX(-50%) translateY(12px); }
}

/* ========== SECTION TITLES ========== */
.section-title {
  font-family: 'Cormorant SC', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--gold);
  text-shadow: 0 0 25px rgba(212, 165, 74, 0.15);
  letter-spacing: 0.08em;
}

/* ========== SECTION IMAGES ========== */
.section-img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 2px;
  border: 1px solid var(--border-gold);
  margin: 1.5rem auto;
  opacity: 0.9;
  transition: opacity 0.4s ease;
}

.section-img:hover {
  opacity: 1;
}

.section-img-small {
  max-width: 400px;
}

.section-img-medium {
  max-width: 600px;
}

/* ========== GLASS CARDS (parchment style) ========== */
.glass-card {
  background: linear-gradient(135deg, rgba(32, 26, 16, 0.55), rgba(24, 20, 12, 0.5));
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0.5;
}

.glass-card:hover {
  border-color: rgba(212, 165, 74, 0.25);
  box-shadow: var(--glow-candle);
}

.glass-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.glass-card p:last-child {
  margin-bottom: 0;
}

.glass-card strong {
  color: var(--gold);
  font-weight: 600;
}

.glass-card em {
  color: var(--bronze);
  font-style: italic;
}

/* ========== ABOUT SECTION ========== */
.section-about .glass-card {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ========== PIMAT / MENU ========== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.menu-card {
  text-align: center;
}

.menu-icon {
  font-size: 2.2rem;
  color: var(--gold-dim);
  margin-bottom: 0.8rem;
  opacity: 0.6;
  line-height: 1;
}

.menu-label {
  font-family: 'Cormorant', serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-dim);
  margin-bottom: 0.8rem;
}

.menu-card h3 {
  font-family: 'Cormorant', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.menu-card p {
  font-size: 0.95rem;
}

.rockring-ornament {
  text-align: center;
  margin: 1.5rem auto 0;
  max-width: 400px;
}

.rockring-svg {
  width: 100%;
  height: auto;
}

/* ========== NOTE ORNAMENTS ========== */
.note-ornament {
  color: var(--gold-dim);
  font-size: 0.75em;
  opacity: 0.5;
  margin: 0 0.3em;
  vertical-align: middle;
}

/* ========== PIBELN / SCRIPTURE ========== */
.scripture-card {
  max-width: 750px;
  margin: 0 auto 2.5rem;
  background: linear-gradient(135deg, rgba(36, 28, 16, 0.6), rgba(28, 22, 12, 0.55));
}

.scripture-title {
  font-family: 'Cormorant SC', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.scripture-ref {
  font-family: 'Cormorant', serif;
  font-size: 0.75rem;
  color: var(--gold-dim);
  text-align: center;
  margin-bottom: 1.5rem !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scripture-note {
  font-style: italic;
  text-align: center;
  margin-bottom: 1.5rem !important;
}

.scripture-text {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-scripture);
  border-left: 2px solid var(--gold-dim);
  padding-left: 1.5rem;
  margin-left: 0.5rem;
}

.scripture-text sup {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.7rem;
  margin-right: 0.15rem;
}

.scripture-text p {
  margin-bottom: 0.8rem;
  font-family: 'Crimson Pro', Georgia, serif;
}

.scripture-amen {
  font-weight: 600;
  color: var(--gold) !important;
  font-style: italic;
  text-align: right;
  margin-top: 1rem;
  font-family: 'Cormorant', serif !important;
  letter-spacing: 0.1em;
}

/* Pievangeliet */
.pievangeliet-text {
  font-family: 'Space Mono', monospace !important;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.pievangeliet-text p {
  font-family: 'Space Mono', monospace !important;
}

.pi-verse {
  color: var(--text-scripture) !important;
  line-height: 2 !important;
}

.pi-verse sup {
  color: var(--crimson) !important;
  font-weight: 700;
}

/* ========== PISALMER ========== */
.psalm-card {
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.psalm-title {
  font-family: 'Cormorant', serif;
  font-size: 1.15rem;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.psalm-ref {
  font-family: 'Cormorant', serif;
  font-size: 0.7rem;
  color: var(--gold-dim);
  text-align: center;
  margin-bottom: 1.5rem !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.psalm-text {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.1rem;
  line-height: 2;
  text-align: center;
  color: var(--text-scripture);
}

.psalm-text p {
  margin-bottom: 1.2rem;
  font-family: 'Crimson Pro', Georgia, serif;
}

.psalm-text em {
  color: var(--bronze);
}

.psalm-pi-digits {
  font-family: 'Space Mono', monospace !important;
  font-size: 0.9rem;
  color: var(--gold) !important;
  letter-spacing: 0.08em;
}

/* ========== FLAMS OCH TRAMS ========== */
.flams-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.flams-card {
  position: relative;
  padding-top: 3.5rem !important;
}

.flams-card::after {
  content: attr(data-icon);
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: 1.4rem;
}

.flams-card a {
  color: var(--gold-light);
}

.flams-card h3 {
  font-family: 'Cormorant', serif;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ========== PRACTICE SECTION ========== */
.practice-card {
  max-width: 700px;
  margin: 0 auto;
}

.practice-intro {
  text-align: center;
  margin-bottom: 2rem !important;
  font-style: italic;
}

.pi-display {
  font-family: 'Space Mono', monospace;
  font-size: 1.1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  word-break: break-all;
  line-height: 2;
  min-height: 80px;
}

.pi-int {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.3rem;
}

.pi-decimals {
  color: var(--text-secondary);
}

.practice-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.decimal-slider {
  flex: 1;
  min-width: 200px;
}

.decimal-slider label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
  font-family: 'Cormorant', serif;
}

.decimal-slider input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
}

.btn {
  font-family: 'Cormorant', serif;
  font-size: 0.8rem;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: var(--bg-dark);
  font-weight: 600;
}

.btn-primary:hover {
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}

.btn-secondary:hover {
  background: rgba(212, 165, 74, 0.08);
}

.quiz-section {
  border-top: 1px solid var(--border-gold);
  padding-top: 2rem;
}

.quiz-section h3 {
  font-family: 'Cormorant', serif;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
  font-weight: 600;
}

.quiz-section p {
  margin-bottom: 1rem !important;
}

.pi-input {
  width: 100%;
  font-family: 'Space Mono', monospace;
  font-size: 1.05rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  color: var(--text-primary);
  outline: none;
  margin-bottom: 1rem;
  transition: border-color 0.3s;
}

.pi-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212, 165, 74, 0.1);
}

.quiz-feedback {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  min-height: 1.5rem;
  margin-bottom: 1rem;
}

.quiz-feedback.correct {
  color: #7da667;
}

.quiz-feedback.wrong {
  color: var(--crimson);
}

.pi-result {
  cursor: pointer;
  letter-spacing: 0.05em;
  line-height: 2;
  word-break: break-all;
}

.pi-digit-correct {
  color: #7da667;
}

.pi-digit-wrong {
  color: #d04040;
  text-decoration: underline wavy;
  text-underline-offset: 3px;
}

/* ========== FACTS GRID ========== */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.fact-card {
  text-align: center;
}

.fact-number {
  font-family: 'Cormorant SC', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.8rem;
  text-shadow: 0 0 15px rgba(212, 165, 74, 0.2);
}

/* ========== COUNTDOWN ========== */
.section-countdown {
  text-align: center;
}

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

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-number {
  font-family: 'Cormorant SC', serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 25px rgba(212, 165, 74, 0.2);
  line-height: 1.2;
  min-width: 90px;
}

.countdown-label {
  font-family: 'Cormorant', serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}

.countdown-separator {
  font-family: 'Cormorant SC', serif;
  font-size: 2rem;
  color: var(--gold-dim);
  opacity: 0.3;
  align-self: flex-start;
  padding-top: 0.3rem;
}

/* ========== LEVE SECTION ========== */
.section-leve {
  text-align: center;
  padding-bottom: 4rem;
}

.leve-content {
  max-width: 600px;
  margin: 0 auto;
}

.leve-intro {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.leve-cheers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.leve-hurra {
  font-family: 'Cormorant SC', serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(212, 165, 74, 0.3);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.leve-hurra.visible {
  opacity: 1;
  transform: scale(1);
}

.leve-h {
  transition-delay: 0.3s;
}

/* ========== FOOTER ========== */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 2rem 3rem;
  border-top: 1px solid var(--border-gold);
}

/* ========== FIRE (below footer, very bottom) ========== */
.fire-container {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 200px;
  overflow: hidden;
  pointer-events: none;
  background: transparent;
}

#fire-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.footer::before {
  content: '\2726 \2726 \2726';
  display: block;
  color: var(--gold-dim);
  opacity: 0.3;
  letter-spacing: 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.footer-pi {
  font-family: 'Cormorant SC', serif;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.4;
  text-shadow: 0 0 20px rgba(212, 165, 74, 0.15);
}

.footer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-style: italic;
}

.footer-small {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem !important;
  font-style: normal !important;
  opacity: 0.2;
  margin-top: 1rem;
  word-break: break-all;
  color: var(--gold-dim);
}

/* ========== SCROLL ANIMATIONS ========== */
.section-title,
.glass-card,
.timeline-item,
.fact-card {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-title.visible,
.glass-card.visible,
.timeline-item.visible,
.fact-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.fact-card:nth-child(2) { transition-delay: 0.1s; }
.fact-card:nth-child(3) { transition-delay: 0.2s; }
.fact-card:nth-child(4) { transition-delay: 0.3s; }
.fact-card:nth-child(5) { transition-delay: 0.4s; }
.fact-card:nth-child(6) { transition-delay: 0.5s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(13, 10, 7, 0.97);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-gold);
    gap: 1rem;
  }

  .nav-links.open {
    display: flex;
  }

  .section {
    padding: 3.5rem 0;
  }

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

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

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

  .countdown-separator {
    display: none;
  }

  .countdown-display {
    gap: 0.5rem;
  }

  .countdown-number {
    min-width: 65px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .glass-card {
    padding: 1.5rem;
  }

  .scripture-text {
    padding-left: 1rem;
    font-size: 1rem;
  }
}
