/* ============================================================
   PASHA.LT — Дизайн-система
   Православный сайт, посвящённый Светлому Воскресению Христову
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  --bg-deep:      #1a0a0e;
  --bg-violet:    #2a1018;
  --bg-card:      rgba(60, 20, 30, 0.55);
  --violet:       #3d1520;
  --violet-light: #5a2030;
  --gold:         #d4af37;
  --gold-light:   #f0d060;
  --gold-dim:     rgba(212, 175, 55, 0.15);
  --gold-glow:    rgba(212, 175, 55, 0.35);
  --red-glow:     rgba(180, 40, 60, 0.25);
  --white:        #ffffff;
  --text-main:    #f0e0e4;
  --text-muted:   #c0a0a8;
  --text-dim:     #a07882;

  --font-serif:   'Georgia', 'Times New Roman', serif;
  --font-sans:    'Segoe UI', system-ui, -apple-system, sans-serif;

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    36px;

  --shadow-gold:  0 0 40px rgba(212, 175, 55, 0.25);
  --shadow-card:  0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-deep:  0 20px 60px rgba(0, 0, 0, 0.7);

  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--gold-light); }

/* ── Skip Navigation ── */
.skip-nav {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--bg-deep); padding: 12px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600; z-index: 100000; transition: top 0.2s ease;
}
.skip-nav:focus { top: 0; }

::selection { background: var(--gold); color: var(--bg-deep); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: normal;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.gold { color: var(--gold); }
.serif { font-family: var(--font-serif); }
.muted { color: var(--text-muted); }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; position: relative; }
.section--dark { background: var(--bg-deep); }
.section--violet {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--violet) 50%, var(--bg-deep) 100%);
}

/* ── Dividers ───────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid rgba(212,175,55,0.2); margin: 0; }
.divider--center { width: 80px; border-top: 2px solid var(--gold); margin: 20px auto 40px; }

.section-divider {
  display: flex; align-items: center; justify-content: center; gap: 20px; padding: 10px 0;
}
.section-divider::before, .section-divider::after {
  content: ''; height: 1px; width: 80px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.4));
}
.section-divider::after { background: linear-gradient(to left, transparent, rgba(212,175,55,0.4)); }
.section-divider__cross { color: var(--gold); font-size: 1rem; opacity: 0.5; text-shadow: 0 0 8px var(--gold-glow); }

/* ── Navigation ─────────────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition); padding: 0;
}
#site-header.scrolled {
  background: rgba(26,10,14,0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 70px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo__cross { font-size: 1.4rem; color: var(--gold); text-shadow: 0 0 12px var(--gold-glow); }
.nav-logo__text { font-family: var(--font-serif); font-size: 1.1rem; color: var(--white); line-height: 1.2; }
.nav-logo__sub { font-size: 0.65rem; color: var(--text-muted); display: block; letter-spacing: 0.1em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; flex-wrap: wrap; }
.nav-links a {
  color: var(--text-muted); font-size: 0.82rem; padding: 6px 10px; border-radius: var(--radius-sm);
  letter-spacing: 0.03em; transition: color var(--transition-fast), background var(--transition-fast); white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: var(--gold-dim); }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.lang-switcher { display: flex; gap: 2px; background: rgba(26,10,14,0.7); border: 1px solid rgba(212,175,55,0.15); border-radius: 22px; padding: 3px 4px; }
.lang-switcher a {
  color: var(--text-muted); font-size: 0.78rem; font-weight: 600; padding: 6px 11px; border-radius: 18px;
  letter-spacing: 0.08em; text-transform: uppercase; position: relative;
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.lang-switcher a:hover {
  color: var(--white); background: rgba(212,175,55,0.1);
}
.lang-switcher a.active {
  color: var(--gold); background: rgba(212,175,55,0.14);
  box-shadow: 0 0 14px rgba(212,175,55,0.2), inset 0 0 8px rgba(212,175,55,0.06);
  text-shadow: 0 0 8px rgba(212,175,55,0.5);
}
/* Animated bottom dot on active */
.lang-switcher a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 6px var(--gold); animation: langDotPulse 2s ease-in-out infinite;
}
@keyframes langDotPulse {
  0%, 100% { opacity: 0.6; box-shadow: 0 0 4px var(--gold); }
  50% { opacity: 1; box-shadow: 0 0 10px var(--gold), 0 0 20px rgba(212,175,55,0.3); }
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-muted); border-radius: 2px; transition: all var(--transition-fast); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  background: rgba(26,10,14,0.98); backdrop-filter: blur(20px); z-index: 999;
  overflow-y: auto; padding: 30px 24px; flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-main); font-size: 1.1rem; padding: 14px 20px;
  border-radius: var(--radius-md); border: 1px solid rgba(212,175,55,0.1); transition: all var(--transition-fast);
}
.mobile-menu a:hover { color: var(--gold); border-color: rgba(212,175,55,0.3); background: var(--gold-dim); }
.mobile-lang {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(212,175,55,0.12);
}
.mobile-lang a {
  text-align: center; font-size: 0.95rem !important; font-weight: 600;
  padding: 12px 8px !important; letter-spacing: 0.12em;
}
.mobile-lang a.active {
  border-color: rgba(212,175,55,0.5) !important;
  background: linear-gradient(135deg, rgba(212,175,55,0.14), rgba(212,175,55,0.04)) !important;
  color: var(--gold) !important;
  box-shadow: 0 0 20px rgba(212,175,55,0.12), inset 0 0 12px rgba(212,175,55,0.05);
  text-shadow: 0 0 8px rgba(212,175,55,0.4);
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, rgba(140,30,50,0.35) 0%, rgba(60,20,30,0.4) 30%, var(--bg-deep) 70%);
}

#hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 15% 25%, rgba(255,220,180,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 70%, rgba(255,220,180,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 70% 60%, rgba(212,175,55,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 80%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 80%, rgba(255,220,180,0.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 55% 15%, rgba(212,175,55,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 50%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 65% 85%, rgba(212,175,55,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 45%, rgba(255,200,150,0.3) 0%, transparent 100%);
  animation: starsTwinkle 6s ease-in-out infinite alternate;
  pointer-events: none; z-index: 0;
}
@keyframes starsTwinkle { 0% { opacity: 0.7; } 100% { opacity: 1; } }

.hero::after {
  content: ''; position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%);
  width: 100%; height: 400px;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(212,175,55,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 35% 100%, rgba(180,40,60,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 65% 100%, rgba(180,40,60,0.15) 0%, transparent 50%);
  pointer-events: none; z-index: 0;
}

.hero-content { position: relative; z-index: 10; text-align: center; padding: 120px 24px 80px; max-width: 900px; }

.hero-cross-wrap { position: relative; display: inline-block; margin-bottom: 40px; }
.hero-cross { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 110px; height: 110px; }
.hero-cross svg {
  width: 70px; height: 90px; fill: var(--gold);
  filter: drop-shadow(0 0 15px rgba(212,175,55,0.9)) drop-shadow(0 0 40px rgba(212,175,55,0.6)) drop-shadow(0 0 80px rgba(212,175,55,0.3));
  animation: crossPulse 4s ease-in-out infinite;
}
.hero-cross-halo {
  position: absolute; inset: -50px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.25) 0%, rgba(212,175,55,0.1) 30%, rgba(180,40,60,0.05) 60%, transparent 70%);
  animation: haloPulse 4s ease-in-out infinite;
}
.hero-cross-rays {
  position: absolute; inset: -80px; border-radius: 50%; pointer-events: none;
  background: conic-gradient(from 0deg,
    transparent 0deg, rgba(212,175,55,0.08) 10deg, transparent 20deg,
    transparent 40deg, rgba(212,175,55,0.06) 50deg, transparent 60deg,
    transparent 80deg, rgba(212,175,55,0.08) 90deg, transparent 100deg,
    transparent 120deg, rgba(212,175,55,0.06) 130deg, transparent 140deg,
    transparent 160deg, rgba(212,175,55,0.08) 170deg, transparent 180deg,
    transparent 200deg, rgba(212,175,55,0.06) 210deg, transparent 220deg,
    transparent 240deg, rgba(212,175,55,0.08) 250deg, transparent 260deg,
    transparent 280deg, rgba(212,175,55,0.06) 290deg, transparent 300deg,
    transparent 320deg, rgba(212,175,55,0.08) 330deg, transparent 340deg, transparent 360deg);
  animation: raysRotate 30s linear infinite;
}
@keyframes raysRotate { to { transform: rotate(360deg); } }
@keyframes crossPulse {
  0%, 100% { filter: drop-shadow(0 0 15px rgba(212,175,55,0.9)) drop-shadow(0 0 40px rgba(212,175,55,0.6)) drop-shadow(0 0 80px rgba(212,175,55,0.3)); }
  50%       { filter: drop-shadow(0 0 25px rgba(212,175,55,1)) drop-shadow(0 0 60px rgba(212,175,55,0.8)) drop-shadow(0 0 100px rgba(212,175,55,0.4)); }
}
@keyframes haloPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.15); }
}

