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

:root {
  --red: #bdbdbd;
  --red-bright: #f2f2f2;
  --red-deep: #8a8a8a;
  --white: #f5f5f5;
  --white-soft: #e7e7e7;
  --black: #0d1715;
  --deep: #0b0b0d;
  --charcoal: #17171a;
  --gold: #d6b96f;
  --gold-light: rgba(214,185,111,0.92);
  --gold-dark: rgba(141,108,46,0.92);
  --fog: rgba(255, 255, 255, 0.06);
  --glow: 0 0 18px rgba(214,185,111,0.22), 0 0 48px rgba(214,185,111,0.14);
  --glow-strong: 0 0 22px rgba(214,185,111,0.28), 0 0 60px rgba(214,185,111,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white-soft);
  font-family: 'Raleway', sans-serif;
  overflow-x: hidden;
  cursor: crosshair;
}

.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 1000;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 8px 24px rgba(0,0,0,.38);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(37,211,102,.35);
}

.whatsapp-float img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 600px) {
  .whatsapp-float {
    left: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6, .section-label, .section-title, .section-subtitle, .card-heading, .form-heading, .footer-heading {
  margin: 0;
  color: var(--white);
}

h1, h2 {
  color: var(--gold) !important;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  max-width: 14ch;
}

.section-subtitle,
.hero-tagline,
.quote-text,
.card-description,
.footer-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.8;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.35rem;
}

.hero-title,
.hero-panel h1,
.hero-title,
.about-hero h1,
.help-hero h1,
#shopGrid ~ .hero-title,
.page-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  color: var(--white);
}

