/* ============================================
   PULSEHAVEN — Luxury Energy Healing
   Deep Mysterious / Black Gold
   ============================================ */

:root {
  --black:    #0a0a0a;
  --deep:     #0f0a1a;
  --purple:   #1a0533;
  --gold:     #c9a84c;
  --gold-lt:  #e2c97e;
  --white:    #f5f0e8;
  --muted:    #9a9080;
  --border:   rgba(201,168,76,0.2);
  --card-bg:  rgba(255,255,255,0.03);
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.6rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.3rem; margin-bottom: 0.5rem; }
h1 em, h2 em { font-style: italic; color: var(--gold); }
p { color: rgba(245,240,232,0.75); margin-bottom: 1rem; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.center { text-align: center; }

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245,240,232,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.link-arrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: letter-spacing 0.3s;
}
.link-arrow:hover { letter-spacing: 0.2em; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
  transition: background 0.3s;
}
.nav.scrolled { background: rgba(10,10,10,0.97); padding: 1rem 2rem; }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--ff-sans);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--white);
}
.logo span { color: var(--gold); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 0.5rem 1.2rem;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.3rem; cursor: pointer; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(106,0,180,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 30% 70%, rgba(201,168,76,0.1) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #0f0a1a 50%, #0a0a0a 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  padding-top: 6rem;
}
.hero-sub {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 1.5rem auto 2.5rem;
  color: rgba(245,240,232,0.65);
}
.hero-cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:0.3;transform:scaleY(0.5) translateY(-10px)} 50%{opacity:1;transform:scaleY(1) translateY(0)} }