.hero-eyebrow {
  font-size: 0.8rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; opacity: 0; transform: translateY(20px); animation: fadeUp 0.9s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(3.5rem, 12vw, 7.5rem); color: var(--white);
  text-shadow: 0 0 80px rgba(212,175,55,0.5), 0 0 120px rgba(180,40,60,0.2), 0 4px 20px rgba(0,0,0,0.5);
  letter-spacing: 0.08em; line-height: 1.0; margin-bottom: 12px;
  opacity: 0; transform: translateY(30px) scale(0.95); animation: heroTitleIn 1.2s 0.5s forwards;
}
@keyframes heroTitleIn { to { opacity: 1; transform: translateY(0) scale(1); } }

.hero-subtitle {
  font-family: var(--font-serif); font-size: clamp(1.1rem, 3vw, 1.8rem); color: var(--gold-light);
  letter-spacing: 0.15em; margin-bottom: 40px; opacity: 0; transform: translateY(20px); animation: fadeUp 0.9s 0.8s forwards;
}
.hero-divider {
  width: 150px; height: 2px; background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 30px; opacity: 0; animation: fadeIn 1s 1s forwards; position: relative;
}
.hero-divider::after {
  content: '✦'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  color: var(--gold); font-size: 0.6rem; text-shadow: 0 0 6px var(--gold-glow);
}

.hero-service-info {
  background: rgba(60,20,30,0.5); border: 1px solid rgba(212,175,55,0.3); border-radius: var(--radius-lg);
  padding: 28px 36px; margin-bottom: 36px; backdrop-filter: blur(16px);
  opacity: 0; transform: translateY(20px); animation: fadeUp 0.9s 1.1s forwards;
  position: relative; overflow: hidden;
}
.hero-service-info::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 200%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: shimmer 3s 2s ease-in-out infinite;
}
@keyframes shimmer { 0% { transform: translateX(-50%); } 100% { transform: translateX(50%); } }

.hero-service-date { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.hero-service-text { font-family: var(--font-serif); font-size: clamp(1rem, 2.5vw, 1.35rem); color: var(--white); }

.hero-cta-wrap {
  opacity: 0; transform: translateY(20px); animation: fadeUp 0.9s 1.3s forwards;
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 100px;
  font-size: 0.9rem; letter-spacing: 0.08em; cursor: pointer; transition: all var(--transition);
  border: none; font-family: var(--font-sans); text-transform: uppercase; position: relative; overflow: hidden;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), #b8960a); color: var(--bg-deep);
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 40px rgba(212,175,55,0.65); transform: translateY(-3px); color: var(--bg-deep);
}
.btn--outline { background: transparent; color: var(--gold); border: 1px solid rgba(212,175,55,0.4); }
.btn--outline:hover {
  background: var(--gold-dim); border-color: var(--gold); color: var(--gold);
  box-shadow: 0 4px 25px rgba(212,175,55,0.25); transform: translateY(-2px);
}
.btn--ghost { background: rgba(255,255,255,0.06); color: var(--text-muted); border: 1px solid rgba(255,255,255,0.1); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); }

/* ── Section Headers ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-dim); border: 1px solid rgba(212,175,55,0.2);
  border-radius: 100px; padding: 5px 16px; margin-bottom: 18px;
}
.section-title { color: var(--white); margin-bottom: 16px; }
.section-lead { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.8; }

/* ── Glass Cards ─────────────────────────────────────────────── */
.glass-card {
  background: var(--bg-card); border: 1px solid rgba(212,175,55,0.15); border-radius: var(--radius-lg);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: var(--shadow-card);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition); overflow: hidden;
}
.glass-card:hover { border-color: rgba(212,175,55,0.35); box-shadow: var(--shadow-gold), var(--shadow-card); transform: translateY(-4px); }
.glass-card__body { padding: 32px; }
.glass-card__icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.glass-card__title { color: var(--gold); margin-bottom: 12px; font-size: 1.1rem; letter-spacing: 0.03em; }
.glass-card__text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; }