h3,
.gallery-card-title,
.symbol-name,
.value-title,
.leader-title,
.t-event,
.admin-card h2,
.login-panel h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1rem, 2vw, 1.6rem);
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.form-heading {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-heading {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem;
  letter-spacing: 0.22em;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #070707; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.35); border-radius: 2px; }

/* ── PARTICLE CANVAS ── */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  display: none;
}

/* ── FOG LAYERS ── */
.fog-layer {
  position: fixed;
  top: 0; left: 0;
  width: 200%; height: 100%;
  z-index: 1;
  pointer-events: none;
  display: none;
  background: radial-gradient(ellipse 60% 40% at 30% 60%, rgba(255,255,255,0.03) 0%, transparent 70%),
              radial-gradient(ellipse 50% 30% at 70% 40%, rgba(255,255,255,0.02) 0%, transparent 70%);
  animation: none;
  opacity: 0.15;
}
.fog-layer2 {
  position: fixed;
  top: 0; left: -50%;
  width: 200%; height: 100%;
  z-index: 1;
  pointer-events: none;
  display: none;
  background: radial-gradient(ellipse 40% 50% at 80% 80%, rgba(255,255,255,0.02) 0%, transparent 70%);
  animation: none;
  opacity: 0.08;
}
@keyframes fogDrift  { from { transform: translateX(0); } to { transform: translateX(-10%); } }
@keyframes fogDrift2 { from { transform: translateX(0) translateY(0); } to { transform: translateX(5%) translateY(-3%); } }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 60px;
  background: rgba(5,5,5,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.nav-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 4px;
  text-shadow: 0 0 8px rgba(255,255,255,0.16);
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 2.4px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  transform: translateY(-1px);
}
.nav-links a.active {
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%);
  border-radius: 999px;
}
.language-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.9);
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.language-toggle:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}
.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 220px;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(5,5,5,0.96);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  z-index: 150;
}
.language-menu.open {
  display: flex;
}
.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.9);
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.language-option:hover,
.language-option.active {
  background: rgba(255,255,255,0.08);
}
.language-option-flag {
  font-size: 1rem;
}
.language-option-name {
  flex: 1;
}
.language-option[aria-selected='true'] {
  color: #f4f1d7;
}
.nav-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.nav-hamburger:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
}
.nav-hamburger .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger .bar + .bar {
  margin-top: 5px;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(18px);
  padding: 40px;
}
.menu-overlay.open {
  display: flex;
}
.menu-overlay-links {
  display: grid;
  gap: 22px;
  text-align: center;
}
.menu-overlay-links a {
  color: rgba(255,255,255,0.92);
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s ease;
}
.menu-overlay-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.menu-overlay-sigil {
  margin-top: 40px;
  color: rgba(255,255,255,0.45);
  font-family: 'Cinzel', serif;
  letter-spacing: 6px;
  font-size: 0.72rem;
}
@media (max-width: 980px) {
  nav {
    padding: 14px 28px;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}

/* ── LANDING PAGE ── */
body {
  background: radial-gradient(circle at 10% 10%, rgba(255,255,255,.04), transparent 22%),
              radial-gradient(circle at 85% 14%, rgba(255,255,255,.03), transparent 18%),
              radial-gradient(circle at 50% 85%, rgba(255,255,255,.02), transparent 32%),
              #0d1715;
}
.landing-shell {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 32px 80px;
  display: grid;
  gap: 52px;
}
.hero-panel {
  padding: 48px 42px 52px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(17,17,17,0.9), rgba(27,12,12,0.84));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 120px rgba(0,0,0,.25);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: rgba(255,255,255,.02);
}
.hero-panel h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 1.02;
  margin: 0 0 22px;
  color: #ffffff;
  max-width: 11ch;
}
.hero-panel p {
  color: rgba(255,255,255,.72);
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  max-width: 780px;
  margin-bottom: 32px;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 16px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform .25s, background .25s, color .25s;
}
.hero-actions a.primary {
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.65));
  color: #050505;
}
.hero-actions a.secondary {
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.02);
}
.hero-actions a:hover { transform: translateY(-2px); }
.section-heading {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 720px;
}
.section-heading h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.1rem, 3vw, 3rem);
  color: var(--white);
  margin: 8px 0 16px;
}
.section-heading p {
  color: rgba(255,255,255,.68);
  font-family: 'Raleway', sans-serif;
  line-height: 1.9;
}
.feature-grid,
.testimony-grid,
.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card,
.testimonial-card,
.member-card {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(18,18,20,.92);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 28px 60px rgba(0,0,0,.22);
}
.feature-card {
  padding: 30px;
}
.feature-card h3 {
  margin: 0 0 12px;
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: #ffffff;
}
.feature-card p {
  color: rgba(255,255,255,.72);
  font-family: 'Raleway', sans-serif;
  line-height: 1.85;
  margin: 0;
}
.testimonial-card img,
.member-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: saturate(.9) contrast(1.08) brightness(.9);
}
.testimonial-copy,
.member-copy {
  padding: 26px 28px 30px;
}
.testimonial-copy p,
.member-card p {
  color: #f3f3f3;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  margin: 0 0 20px;
}
.testimonial-copy span,
.member-copy span {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.84rem;
  letter-spacing: 0.13em;
  color: var(--red-bright);
  text-transform: uppercase;
}
.member-card h3 {
  margin: 0 0 10px;
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.35rem;
  color: #ffffff;
}
.landing-note {
  color: rgba(255,255,255,0.55);
  font-family: 'Raleway', sans-serif;
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .landing-shell { padding: 90px 22px 70px; }
  .hero-panel { padding: 38px 30px 40px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { justify-content: center; }
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('pyramid_eye_hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: sepia(1) saturate(0.5);
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255,255,255,0.06) 0%, transparent 70%),
              linear-gradient(180deg, transparent 60%, #000 100%);
  z-index: 1;
}

/* ── ALL-SEEING EYE SVG ── */
.eye-container {
  position: relative;
  z-index: 3;
  margin-bottom: 30px;
}
.eye-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: none;
}
.ring1 { width: 180px; height: 180px; }
.ring2 { width: 240px; height: 240px; border-color: rgba(255,255,255,0.12); }
.ring3 { width: 310px; height: 310px; border-color: rgba(255,255,255,0.08); }
#eyeSvg {
  width: 140px; height: 140px;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.12));
  position: relative; z-index: 4;
  animation: none;
}
.eye-pupil { animation: none; transform-origin: center; }

/* ── HERO TEXT ── */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
}
.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 8px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(214,185,111,0.18);
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}
.hero-tagline {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.68);
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-cta {
  display: inline-block;
  padding: 14px 48px;
  border: 1px solid rgba(255,255,255,0.18);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s, background 0.4s;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}
