/* ==========================================================================
   1. COLOR PALETTE & DESIGN VARIABLES
   ========================================================================== */
:root {
  --bg-dark: #0d0b12;         /* Deep cosmic charcoal/obsidian */
  --bg-card: #16131f;         /* Slightly lighter container tint */
  --text-heading: #f0e6d2;    /* Soft starlight pale gold */
  --text-body: #f4f1ea;       /* Soft alabaster white */
  --text-muted: #a39e9b;      /* Muted warm slate gray */
  --accent-gold: #c5a059;     /* Metallic gold CTA */
  --accent-hover: #e2bf7d;    /* Bright gold hover state */
  --border-glass: rgba(240, 230, 210, 0.12);

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ==========================================================================
   2. SPACE BACKGROUND & ATMOSPHERE
   ========================================================================== */
.stars-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
  background-image: 
    radial-gradient(1.5px 1.5px at 20px 30px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 50px 80px, rgba(255,255,255,0.7), rgba(0,0,0,0)),
    radial-gradient(2px 2px at 120px 40px, rgba(226, 194, 135, 0.8), rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 200px 180px, #ffffff, rgba(0,0,0,0));
  background-size: 320px 320px;
  opacity: 0.6;
}

.nebula-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: -1;
}

.glow-top {
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(147, 86, 220, 0.18) 0%, transparent 70%);
}

.glow-bottom {
  bottom: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
}

/* ==========================================================================
   3. FADED IMAGE EDGES (RADIAL & LINEAR MASKS)
   ========================================================================== */
.faded-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  /* Smooth edge fade into background */
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 98%);
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 98%);
}

/* ==========================================================================
   4. NAVIGATION & HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 11, 18, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  padding: 1.2rem 2rem;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  color: var(--text-heading);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.logo-symbol {
  color: var(--accent-gold);
  margin-right: 0.3rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--text-heading);
}

/* ==========================================================================
   5. BUTTONS & TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 600;
}

.btn-primary {
  display: inline-block;
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--border-glass);
  color: var(--text-heading);
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

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

/* Hero */
.hero-section {
  padding: 12rem 2rem 6rem;
  text-align: center;
}

.hero-container {
  max-width: 850px;
  margin: 0 auto;
}

.hero-eyebrow {
  color: var(--accent-gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.body-text {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 1.2rem;
}

/* Offerings Cards */
.section-header-center {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.offering-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.offering-img-wrapper {
  margin-bottom: 1.5rem;
}

.offering-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.offering-title {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.offering-meta {
  color: var(--accent-gold);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  display: block;
}

.offering-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.card-btn {
  margin-top: auto;
  text-align: center;
}

/* Sliding Scale Section */
.sliding-scale-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 3rem;
  border-radius: 12px;
}

.scale-tiers {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tier-card {
  border-left: 2px solid var(--accent-gold);
  padding-left: 1rem;
}

.tier-title {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.tier-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  padding: 1.2rem;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-heading);
  cursor: pointer;
}

.faq-answer {
  margin-top: 0.8rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Final CTA Card */
.cta-card {
  text-align: center;
  background: radial-gradient(circle at center, rgba(197, 160, 89, 0.1) 0%, var(--bg-card) 70%);
  border: 1px solid var(--border-glass);
  padding: 4rem 2rem;
  border-radius: 12px;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.btn-large {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

.site-footer {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border-glass);
}

/* Responsive adjustments */
@media (max-width: 850px) {
  .about-grid, .sliding-scale-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .nav-menu {
    display: none;
  }
}