/* ── Countdown ───────────────────────────────────────────────── */
.countdown { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 30px 0; }
.countdown-item {
  text-align: center; min-width: 100px;
  background: rgba(60,20,30,0.5); border: 1px solid rgba(212,175,55,0.2); border-radius: var(--radius-lg);
  padding: 24px 16px; backdrop-filter: blur(8px); position: relative; overflow: hidden; transition: all var(--transition);
}
.countdown-item:hover { border-color: rgba(212,175,55,0.4); box-shadow: 0 0 30px rgba(212,175,55,0.15); transform: translateY(-4px); }
.countdown-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.5;
}
.countdown-item__number {
  display: block; font-family: var(--font-serif); font-size: 3.2rem; color: var(--gold);
  text-shadow: 0 0 25px rgba(212,175,55,0.6); line-height: 1; margin-bottom: 8px; transition: text-shadow 0.3s ease;
}
.countdown-item:hover .countdown-item__number { text-shadow: 0 0 40px rgba(212,175,55,0.8); }
.countdown-item__label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }

.countdown-sep {
  font-family: var(--font-serif); font-size: 2.5rem; color: var(--gold); opacity: 0.4;
  align-self: center; padding-bottom: 20px; animation: countdownBlink 1s ease-in-out infinite;
}
@keyframes countdownBlink { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.1; } }

/* ── Schedule Cards (vertical timeline) ──────────────────────── */
.schedule-grid { display: grid; grid-template-columns: 1fr; gap: 0; position: relative; max-width: 900px; margin: 0 auto; }
.schedule-grid::before {
  content: ''; position: absolute; left: 40px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent); opacity: 0.3;
}
.schedule-card {
  background: rgba(50,16,25,0.6); border: 1px solid rgba(212,175,55,0.2); border-radius: var(--radius-lg);
  overflow: hidden; backdrop-filter: blur(12px); transition: all var(--transition);
  margin-left: 70px; margin-bottom: 32px; position: relative;
}
.schedule-card::before {
  content: ''; position: absolute; left: -42px; top: 30px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 12px rgba(212,175,55,0.6), 0 0 30px rgba(212,175,55,0.3); z-index: 2;
}
.schedule-card::after {
  content: ''; position: absolute; left: -28px; top: 36px; width: 28px; height: 1px; background: rgba(212,175,55,0.3);
}
.schedule-card:hover { border-color: rgba(212,175,55,0.5); box-shadow: 0 0 50px rgba(212,175,55,0.2), var(--shadow-card); transform: translateX(6px); }

.schedule-card--main {
  border-color: rgba(212,175,55,0.45); border-width: 2px;
  box-shadow: 0 0 60px rgba(212,175,55,0.15), 0 0 120px rgba(180,40,60,0.08);
  margin-left: 70px; margin-right: 0;
}
.schedule-card--main::before {
  width: 20px; height: 20px; left: -46px; top: 28px; animation: mainDotPulse 2s ease-in-out infinite;
}
@keyframes mainDotPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(212,175,55,0.6), 0 0 30px rgba(212,175,55,0.3); }
  50%      { box-shadow: 0 0 24px rgba(212,175,55,0.9), 0 0 60px rgba(212,175,55,0.5); }
}
.schedule-card--main .schedule-card__header {
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(212,175,55,0.3), rgba(180,40,60,0.15));
}
.schedule-card--main .schedule-card__date { font-size: 0.85rem; letter-spacing: 0.25em; }
.schedule-card--main .schedule-card__title { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.schedule-card--main .schedule-card__body { padding: 28px 36px; }
.schedule-card--main .schedule-item { padding: 16px 0; gap: 20px; }
.schedule-card--main .schedule-item__time { font-size: 1.05rem; min-width: 80px; }
.schedule-card--main .schedule-item__text { font-size: 1.05rem; line-height: 1.6; }
.schedule-card--main .schedule-item__icon { font-size: 1.5rem; }

.schedule-card__header {
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border-bottom: 1px solid rgba(212,175,55,0.15); padding: 20px 28px;
}
.schedule-card__date { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.schedule-card__title { color: var(--white); font-size: 1.2rem; font-family: var(--font-serif); }
.schedule-card__body { padding: 20px 28px; }

.schedule-item {
  display: flex; align-items: flex-start; gap: 16px; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05); transition: all var(--transition-fast);
}
.schedule-item:last-child { border-bottom: none; }
.schedule-item:hover { background: rgba(212,175,55,0.04); border-radius: var(--radius-sm); padding-left: 8px; margin-left: -8px; }
.schedule-item__time {
  font-size: 0.85rem; color: var(--gold); font-weight: 600; min-width: 70px;
  padding-top: 2px; letter-spacing: 0.05em; font-family: var(--font-serif);
}
.schedule-item__text { color: var(--text-muted); font-size: 0.92rem; line-height: 1.5; }
.schedule-item__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; filter: drop-shadow(0 0 4px rgba(212,175,55,0.3)); }