.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}
.hero-cta:hover { color: #fff; }
.hero-cta:hover::before { transform: scaleX(1); }
.hero-cta-shop {
  margin-left: 16px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
}
.hero-cta-shop:hover { color: #fff; }

/* ── SHOP HERO + PRODUCT GRID ── */
.hero-section.shop-hero {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero-section.shop-hero .hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-section.shop-hero .hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(1.1) contrast(1.08);
}
.hero-section.shop-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 44px 34px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.82);
  font-family: 'Cinzel', serif;
  font-size: 0.74rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: rgba(255,255,255,0.14);
  color: #fff;
  box-shadow: var(--glow);
  transform: translateY(-1px);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.product-card {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(10, 8, 2, 0.9);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.24);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.38);
}
.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.card-body {
  padding: 24px 22px 28px;
}
.card-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 10px;
}
.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.86);
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.card-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 18px;
}
.product-price {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.84);
  letter-spacing: 1px;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  padding: 24px;
}
.modal-overlay.open {
  display: flex;
}
.modal {
  width: min(760px, 100%);
  background: rgba(6, 4, 2, 0.96);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  padding: 30px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  background: transparent;
  color: rgba(255,255,255,0.88);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.modal-close:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,0.12);
}
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 14px;
  margin: 18px 0 14px;
}
.pay-method {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 18px 14px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.82);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.pay-method:hover,
.pay-method.selected {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.pay-detail {
  margin-top: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
}
.btc-address {
  margin: 12px 0 14px;
  padding: 16px;
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 16px;
  font-family: 'Courier New', monospace;
  color: rgba(255,255,255,0.96);
  word-break: break-word;
}
.checkout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 260px;
  padding: 14px 18px;
  margin-top: 10px;
  background: rgba(255,255,255,0.15);
  color: #050505;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.checkout-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--glow-strong);
}

/* ── NEON DIVIDER ── */
.neon-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.14) 20%, rgba(255,255,255,0.28) 50%, rgba(255,255,255,0.14) 80%, transparent 100%);
  box-shadow: 0 0 16px rgba(255,255,255,0.12), 0 0 40px rgba(255,255,255,0.08);
  position: relative;
  z-index: 2;
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.8s forwards;
}
.scroll-indicator span {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.55);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.1); }
}

/* ── SECTIONS GENERAL ── */
section {
  position: relative;
  z-index: 2;
  padding: 120px 60px;
  max-width: 1300px;
  margin: 0 auto;
}
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  color: rgba(255,255,255,0.95);
  text-shadow: 0 0 16px rgba(255,255,255,0.14);
  margin-bottom: 24px;
  line-height: 1.2;
}
.section-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 1.2px;
  margin: 0 auto 24px;
  max-width: 680px;
}
.section-body {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
}

/* ── PYRAMID SECTION ── */
#pyramid-section { text-align: center; padding: 80px 20px; }
.pyramid-wrap {
  position: relative;
  display: inline-block;
  width: min(420px, 100%);
  margin: 60px auto 20px;
  background: rgba(14, 12, 5, 0.72);
  border: 1px solid rgba(214,185,111,0.16);
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 28px 90px rgba(214,185,111,0.18);
}
.pyramid-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: inset 0 0 40px rgba(214,185,111,0.08), 0 0 40px rgba(214,185,111,0.18);
}
.pyramid-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 20px;
}

/* ── IMAGE GALLERY ── */
#gallery {
  padding: 80px 60px;
  max-width: 1300px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 60px;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(10,8,2,0.8);
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
  cursor: pointer;
}
.gallery-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 20px 60px rgba(255,255,255,0.08), 0 0 30px rgba(255,255,255,0.04);
}
.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: sepia(0.3) saturate(0.8);
  transition: filter 0.4s, transform 0.6s;
}
.gallery-card:hover img {
  filter: sepia(0.1) saturate(1.1);
  transform: scale(1.06);
}
.gallery-card-body {
  padding: 24px 28px 28px;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.95) 100%);
}
.gallery-card-title {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.gallery-card-text {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
}
.card-number {
  position: absolute;
  top: 16px; right: 20px;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.16);
}

/* ── SYMBOLS ROW ── */
#symbols {
  padding: 80px 60px;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}
.symbols-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}
.symbol-card {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 36px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.symbol-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.symbol-card:hover { border-color: rgba(255,255,255,0.28); transform: translateY(-6px); }
.symbol-card:hover::before { opacity: 1; }
.symbol-icon {
  font-size: 2.8rem;
  color: var(--gold);
  filter: drop-shadow(0 0 18px rgba(214,185,111,0.42));
  animation: symbolFloat 4s ease-in-out infinite;
}
.symbol-card:nth-child(2) .symbol-icon { animation-delay: 1s; }
.symbol-card:nth-child(3) .symbol-icon { animation-delay: 2s; }
.symbol-card:nth-child(4) .symbol-icon { animation-delay: 3s; }
@keyframes symbolFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.symbol-name {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.symbol-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.64);
  text-align: center;
}

