:root {
  --bg: #070b14;
  --bg-alt: #0c1220;
  --surface: #111827;
  --surface-2: #16202f;
  --fg: #f0e8d8;
  --fg-muted: #a89880;
  --fg-dim: #6b5f4e;
  --accent: #d4a853;
  --accent-dim: #a07830;
  --accent-glow: rgba(212,168,83,0.15);
  --purple: #8b6fcf;
  --purple-dim: rgba(139,111,207,0.15);
  --radius: 12px;
  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 3px; }

/* NAV */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: linear-gradient(to bottom, rgba(7,11,20,0.95) 0%, transparent 100%);
}
.nav-inner { max-width: 1200px; margin: 0 auto; }
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.03em;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(139,111,207,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 30% 80%, rgba(212,168,83,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(7,11,20,0) 0%, rgba(7,11,20,0.8) 100%);
  pointer-events: none;
}
.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0.85;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.7;
}
.hero-orb {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.orb-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(139,111,207,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,168,83,0.15);
}
.orb-ring-1 { width: 100%; height: 100%; animation: spin-slow 20s linear infinite; }
.orb-ring-2 { width: 75%; height: 75%; animation: spin-slow 14s linear infinite reverse; }
.orb-ring-3 { width: 50%; height: 50%; animation: spin-slow 9s linear infinite; }
.orb-core { position: relative; z-index: 2; }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* INTRO */
.intro {
  background: var(--bg-alt);
  padding: 100px 40px;
}
.intro-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.intro-mark { margin-bottom: 28px; opacity: 0.8; }
.intro-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--accent);
  margin-bottom: 32px;
  line-height: 1.4;
}
.intro-body {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* SPECIALTIES */
.specialties {
  padding: 100px 40px;
  background: var(--bg);
}
.specialties-header {
  text-align: center;
  margin-bottom: 64px;
}
.specialties-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.specialties-header p {
  color: var(--fg-muted);
  font-size: 1rem;
}
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.spec-card {
  background: var(--surface);
  border: 1px solid rgba(212,168,83,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.spec-card:hover {
  border-color: rgba(212,168,83,0.3);
  background: var(--surface-2);
}
.spec-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--accent-glow);
  border-radius: 10px;
}
.spec-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.spec-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* RITUAL */
.ritual {
  background: var(--bg-alt);
  padding: 100px 40px;
}
.ritual-inner { max-width: 1000px; margin: 0 auto; }
.ritual-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 64px;
  color: var(--fg);
}
.ritual-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.ritual-step { flex: 1; max-width: 280px; text-align: center; }
.ritual-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 16px;
}
.ritual-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.ritual-step p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.ritual-divider {
  padding: 0 24px;
  padding-top: 20px;
  display: flex;
  align-items: center;
}

/* CLOSING */
.closing {
  padding: 120px 40px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.closing-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(139,111,207,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.closing-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 56px;
}
.closing-sigil { opacity: 0.7; }

/* FOOTER */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid rgba(212,168,83,0.08);
  padding: 48px 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { margin-bottom: 24px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}
.footer-tagline {
  color: var(--fg-dim);
  font-size: 0.85rem;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy { color: var(--fg-dim); font-size: 0.8rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; flex-direction: column; }
  .hero-orb { position: static; width: 180px; height: 180px; margin: 40px auto 0; transform: none; }
  .hero-content { text-align: center; }
  .hero-sub { max-width: 100%; margin: 0 auto; }
  .intro { padding: 64px 24px; }
  .specialties { padding: 64px 24px; }
  .specialties-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ritual { padding: 64px 24px; }
  .ritual-steps { flex-direction: column; align-items: center; }
  .ritual-divider { transform: rotate(90deg); padding: 12px 0; }
  .closing { padding: 80px 24px; }
  .site-footer { padding: 40px 24px; }
  .footer-links { gap: 16px; }
}
@media (max-width: 480px) {
  .specialties-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.5rem; }
  .orb-core svg { width: 40px; height: 40px; }
}