/* ── Quote / Verse Block ─────────────────────────────────────── */
.quote-block {
  position: relative; padding: 40px 50px; background: rgba(60,20,30,0.4);
  border-left: 3px solid var(--gold); border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: 40px 0;
}
.quote-block::before {
  content: '❝'; position: absolute; top: 20px; left: 18px; font-size: 2rem;
  color: var(--gold); opacity: 0.4; font-family: Georgia, serif;
}
.quote-block__text { font-family: var(--font-serif); font-size: 1.15rem; color: var(--text-main); line-height: 1.8; font-style: italic; margin-bottom: 12px; }
.quote-block__author { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── "Тихое слово" Block ─────────────────────────────────────── */
.silent-word { text-align: center; padding: 80px 24px; position: relative; }
.silent-word::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, rgba(180,40,60,0.04) 40%, transparent 70%);
  pointer-events: none; border-radius: 50%; animation: silentGlow 5s ease-in-out infinite;
}
@keyframes silentGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50%      { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}
.silent-word__icon {
  font-size: 3rem; margin-bottom: 24px; display: inline-block;
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.6)); animation: candleFlicker 3s ease-in-out infinite;
}
@keyframes candleFlicker {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 12px rgba(212,175,55,0.6)); }
  30%      { transform: scale(1.05); filter: drop-shadow(0 0 18px rgba(212,175,55,0.8)); }
  60%      { transform: scale(0.98); filter: drop-shadow(0 0 10px rgba(212,175,55,0.5)); }
}
.silent-word__text {
  font-family: var(--font-serif); font-size: clamp(1.2rem, 3vw, 1.8rem); color: var(--white);
  line-height: 1.8; max-width: 700px; margin: 0 auto 24px; text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.silent-word__verse { font-size: 0.85rem; color: var(--gold); letter-spacing: 0.1em; }

/* ── Pages Grid ──────────────────────────────────────────────── */
.pages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.page-link-card {
  display: block; background: rgba(50,16,25,0.6); border: 1px solid rgba(212,175,55,0.12);
  border-radius: var(--radius-lg); padding: 28px; transition: all var(--transition);
  color: var(--text-main); position: relative; overflow: hidden;
}
.page-link-card::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.06), transparent);
  transition: left 0.6s ease; pointer-events: none;
}
.page-link-card:hover::before { left: 100%; }
.page-link-card:hover {
  border-color: rgba(212,175,55,0.4); background: rgba(60,20,30,0.7);
  box-shadow: 0 0 40px rgba(212,175,55,0.2), var(--shadow-card); transform: translateY(-6px); color: var(--text-main);
}
.page-link-card__num { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px; }
.page-link-card__title { font-family: var(--font-serif); font-size: 1.15rem; color: var(--white); margin-bottom: 8px; }
.page-link-card__desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.page-link-card__arrow { margin-top: 16px; color: var(--gold); font-size: 1.2rem; transition: transform var(--transition); }
.page-link-card:hover .page-link-card__arrow { transform: translateX(8px); }

/* ── Breadcrumb ──────────────────────────────────────────────── */
.breadcrumb {
  padding: 100px 24px 0; max-width: 1100px; margin: 0 auto; font-size: 0.82rem;
  color: var(--text-dim); display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: var(--text-dim); }
