:root {
  --forest: #0b1c15;
  --gold: #d4af37;
  --gold-glow: #ffd60a;
  --text: #f0e68c;
  --card: #1a3d2e;
  --border: #2d5016;
}

* { margin:0; padding:0; box-sizing:border-box; }
body {
  background: var(--forest);
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.8;
  overflow-x: hidden;
}

/* === SACRED CONTENT FRAME === */
.sacred-frame {
  max-width: 800px;
  margin: 12vh auto 8vh;
  padding: 60px 50px 70px;
  background: rgba(10, 28, 21, 0.88);
  border: 3px double var(--gold);
  border-radius: 16px;
  box-shadow: 
    0 0 30px rgba(212,175,55,0.25),
    inset 0 0 40px rgba(0,0,0,0.4);
  position: relative;
  z-index: 1;
}

/* === TYPOGRAPHY === */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  letter-spacing: 10px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 12px;
  text-shadow: 0 3px 8px rgba(0,0,0,0.6);
}
.logo::after {
  content: '';
  display: block;
  width: 120px;
  height: 2px;
  background: var(--gold);
  margin: 15px auto 0;
  box-shadow: 0 0 10px var(--gold-glow);
}

.tagline {
  text-align: center;
  font-size: 1.35rem;
  color: #e8c57a;
  margin: 20px auto 40px;
  max-width: 700px;
  font-style: italic;
}

nav {
  text-align: center;
  margin: 40px 0 60px;
  padding: 15px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.nav-links a {
  color: #ccc;
  margin: 0 22px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
  transition: 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--gold);
  text-align: center;
  margin: 80px 0 50px;
  position: relative;
}


.division {
  background: rgba(26, 61, 46, 0.6);
  padding: 40px;
  border-radius: 12px;
  margin: 50px 0;
  border: 1px solid var(--border);
  position: relative;
  transition: 0.4s;
}
.division:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(212,175,55,0.15);
  border-color: var(--gold);
}
.division h3 {
  font-family: 'Playfair Display';
  font-size: 1.9rem;
  color: var(--gold-glow);
  margin-bottom: 18px;
  text-align: center;
}
.division p {
  margin-bottom: 18px;
  color: #ddd;
  font-size: 1.05rem;
}

.btn-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  margin: 20px auto 0;
  display: block;
  width: fit-content;
  transition: 0.3s;
}
.btn-gold:hover {
  background: var(--gold);
  color: #0f0f0f;
  box-shadow: 0 0 15px rgba(212,175,55,0.4);
}

.footer {
  text-align: center;
  padding: 60px 30px 40px;
  color: #777;
  font-size: 0.9rem;
  border-top: 1px dashed var(--border);
  margin-top: 100px;
}
.footer a { color: var(--gold); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .sacred-frame { margin: 8vh 20px; padding: 40px 30px; }
  .logo { font-size: 3rem; letter-spacing: 6px; }
  .nav-links a { margin: 0 12px; font-size: 0.95rem; }
  .section-title { font-size: 2rem; }
  .section-title::before, .section-title::after { display: none; }
}