/* ── TENETS / PILLARS ── */
#tenets {
  padding: 80px 60px;
  max-width: 1300px;
  margin: 0 auto;
}
.tenets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 60px;
  border: 1px solid rgba(255,255,255,0.12);
}
.tenet-item {
  padding: 48px 36px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  position: relative;
  transition: background 0.4s;
}
.tenet-item:hover { background: rgba(255,255,255,0.04); }
.tenet-num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 3rem;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: 16px; right: 24px;
  line-height: 1;
}
.tenet-title {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tenet-text {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
}
.tenet-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin-bottom: 18px;
  transition: width 0.4s;
}
.tenet-item:hover .tenet-line { width: 70px; }

/* ── GEOMETRY SECTION ── */
#geometry {
  padding: 80px 60px;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.geometry-img-wrap {
  position: relative;
}
.geometry-img-wrap img {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  filter: none;
  transition: filter 0.4s;
}
.geometry-img-wrap:hover img { filter: none; }
.geometry-img-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(255,255,255,0.08);
  z-index: -1;
}
.geometry-img-wrap::after {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(255,255,255,0.04);
  z-index: -1;
}

/* ── CHAMBER SECTION ── */
#chamber {
  padding: 80px 60px;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.chamber-img {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  filter: none;
  transition: all 0.5s;
  box-shadow: 0 0 60px rgba(255,255,255,0.08);
}
.chamber-img:hover {
  filter: none;
  box-shadow: 0 0 80px rgba(255,255,255,0.12);
}

/* ── QUOTE BLOCK ── */
.quote-section {
  position: relative;
  z-index: 2;
  padding: 100px 60px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.04) 50%, transparent);
}

/* ── PAGE DIRECTORY ── */
#page-directory {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px;
}
#page-directory > .reveal:first-child { text-align: center; }
#page-directory .section-title { margin-left: auto; margin-right: auto; }
#page-directory .section-body { max-width: 620px; margin: 0 auto; text-align: center; }
.page-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.page-directory-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  color: var(--white);
  text-decoration: none;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.page-directory-card:hover,
.page-directory-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(214,185,111,0.7);
  background: linear-gradient(145deg, rgba(214,185,111,0.12), rgba(255,255,255,0.03));
  outline: none;
}
.page-directory-symbol { color: var(--gold); font-size: 1.7rem; line-height: 1; }
.page-directory-title { font-family: 'Cinzel', serif; font-size: .82rem; letter-spacing: 2px; text-transform: uppercase; }
.page-directory-description { color: rgba(255,255,255,.52); font-size: .78rem; line-height: 1.6; }
.page-directory-card-restricted { border-style: dashed; }
.quote-text {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.9rem);
  color: rgba(255,255,255,0.95);
  text-shadow: 0 0 16px rgba(255,255,255,0.14);
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.6;
  position: relative;
}
.quote-text::before { content: '\201C'; font-size: 5rem; color: rgba(255,255,255,0.25); opacity: 0.3; position: absolute; top: -30px; left: -20px; }
.quote-attr {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.35);
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 2;
  padding: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 6px;
}
.footer-latin {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.2);
}
.footer-eye { font-size: 1.4rem; opacity: 0.3; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── NEON CORNER DECORATIONS ── */
.corner-dec {
  position: absolute;
  width: 40px; height: 40px;
  border-color: var(--gold-dark);
  border-style: solid;
  opacity: 0.4;
}
.corner-tl { top: 20px; left: 20px; border-width: 1px 0 0 1px; }
.corner-tr { top: 20px; right: 20px; border-width: 1px 1px 0 0; }
.corner-bl { bottom: 20px; left: 20px; border-width: 0 0 1px 1px; }
.corner-br { bottom: 20px; right: 20px; border-width: 0 1px 1px 0; }

/* ── CURSOR GLOW ── */
#cursor-glow {
  position: fixed;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: left 0.08s, top 0.08s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding: 80px 24px; }
  #geometry, #chamber { grid-template-columns: 1fr; gap: 40px; }
  #gallery { padding: 60px 24px; }
  #symbols { padding: 60px 24px; }
  #tenets  { padding: 60px 24px; }
  #page-directory { padding: 80px 24px; }
  .page-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-section { padding: 80px 24px; }
  footer   { padding: 40px 24px; }
}

@media (max-width: 520px) {
  .page-directory-grid { grid-template-columns: 1fr; }
}