.breadcrumb__current { color: var(--text-muted); }

/* ── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero { padding: 80px 24px 60px; text-align: center; position: relative; }
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px; background: linear-gradient(to right, transparent, rgba(212,175,55,0.3), transparent);
}
.page-hero__tag { display: inline-block; font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.page-hero__title { color: var(--white); margin-bottom: 16px; }
.page-hero__lead { font-size: 1.1rem; color: var(--text-muted); max-width: 620px; margin: 0 auto; line-height: 1.8; }

/* ── Prose ───────────────────────────────────────────────────── */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-family: var(--font-serif); color: var(--white); margin: 50px 0 16px; font-size: 1.7rem; }
.prose h3 { font-family: var(--font-serif); color: var(--gold-light); margin: 36px 0 12px; font-size: 1.2rem; }
.prose p { color: var(--text-muted); line-height: 1.9; margin-bottom: 1.2em; font-size: 1.02rem; }
.prose .highlight { color: var(--text-main); font-size: 1.1rem; }

/* ── Timeline (Path of Christ) ───────────────────────────────── */
.timeline { position: relative; padding-left: 0; }
.timeline::before {
  content: ''; position: absolute; left: 28px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent); opacity: 0.4;
}
.timeline-item { display: flex; gap: 24px; margin-bottom: 36px; position: relative; }
.timeline-dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.4);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; position: relative; z-index: 1;
}
.timeline-body {
  background: rgba(50,16,25,0.6); border: 1px solid rgba(212,175,55,0.1); border-radius: var(--radius-md);
  padding: 20px 24px; flex: 1; transition: border-color var(--transition);
}
.timeline-body:hover { border-color: rgba(212,175,55,0.3); }
.timeline-day { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.timeline-title { color: var(--white); font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: 8px; }
.timeline-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ── CTA Final ─────────────────────────────────────────────── */
.cta-final { position: relative; text-align: center; padding: 100px 24px; overflow: hidden; }
.cta-final::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(180,40,60,0.05) 40%, transparent 70%);
  pointer-events: none; border-radius: 50%;
}
.cta-final__icon { font-size: 3.5rem; margin-bottom: 24px; display: inline-block; animation: candleFlicker 3s ease-in-out infinite; }

/* ── Church Section ──────────────────────────────────────────── */
.church-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.church-card {
  min-height: 300px; display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.church-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.06) 0%, transparent 70%); pointer-events: none;
}