/* ---- LUMINA ---- */
.lumina { background: linear-gradient(135deg, #0f0a1a 0%, #0a0a0a 100%); }
.lumina-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.lumina-text h2 span { display: block; font-size: 0.5em; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; font-family: var(--ff-sans); font-style: normal; margin-top: 0.3rem; }
.lumina-text .btn { margin-top: 1.5rem; }
.disclaimer-small {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.4);
  border-left: 2px solid var(--gold);
  padding-left: 0.75rem;
  margin: 1.5rem 0;
  line-height: 1.5;
}

/* ORB */
.lumina-visual { display: flex; align-items: center; justify-content: center; }
.orb { position: relative; width: 300px; height: 300px; }
.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: orbRotate 12s linear infinite;
}
.r1 { width: 300px; height: 300px; border-color: rgba(201,168,76,0.2); }
.r2 { width: 220px; height: 220px; border-color: rgba(106,0,180,0.35); animation-duration: 8s; animation-direction: reverse; }
.r3 { width: 140px; height: 140px; border-color: rgba(201,168,76,0.3); animation-duration: 5s; }
.orb-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, #c9a84c 0%, rgba(106,0,180,0.8) 50%, transparent 100%);
  box-shadow: 0 0 40px rgba(201,168,76,0.4), 0 0 80px rgba(106,0,180,0.3);
  animation: orbPulse 3s ease-in-out infinite;
}
@keyframes orbRotate { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes orbPulse { 0%,100%{box-shadow:0 0 40px rgba(201,168,76,0.4),0 0 80px rgba(106,0,180,0.3)} 50%{box-shadow:0 0 60px rgba(201,168,76,0.7),0 0 120px rgba(106,0,180,0.5)} }

/* ---- SERVICES ---- */
.services { background: var(--black); }
.services h2 { margin-bottom: 3rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}
.service-card {
  background: var(--black);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.3s;
}
.service-card:hover { background: var(--card-bg); }
.service-card.featured { background: #0f0a1a; }
.service-badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.25rem 0.6rem;
}
.service-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.service-price {
  font-size: 1.2rem;
  color: var(--gold);
  font-family: var(--ff-serif);
  margin: 1.5rem 0 0.75rem;
}

/* ---- PRICING ---- */
.pricing { background: linear-gradient(180deg, #0a0a0a, #0f0a1a); }
.pricing h2 { margin-bottom: 3rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.price-card {
  background: var(--black);
  padding: 3rem 2rem;
  text-align: center;
}
.price-card.gold { background: #0f0a1a; }
.price-card h4 { font-family: var(--ff-sans); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }
.price { font-family: var(--ff-serif); font-size: 3rem; color: var(--gold); line-height: 1; margin-bottom: 0.25rem; }
.price-card > p { font-size: 0.8rem; color: var(--muted); margin-bottom: 2rem; }
.price-card ul { list-style: none; margin: 0 0 2.5rem; text-align: left; }
.price-card ul li {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.65);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-left: 1rem;
  position: relative;
}
.price-card ul li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.5rem; top: 0.7rem; }

/* ---- CRYSTALS ---- */
.crystals { background: var(--black); }
.crystals h2 { margin-bottom: 3rem; }
.crystals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5px; background: var(--border); }
.crystal-card { background: var(--black); overflow: hidden; }
.crystal-img { height: 200px; }
.crystal-card h4, .crystal-card p, .crystal-price, .nft-badge { padding: 0 1.5rem; }
.crystal-card h4 { padding-top: 1.5rem; font-size: 1.1rem; }
.crystal-card p { font-size: 0.82rem; margin: 0.5rem 0; }
.crystal-price { color: var(--gold); font-family: var(--ff-serif); font-size: 1.3rem; margin: 0.5rem 0; display: block; }
.nft-badge {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.5rem 1.5rem 1.5rem;
  opacity: 0.7;
}

/* ---- NFT SECTION ---- */
.nft-section {
  background: linear-gradient(135deg, #0f0a1a 0%, #1a0533 50%, #0a0a0a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.nft-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.nft-text strong { color: var(--gold); font-weight: 400; }
.nft-text .btn { margin-top: 1rem; }
.nft-visual { display: flex; align-items: center; justify-content: center; }

/* Sacred Geometry */
.sacred-geo { position: relative; width: 280px; height: 280px; }
.geo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: geoSpin 20s linear infinite;
}
.gr1 { width: 280px; height: 280px; }
.gr2 { width: 180px; height: 180px; animation-duration: 15s; animation-direction: reverse; border-style: dashed; }
.gr3 { width: 100px; height: 100px; animation-duration: 10s; border-color: rgba(201,168,76,0.5); }
.geo-hex {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(0deg);
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.15);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  border: 1px solid var(--gold);
  animation: geoSpin 6s linear infinite;
  box-shadow: 0 0 30px rgba(201,168,76,0.3);
}
@keyframes geoSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* ---- BLOG ---- */
.blog { background: var(--black); }
.blog h2 { margin-bottom: 3rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--border); }
.blog-card { background: var(--black); overflow: hidden; transition: background 0.3s; }
.blog-card:hover { background: var(--card-bg); }
.blog-img { height: 180px; }
.blog-body { padding: 1.5rem; }
.blog-tag {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.blog-body h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.blog-body p { font-size: 0.82rem; margin-bottom: 1rem; }

/* ---- SUBSCRIBE ---- */
.subscribe {
  background: linear-gradient(180deg, #0a0a0a, #0f0a1a);
  border-top: 1px solid var(--border);
}
.subscribe-inner { text-align: center; }
.sub-text { max-width: 500px; margin: 0 auto 2.5rem; }
.subscribe-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto 1rem; }
.subscribe-form input {
  flex: 1;
  padding: 0.9rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  outline: none;
}
.subscribe-form input::placeholder { color: var(--muted); }
.subscribe-form input:focus { border-color: var(--gold); }
.subscribe-form .btn { border-left: none; }
.sub-fine { font-size: 0.72rem; color: var(--muted); }

/* ---- FOOTER ---- */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}
.footer-brand .logo { display: inline-block; margin-bottom: 1rem; font-size: 1rem; }
.footer-brand p { font-size: 0.82rem; max-width: 280px; }
.footer-links h5 {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.5);
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.5rem; }
.footer-bottom .disclaimer { font-size: 0.7rem; color: rgba(154,144,128,0.5); line-height: 1.5; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .lumina-grid, .nft-inner { grid-template-columns: 1fr; gap: 3rem; }
  .lumina-visual { order: -1; }
  .orb { width: 200px; height: 200px; }
  .r1 { width: 200px; height: 200px; }
  .r2 { width: 150px; height: 150px; }
  .r3 { width: 90px; height: 90px; }
  .services-grid, .pricing-grid { grid-template-columns: 1fr; }
  .crystals-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .crystals-grid { grid-template-columns: 1fr; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form input { border-right: 1px solid var(--border); border-bottom: none; }
  .subscribe-form .btn { border-left: 1px solid var(--gold); }
  .hero-cta-group { flex-direction: column; align-items: center; }
}
