/* EMF — Dark Cosmic Theme
   Gold: #d4af37 | Purple: #7b2d8e | Blue: #00bfff
   Background: #0a0a1a
*/

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0a1a;
  color: #e8e0d5;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Typography ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: #fff; }

a { color: #00bfff; text-decoration: none; transition: color 0.2s; }
a:hover { color: #d4af37; }

p { line-height: 1.7; color: #c8c0b5; }

/* ── Animations ───────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.15); }
  50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.35); }
}

@keyframes drift {
  0%   { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
  100% { transform: translateY(-120px) rotate(200deg); opacity: 0; }
}

.animate-in {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* ── Stars Background ──────────────────────────────────────────────────────── */
.stars {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 2px; height: 2px;
  background: #fff;
  border-radius: 50%;
  animation: drift linear infinite;
  opacity: 0;
}

.star.large { width: 3px; height: 3px; background: #d4af37; }
.star.blue { background: #00bfff; }
.star.purple { background: #9b59b6; }

/* ── Container ─────────────────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── Navigation ────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(10, 10, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: #a09890;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: #d4af37; }

.nav-cta {
  background: linear-gradient(135deg, #d4af37, #a8882a);
  color: #0a0a1a;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  color: #0a0a1a;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d4af37, #a8882a);
  color: #0a0a1a;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 175, 55, 0.45);
  color: #0a0a1a;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #d4af37;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
  color: #d4af37;
}

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(123, 45, 142, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  width: 220px;
  margin: 0 auto 36px;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
  animation: pulse-glow 3s ease-in-out infinite;
  border-radius: 20px;
}

.hero-tagline {
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #d4af37, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: #9a9288;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
  color: #5a5248;
  font-size: 0.85rem;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

/* ── Section Common ────────────────────────────────────────────────────────── */
section { padding: 100px 0; position: relative; z-index: 1; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: #9a9288;
  max-width: 600px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── Three Pillars ─────────────────────────────────────────────────────────── */
.pillars { background: linear-gradient(180deg, #0a0a1a 0%, #0f0f28 100%); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}

.pillar-card:hover { transform: translateY(-6px); }

.pillar-card.pillar-attract::before { background: linear-gradient(90deg, #d4af37, #00bfff); }
.pillar-card.pillar-protect::before  { background: linear-gradient(90deg, #7b2d8e, #d4af37); }
.pillar-card.pillar-multiply::before { background: linear-gradient(90deg, #00bfff, #7b2d8e); }

.pillar-card:hover::before { opacity: 1; }
.pillar-card:hover { border-color: rgba(212, 175, 55, 0.2); }

.pillar-icon {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
}

.pillar-attract .pillar-icon { background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.3); }
.pillar-protect .pillar-icon  { background: rgba(123, 45, 142, 0.15); border: 1px solid rgba(123, 45, 142, 0.4); }
.pillar-multiply .pillar-icon { background: rgba(0, 191, 255, 0.1); border: 1px solid rgba(0, 191, 255, 0.3); }

.pillar-verb {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pillar-attract .pillar-verb { color: #d4af37; }
.pillar-protect .pillar-verb  { color: #9b59b6; }
.pillar-multiply .pillar-verb { color: #00bfff; }

.pillar-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: #fff;
}

.pillar-card p {
  font-size: 0.95rem;
  color: #9a9288;
  line-height: 1.65;
}

.pillar-services {
  list-style: none;
  margin-top: 20px;
  text-align: left;
}

.pillar-services li {
  font-size: 0.88rem;
  color: #7a7268;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pillar-services li::before {
  content: '◆';
  font-size: 0.5rem;
  color: #d4af37;
}

@media (max-width: 768px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ── Services ───────────────────────────────────────────────────────────────── */
.services { background: #0a0a1a; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.service-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 28px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: border-color 0.25s, background 0.25s;
}

.service-card:hover {
  background: rgba(212, 175, 55, 0.04);
  border-color: rgba(212, 175, 55, 0.2);
}

.service-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 0.85rem;
  color: #7a7268;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── About Victoria ─────────────────────────────────────────────────────────── */
.about {
  background: linear-gradient(180deg, #0a0a1a 0%, #0e0e24 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.about-photo-wrap {
  position: relative;
}

.about-photo-wrap::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 100%; height: 100%;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  pointer-events: none;
}

.about-photo {
  width: 100%;
  max-width: 300px;
  border-radius: 14px;
  display: block;
  border: 2px solid rgba(212, 175, 55, 0.15);
}

.about-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4af37, #a8882a);
  color: #0a0a1a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.about-text .section-label { margin-bottom: 12px; }

.about-text h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 1rem;
  color: #9a9288;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cred {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 6px;
  border: 1px solid;
}

.cred-gold {
  color: #d4af37;
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.07);
}

.cred-blue {
  color: #00bfff;
  border-color: rgba(0, 191, 255, 0.3);
  background: rgba(0, 191, 255, 0.07);
}

.cred-purple {
  color: #9b59b6;
  border-color: rgba(155, 89, 182, 0.3);
  background: rgba(155, 89, 182, 0.07);
}

@media (max-width: 768px) {
  .about-content { grid-template-columns: 1fr; }
  .about-photo { max-width: 240px; margin: 0 auto; }
}

/* ── Contact / Booking Section ───────────────────────────────────────────────── */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0e0e24 0%, #0a0a1a 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #00bfff);
  opacity: 0;
  transition: opacity 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.contact-card:hover::before { opacity: 1; }

.contact-card-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.contact-card:nth-child(1) .contact-card-icon {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-card:nth-child(2) .contact-card-icon {
  background: rgba(123, 45, 142, 0.15);
  border: 1px solid rgba(123, 45, 142, 0.4);
}

.contact-card:nth-child(3) .contact-card-icon {
  background: rgba(0, 191, 255, 0.1);
  border: 1px solid rgba(0, 191, 255, 0.3);
}

.contact-card h3 {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #d4af37;
  transition: color 0.2s;
}

.contact-value:hover { color: #00bfff; }

.contact-note {
  font-size: 0.8rem;
  color: #5a5248;
}

.contact-card-sub {
  font-size: 0.85rem;
  color: #7a7268;
  line-height: 1.55;
  margin-bottom: 4px;
}

.contact-card-calendly {
  background: rgba(0, 191, 255, 0.03);
  border-color: rgba(0, 191, 255, 0.1);
}

.contact-card-calendly::before {
  background: linear-gradient(90deg, #00bfff, #7b2d8e);
}

.contact-card-calendly:hover {
  border-color: rgba(0, 191, 255, 0.25);
  box-shadow: 0 12px 40px rgba(0, 191, 255, 0.15);
}

.calendly-btn {
  font-size: 0.92rem;
  padding: 12px 24px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .contact-cards { grid-template-columns: 1fr; }
}

/* ── Footer ─────────────────────────────────────────────────────────────────── */
footer {
  padding: 40px 0;
  background: #07071a;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.footer-tagline {
  font-size: 0.82rem;
  color: #5a5248;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

footer p {
  font-size: 0.8rem;
  color: #3a3630;
}

/* ── Glow Divider ───────────────────────────────────────────────────────────── */
.glow-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7b2d8e, #d4af37, #00bfff);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ── Email Capture ──────────────────────────────────────────────────────────── */
.email-capture {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a0a1a 0%, #0d0d22 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.email-capture::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(123, 45, 142, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.email-capture-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 20px;
  padding: 56px 48px;
  position: relative;
}

.email-capture-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.email-capture-card h2 {
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.email-capture-highlight {
  background: linear-gradient(90deg, #d4af37, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.email-capture-sub {
  font-size: 1.05rem;
  color: #9a9288;
  line-height: 1.65;
  margin-bottom: 40px;
}

.email-capture-form { display: block; }

.email-capture-inputs {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.email-capture-inputs input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 1rem;
  color: #e8e0d5;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.email-capture-inputs input::placeholder {
  color: #6a6258;
}

.email-capture-inputs input:focus {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.email-capture-btn {
  white-space: nowrap;
  font-size: 0.92rem;
  padding: 14px 26px;
  flex-shrink: 0;
}

.email-capture-disclaimer {
  font-size: 0.78rem;
  color: #5a5248;
  margin-top: 14px;
}

.email-capture-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}

.email-capture-success p {
  font-size: 1.05rem;
  color: #d4af37;
  font-weight: 500;
  line-height: 1.5;
}

.email-capture-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d4af37, #a8882a);
  color: #0a0a1a;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.email-capture-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
  color: #0a0a1a;
}

.email-capture-error {
  font-size: 0.85rem;
  color: #ff6b6b;
  margin-top: 14px;
  padding: 10px 16px;
  background: rgba(255, 107, 107, 0.08);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: 8px;
}

@media (max-width: 600px) {
  .email-capture-card {
    padding: 40px 28px;
  }

  .email-capture-inputs {
    flex-direction: column;
  }

  .email-capture-btn {
    width: 100%;
    justify-content: center;
  }
}