/* ── Footer ─────────────────────────────────────────────────── */
#site-footer { background: linear-gradient(180deg, var(--bg-deep) 0%, #100508 100%); border-top: 1px solid rgba(212,175,55,0.12); padding: 60px 24px 30px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand__cross { font-size: 1.4rem; color: var(--gold); text-shadow: 0 0 10px var(--gold-glow); }
.footer-brand__name { font-family: var(--font-serif); color: var(--white); font-size: 1.05rem; }
.footer-desc { color: var(--text-dim); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-hram-link {
  display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: 0.85rem;
  padding: 9px 18px; border: 1px solid rgba(212,175,55,0.3); border-radius: 100px; transition: all var(--transition);
}
.footer-hram-link:hover { background: var(--gold-dim); color: var(--gold); box-shadow: 0 0 20px rgba(212,175,55,0.2); }
.footer-col-title { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.88rem; transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom__copy { font-size: 0.78rem; color: var(--text-dim); }
.footer-bottom__langs { display: flex; gap: 0; flex-wrap: wrap; align-items: center; }
.footer-bottom__langs a {
  color: var(--text-dim); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; transition: color 0.3s ease, text-shadow 0.3s ease;
  padding: 4px 10px; position: relative;
}
.footer-bottom__langs a:not(:last-child)::after {
  content: '·'; position: absolute; right: -3px; color: rgba(212,175,55,0.3); font-weight: bold;
}
.footer-bottom__langs a:hover { color: var(--gold); text-shadow: 0 0 10px rgba(212,175,55,0.35); }
.footer-bottom__langs a.active { color: var(--gold); text-shadow: 0 0 6px rgba(212,175,55,0.3); }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.parallax-layer { will-change: transform; }

/* ── Scroll to Top ───────────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.3); color: var(--gold);
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all var(--transition); opacity: 0; pointer-events: none; z-index: 900;
  backdrop-filter: blur(8px); transform: translateY(20px);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: rgba(212,175,55,0.25); box-shadow: 0 0 25px rgba(212,175,55,0.4); transform: translateY(-3px); }

/* ── Announcement Banner ─────────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, var(--violet), rgba(212,175,55,0.12), var(--violet));
  border-bottom: 1px solid rgba(212,175,55,0.2); text-align: center; padding: 10px 24px;
  font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.03em;
}
.announcement-bar strong { color: var(--gold); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .church-grid { grid-template-columns: 1fr; gap: 30px; }
  .schedule-grid::before { left: 20px; }
  .schedule-card { margin-left: 45px; }
  .schedule-card::before { left: -32px; width: 10px; height: 10px; top: 28px; }
  .schedule-card::after { left: -22px; width: 22px; top: 32px; }
  .schedule-card--main::before { left: -34px; width: 14px; height: 14px; top: 26px; }
}
@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .glass-card__body { padding: 22px; }
  .quote-block { padding: 28px 28px 28px 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .timeline::before { left: 22px; }
  .timeline-dot { width: 44px; height: 44px; font-size: 1.1rem; }
  .countdown-item { min-width: 70px; padding: 18px 10px; }
  .countdown-item__number { font-size: 2.4rem; }
  .countdown-sep { font-size: 1.8rem; }
  .schedule-grid::before { display: none; }
  .schedule-card { margin-left: 0; }
  .schedule-card::before, .schedule-card::after { display: none; }
}
@media (max-width: 380px) {
  .hero-title { font-size: 2.8rem; }
  .countdown { gap: 8px; }
  .countdown-item__number { font-size: 2rem; }
}

/* ── Popup ────────────────────────────────────────────────────── */
.popup-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(10, 4, 6, 0.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center; padding: 16px;
  opacity: 0; visibility: hidden; transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow-y: auto;
}
.popup-overlay.popup-visible { opacity: 1; visibility: visible; }
.popup-overlay.popup-visible .popup-card {
  transform: scale(1) translateY(0); opacity: 1;
}
.popup-card {
  position: relative; max-width: 520px; width: 100%;
  background: linear-gradient(160deg, #2a1018 0%, #1a0a0e 60%, #20100a 100%);
  border: 2px solid rgba(212,175,55,0.35); border-radius: var(--radius-xl);
  padding: 44px 36px 36px; text-align: center; overflow: hidden;
  box-shadow:
    0 0 100px rgba(212,175,55,0.2),
    0 0 200px rgba(180,40,60,0.08),
    0 30px 80px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(212,175,55,0.15);
  transform: scale(0.85) translateY(30px); opacity: 0;
  transition: transform 0.6s cubic-bezier(0.34,1.56,0.64,1), opacity 0.5s ease;
}
.popup-card--full { max-width: 780px; text-align: left; }
.popup-card--full .popup-title,
.popup-card--full .popup-btn { text-align: center; }
/* Декоративная верхняя полоса */
.popup-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}
/* Фоновый крест-водяной знак */
.popup-card::after {
  content: '☩'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); font-size: 18rem; color: rgba(212,175,55,0.025);
  pointer-events: none; z-index: 0;
}
.popup-card > * { position: relative; z-index: 1; }
.popup-close {
  position: absolute; top: 14px; right: 18px; background: none; border: none;
  color: var(--text-dim); font-size: 2rem; cursor: pointer; line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease; z-index: 2;
}
.popup-close:hover { color: var(--gold); transform: rotate(90deg); }

/* Header icon (cross) */
.popup-header-icon {
  text-align: center; font-size: 2.5rem; color: var(--gold); margin-bottom: 12px;
  text-shadow: 0 0 30px rgba(212,175,55,0.4);
  animation: popupIconFloat 3s ease-in-out infinite;
}
@keyframes popupIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.popup-title {
  font-family: var(--font-serif); color: var(--gold); font-weight: normal;
  font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 16px; line-height: 1.3;
  text-shadow: 0 0 30px rgba(212,175,55,0.3);
}

/* Intro text */
.popup-intro {
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 8px;
}

/* Schedule block inside popup */
.popup-schedule {
  margin: 20px 0; display: flex; flex-direction: column; gap: 12px;
}
.popup-schedule__item {
  background: rgba(50,16,25,0.5); border: 1px solid rgba(212,175,55,0.12);
  border-radius: var(--radius-md); padding: 16px 20px;
  transition: border-color 0.3s ease;
}
.popup-schedule__item:hover { border-color: rgba(212,175,55,0.3); }
.popup-schedule__item--main {
  border-color: rgba(212,175,55,0.3);
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(50,16,25,0.6));
  box-shadow: 0 0 30px rgba(212,175,55,0.06);
}
.popup-schedule__date {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px; opacity: 0.8;
}
.popup-schedule__title {
  font-family: var(--font-serif); color: var(--white); font-size: 1.05rem; margin-bottom: 4px;
}
.popup-schedule__detail {
  color: var(--text-muted); font-size: 0.82rem; line-height: 1.6;
}

