*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #2d2d2d; background: #f8f6f3; line-height: 1.8; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.25; }
.top-bar { background: #0f0620; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.top-bar a:hover { color: #c9a84c; }
.page-header {
  background: #0f0620; padding: 4rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.page-header h1 { color: #fff; font-size: clamp(2rem,4vw,3rem); position: relative; }
.page-header h1 em { font-style: italic; background: linear-gradient(135deg, #c9a84c, #e8d18a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-header p { color: rgba(255,255,255,0.6); margin-top: 0.5rem; position: relative; font-size: 0.95rem; }

.container { max-width: 1000px; margin: 0 auto; padding: 3rem 2rem; }

/* Intro grid */
.intro-grid { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 2rem; align-items: center; margin-bottom: 3rem; }
.intro-img-left img, .intro-img-right img { width: 100%; border-radius: 18px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); display: block; }
.intro-text h2 { color: #0f0620; font-size: 1.5rem; margin-bottom: 0.8rem; }
.intro-text p { color: #555; font-size: 0.95rem; margin-bottom: 0.8rem; }
.stats { display: flex; gap: 2rem; margin-top: 1.2rem; }
.stat .num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: #c9a84c; }
.stat .lbl { font-size: 0.8rem; color: #888; }

/* Cards grid */
.cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.card-link { text-decoration: none; display: block; }
.card {
  background: #fff; border-radius: 14px; padding: 1.8rem; border: 1px solid #eee;
  transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.06); border-color: rgba(201,168,76,0.2); }
.card .icon { font-size: 1.5rem; color: #c9a84c; }
.card h3 { color: #0f0620; font-size: 1.1rem; margin: 0.5rem 0 0.3rem; }
.card p { color: #666; font-size: 0.9rem; }

/* Single pages */
.single-page { text-align: center; max-width: 750px; }
.single-page .big-icon { font-size: 2.5rem; color: #c9a84c; display: block; margin-bottom: 1rem; }
.single-page p { color: #555; font-size: 1rem; margin-bottom: 1.2rem; }

/* Beliefs list */
.beliefs-list { list-style: none; }
.beliefs-list li {
  background: #fff; padding: 1.2rem 1.5rem; border-radius: 10px; margin-bottom: 0.8rem;
  border: 1px solid #eee; color: #555; font-size: 0.95rem; line-height: 1.7;
}
.beliefs-list li strong { color: #0f0620; }

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .intro-img-left, .intro-img-right { max-width: 100%; }
}
@media (max-width: 700px) {
  .cards-grid, .stats { grid-template-columns: 1fr; }
  .stats { flex-direction: column; gap: 0.5rem; }
}

footer { background: #080310; padding: 2rem; text-align: center; color: rgba(255,255,255,0.4); font-size: 0.85rem; }