/* Quote in popup */
.popup-quote {
  margin: 20px 0; padding: 16px 20px;
  border-left: 2px solid var(--gold); background: rgba(212,175,55,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-serif); font-style: italic;
  color: var(--text-main); font-size: 0.88rem; line-height: 1.7;
}
.popup-quote cite {
  display: block; font-style: normal; color: var(--gold);
  font-size: 0.75rem; margin-top: 8px; letter-spacing: 0.1em;
}

/* Closing text */
.popup-closing {
  color: var(--text-muted); font-size: 0.88rem; line-height: 1.8;
  margin-bottom: 24px; text-align: center;
}

.popup-btn {
  display: block; margin: 0 auto;
  width: 100%; max-width: 300px; position: relative; overflow: hidden;
}
.popup-btn::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: popupBtnShine 3s ease-in-out infinite;
}
@keyframes popupBtnShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* Legacy small popup elements (kept for non-RU pages) */
.popup-icon {
  font-size: 3.5rem; margin-bottom: 20px; letter-spacing: 12px; text-align: center;
  animation: popupIconFloat 3s ease-in-out infinite;
}
.popup-subtitle {
  color: var(--text-muted); margin-bottom: 24px; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 0.8rem; text-align: center;
}
.popup-time {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-bottom: 20px; padding: 16px 0;
  border-top: 1px solid rgba(212,175,55,0.12);
  border-bottom: 1px solid rgba(212,175,55,0.12);
}
.popup-time__from, .popup-time__to {
  font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 2.8rem); color: var(--white);
  text-shadow: 0 0 30px rgba(212,175,55,0.5); letter-spacing: 0.05em;
}
.popup-time__dash {
  color: var(--gold); font-size: 1.8rem; opacity: 0.6;
  animation: popupDashPulse 2s ease-in-out infinite;
}
@keyframes popupDashPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}
.popup-place {
  color: var(--text-main); font-size: 0.95rem; margin-bottom: 6px; text-align: center;
  font-family: var(--font-serif);
}
.popup-note {
  color: var(--text-muted); font-size: 0.83rem; line-height: 1.7; margin-bottom: 24px; text-align: center;
}

@media (max-width: 600px) {
  .popup-card { padding: 36px 24px 28px; }
  .popup-card--full { max-width: 100%; }
  .popup-schedule__item { padding: 12px 16px; }
}

/* ── Reduce Motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
}

/* ── Print Styles ─────────────────────────────────────────────── */
@media print {
  body { background: #fff; color: #000; }
  .hero, .popup-overlay, .announcement-bar, .particles-canvas, #hero-particles,
  .scroll-top, .hero-cross-rays, .hero-cross-halo, .hero-scroll, .cta-final { display: none; }
  .section { page-break-inside: avoid; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
}

/* ── Nav active dot ──────────────────────────────────────────── */
.nav-links a.active::after {
  content: ''; display: block; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); margin: 2px auto 0;
}

/* ── Hero scroll indicator ───────────────────────────────────── */
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--text-dim); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0; animation: fadeInFloat 1s 2s forwards, float 2.5s 3s ease-in-out infinite; z-index: 10;
}
.hero-scroll__arrow {
  width: 20px; height: 20px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold);
  transform: rotate(45deg); opacity: 0.5;
}
@keyframes fadeInFloat { to { opacity: 1; } }
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-6px); }
}