/* ═══════════════════════════════════════════
   ROOT & RESET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --deep:           #1A1028;
  --amethyst:       #7B5EA7;
  --amethyst-light: #C3A8E0;
  --amethyst-pale:  #EDE4F5;
  --gold:           #C9A84C;
  --gold-light:     #E8D5A3;
  --gold-pale:      #FAF4E6;
  --moonstone:      #F9F4EE;
  --petal:          #FDFAF7;
  --mid:            #5C4A72;
  --soft:           #9B8AAD;
  --muted:          #BDB0CC;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Raleway', sans-serif;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  background: var(--petal);
  color: var(--deep);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════ */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-eyebrow.light { color: rgba(201,168,76,0.75); }
.section-eyebrow.muted { color: var(--muted); }

.gold-rule {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 20px;
}

.gold-rule.left { margin-left: 0; }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-12px) scale(1.02); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.08); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26,16,40,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: background 0.4s ease;
}

nav.scrolled {
  background: rgba(26,16,40,0.97);
  box-shadow: 0 1px 32px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: white;
}

.nav-brand-name span { color: var(--gold); }

.nav-brand-tagline {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(195,168,224,0.5);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-smooth);
}

.nav-links a:hover { color: white; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 10px 24px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--gold-light);
  color: var(--deep);
  border-color: var(--gold-light);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════
   MOBILE NAV DRAWER
═══════════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--deep);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: var(--deep);
  padding: 120px 48px 80px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(123,94,167,0.45) 0%, rgba(123,94,167,0.05) 55%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,168,76,0.22) 0%, transparent 65%);
  top: 20%; right: 15%;
  animation: pulse-glow 11s ease-in-out infinite 2s;
}

.hero-orb-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(195,168,224,0.18) 0%, transparent 65%);
  bottom: 15%; left: 10%;
  animation: pulse-glow 9s ease-in-out infinite 4s;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  animation: fadeUp 1.4s var(--ease-smooth) forwards;
}

.hero-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 32px;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.4)) drop-shadow(0 0 50px rgba(123,94,167,0.5));
  animation: float 7s ease-in-out infinite 1.5s;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
  margin-bottom: 24px;
  animation: fadeIn 1.6s ease forwards 0.3s;
  opacity: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: white;
  margin-bottom: 28px;
  text-shadow: 0 0 80px rgba(123,94,167,0.6);
  animation: fadeUp 1.2s var(--ease-smooth) forwards 0.2s;
  opacity: 0;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(195,168,224,0.75);
  max-width: 460px;
  margin: 0 auto 48px;
  line-height: 1.8;
  animation: fadeUp 1.2s var(--ease-smooth) forwards 0.4s;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1.2s var(--ease-smooth) forwards 0.6s;
  opacity: 0;
}

.btn-hero-primary {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--deep);
  background: var(--gold-light);
  padding: 16px 36px;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 1px solid var(--gold-light);
}

.btn-hero-primary:hover {
  background: var(--gold);
  color: var(--deep);
  box-shadow: 0 0 30px rgba(201,168,76,0.3);
}

.btn-hero-ghost {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 16px 36px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.btn-hero-ghost:hover {
  color: white;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 2s ease forwards 1.4s;
  opacity: 0;
}

.hero-scroll span {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(201,168,76,0.6), transparent);
  animation: float 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
.trust-bar {
  background: white;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 32px 48px;
}

.trust-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.trust-inner::before,
.trust-inner::after {
  content: '';
  position: absolute;
  top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.25), transparent);
}

.trust-inner::before { left: 33.33%; }
.trust-inner::after  { left: 66.66%; }

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  gap: 8px;
}

.trust-icon {
  font-size: 20px;
  margin-bottom: 4px;
  opacity: 0.8;
}

.trust-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--deep);
}

.trust-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--soft);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   COLLECTIONS
═══════════════════════════════════════════ */
.collections {
  padding: 120px 48px;
  background: var(--petal);
}

.collections-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--deep);
}

.section-title em {
  font-style: italic;
  color: var(--amethyst);
}

.section-body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.8;
  max-width: 480px;
  margin: 16px auto 0;
}

.collections-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.collection-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--amethyst-pale);
  transition: transform 0.5s var(--ease-smooth);
}

.collection-card:hover { transform: translateY(-6px); }
.collection-card:nth-child(2) { margin-top: 40px; }

.collection-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease-smooth);
}

.collection-card:hover .collection-bg { transform: scale(1.04); }

.collection-bg-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.collection-bg-1 {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(123,94,167,0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(201,168,76,0.3) 0%, transparent 55%),
    linear-gradient(160deg, #2C1F3E 0%, #1A1028 100%);
}

.collection-bg-2 {
  background:
    radial-gradient(ellipse at 60% 25%, rgba(195,168,224,0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 75%, rgba(201,168,76,0.25) 0%, transparent 50%),
    linear-gradient(140deg, #3D2B5C 0%, #1A1028 100%);
}

.collection-bg-3 {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(201,168,76,0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 70%, rgba(123,94,167,0.35) 0%, transparent 50%),
    linear-gradient(150deg, #2A1E40 0%, #1A1028 100%);
}

.collection-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  opacity: 0.35;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.collection-card:hover .collection-decoration {
  opacity: 0.55;
  transform: translate(-50%, -62%);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,16,40,0.85) 100%);
}

.collection-content {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 32px 28px;
  z-index: 2;
}

.collection-label {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.75;
  margin-bottom: 8px;
}

.collection-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: white;
  line-height: 1.1;
  margin-bottom: 10px;
}

.collection-desc {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.collection-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: gap 0.3s ease;
}

.collection-card:hover .collection-link { gap: 14px; }

.collection-link-arrow {
  width: 20px;
  height: 1px;
  background: var(--gold-light);
  position: relative;
  transition: width 0.3s ease;
}

.collection-card:hover .collection-link-arrow { width: 28px; }

.collection-link-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--gold-light);
  border-top: 1px solid var(--gold-light);
  transform: rotate(45deg);
}

/* ═══════════════════════════════════════════
   FIND MY CRYSTAL
═══════════════════════════════════════════ */
.find-crystal {
  background: var(--amethyst-pale);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

.find-crystal::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,94,167,0.18) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.find-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.find-text .section-title { text-align: left; }
.find-text .section-title em { color: var(--amethyst); }
.find-text .gold-rule { margin-left: 0; margin-bottom: 24px; }

.find-body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 36px;
}

.btn-find {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: white;
  background: var(--amethyst);
  padding: 15px 34px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-find:hover {
  background: var(--mid);
  box-shadow: 0 8px 30px rgba(123,94,167,0.3);
}

.intentions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.intention-card {
  background: white;
  border-radius: 6px;
  padding: 24px 20px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(123,94,167,0.1);
  position: relative;
  overflow: hidden;
  min-height: 110px;
  display: flex;
  align-items: flex-end;
}

.intention-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(201,168,76,0.18);
  transform: translateY(-3px);
}

/* Large background watermark icon */
.intention-icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 90px;
  color: var(--gold);
  opacity: 0.15;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  line-height: 1;
}

.intention-card:hover .intention-icon-bg {
  opacity: 0.22;
  transform: translate(-50%, -50%) scale(1.08);
}

/* Content layer */
.intention-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Small foreground icon */
.intention-icon-fg {
  font-size: 16px;
  color: var(--amethyst);
  opacity: 0.7;
  margin-bottom: 2px;
  transition: opacity 0.3s ease;
}

.intention-card:hover .intention-icon-fg {
  opacity: 1;
}

.intention-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--deep);
  line-height: 1.2;
}

.intention-crystal {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--soft);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   OUR STORY
═══════════════════════════════════════════ */
.our-story {
  padding: 140px 48px;
  background: var(--petal);
}

.story-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.story-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: url('../images/our-story.jpeg') center center / cover no-repeat;
}

.story-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(26,16,40,0.45) 0%, rgba(123,94,167,0.25) 50%, rgba(26,16,40,0.55) 100%);
}

.story-visual-caption {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: rgba(232,213,163,0.7);
  letter-spacing: 0.04em;
}

.story-accent {
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
}

.story-accent-2 {
  position: absolute;
  bottom: -15px; left: -15px;
  width: 60px; height: 60px;
  border: 1px solid rgba(123,94,167,0.3);
  border-radius: 50%;
}

.story-text .section-title { text-align: left; margin-bottom: 8px; }
.story-text .gold-rule { margin-left: 0; }

.story-body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.9;
  margin-bottom: 20px;
}

.story-quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--amethyst);
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin: 28px 0;
  padding-left: 20px;
  border-left: 2px solid rgba(123,94,167,0.3);
}

/* ═══════════════════════════════════════════
   HEALING SESSIONS
═══════════════════════════════════════════ */
.healing {
  background: var(--deep);
  padding: 140px 48px;
  position: relative;
  overflow: hidden;
}

.healing::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,94,167,0.35) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.healing::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 65%);
  top: 15%; right: 10%;
  pointer-events: none;
}

.healing-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.healing-text .section-eyebrow { color: rgba(201,168,76,0.7); }
.healing-text .gold-rule { margin-left: 0; }

.healing-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
}

.healing-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.healing-body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(195,168,224,0.75);
  line-height: 1.85;
  margin-bottom: 12px;
}

.healing-differentiator {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 18px 20px;
  margin: 28px 0;
}

.healing-differentiator-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.healing-differentiator-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.btn-healing {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--deep);
  background: var(--gold-light);
  padding: 15px 34px;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.btn-healing:hover {
  background: var(--gold);
  box-shadow: 0 8px 30px rgba(201,168,76,0.25);
}

.vicky-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 6px;
  padding: 40px 36px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.vicky-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background:
    radial-gradient(circle at 40% 40%, rgba(195,168,224,0.5), rgba(123,94,167,0.3)),
    linear-gradient(135deg, #3D2B5C, #1A1028);
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold-light);
  box-shadow: 0 0 30px rgba(123,94,167,0.3);
}

.vicky-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: white;
  margin-bottom: 4px;
}

.vicky-role {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.75;
  margin-bottom: 20px;
}

.vicky-divider {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
  margin: 0 auto 20px;
}

.vicky-bio {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(195,168,224,0.7);
  line-height: 1.75;
  margin-bottom: 24px;
}

.session-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.session-tag {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(123,94,167,0.2);
  color: var(--amethyst-light);
  border: 1px solid rgba(123,94,167,0.3);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials {
  padding: 120px 48px;
  background: white;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  padding: 36px 30px;
  background: var(--petal);
  border-radius: 4px;
  border: 1px solid rgba(201,168,76,0.1);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,16,40,0.06);
}

.testimonial-card:nth-child(2) { margin-top: 28px; }

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: var(--amethyst-light);
  line-height: 0.7;
  margin-bottom: 20px;
  opacity: 0.5;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: var(--deep);
  line-height: 1.65;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-star {
  color: var(--gold);
  font-size: 11px;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--soft);
}

.testimonial-author span {
  color: var(--amethyst);
  font-weight: 400;
}

/* ═══════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════ */
.newsletter {
  background: var(--amethyst-pale);
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,94,167,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: 12px;
}

.newsletter-title em { font-style: italic; color: var(--amethyst); }

.newsletter-sub {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.7;
  margin-bottom: 36px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto 16px;
}

.newsletter-input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--deep);
  background: white;
  border: 1px solid rgba(123,94,167,0.2);
  border-right: none;
  border-radius: 2px 0 0 2px;
  padding: 14px 20px;
  outline: none;
  letter-spacing: 0.04em;
  transition: border-color 0.3s ease;
}

.newsletter-input::placeholder { color: var(--muted); }
.newsletter-input:focus { border-color: var(--amethyst-light); }

.newsletter-btn {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: white;
  background: var(--amethyst);
  border: none;
  border-radius: 0 2px 2px 0;
  padding: 14px 24px;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover { background: var(--mid); }

.newsletter-note {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.newsletter-note a { color: var(--amethyst); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--deep);
  padding: 80px 48px 40px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,94,167,0.15) 0%, transparent 70%);
  bottom: -100px; right: -100px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: white;
}

.footer-logo-name span { color: var(--gold); }

.footer-tagline {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: rgba(201,168,76,0.6);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-social {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s ease;
}

.footer-social:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 0 28px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .hero { padding: 100px 28px 70px; }

  .trust-bar { padding: 28px; }
  .trust-inner { grid-template-columns: 1fr; gap: 24px; }
  .trust-inner::before, .trust-inner::after { display: none; }

  .collections { padding: 80px 28px; }
  .collections-grid { grid-template-columns: 1fr; gap: 16px; }
  .collection-card { aspect-ratio: 4/3; }
  .collection-card:nth-child(2) { margin-top: 0; }

  .find-crystal { padding: 80px 28px; }
  .find-inner { grid-template-columns: 1fr; gap: 48px; }

  .our-story { padding: 80px 28px; }
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-visual { aspect-ratio: 16/9; }

  .healing { padding: 80px 28px; }
  .healing-inner { grid-template-columns: 1fr; gap: 48px; }

  .testimonials { padding: 80px 28px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card:nth-child(2) { margin-top: 0; }

  .newsletter { padding: 80px 28px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid rgba(123,94,167,0.2); border-bottom: none; border-radius: 2px 2px 0 0; }
  .newsletter-btn { border-radius: 0 0 2px 2px; padding: 14px; }

  footer { padding: 60px 28px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .hero-headline { font-size: 40px; }
  .footer-top { grid-template-columns: 1fr; }
  .intentions-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════
   BOOKING FORM
═══════════════════════════════════════════ */
.booking {
  padding: 120px 48px;
  background: var(--petal);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(195,168,224,0.12) 0%, transparent 70%);
  top: 50%; right: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}

.booking-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.booking-text .section-title { text-align: left; }
.booking-text .section-title em { color: var(--amethyst); }
.booking-text .gold-rule { margin-left: 0; }

.booking-body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.85;
  margin-bottom: 32px;
}

.booking-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.5;
}

.booking-detail-icon {
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Form */
.booking-form-wrap {
  position: relative;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: white;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 6px;
  padding: 40px 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
}

.form-required { color: var(--amethyst); margin-left: 2px; }

.form-optional {
  color: var(--muted);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  font-size: 10px;
}

.form-input {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--deep);
  background: var(--petal);
  border: 1px solid rgba(123,94,167,0.15);
  border-radius: 3px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  letter-spacing: 0.02em;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder { color: var(--muted); }

.form-input:focus {
  border-color: var(--amethyst-light);
  box-shadow: 0 0 0 3px rgba(123,94,167,0.07);
  background: white;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B8AAD' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.6;
}

.btn-booking-submit {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: white;
  background: var(--amethyst);
  border: none;
  border-radius: 3px;
  padding: 16px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 4px;
}

.btn-booking-submit:hover {
  background: var(--mid);
  box-shadow: 0 8px 24px rgba(123,94,167,0.25);
}

.btn-booking-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.booking-privacy {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: -8px;
}

/* Success state */
.booking-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 36px;
  background: white;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
}

.booking-success.visible { display: flex; }

.booking-success-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
  animation: pulse-glow 3s ease-in-out infinite;
}

.booking-success-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--deep);
  margin-bottom: 12px;
}

.booking-success-body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.8;
  max-width: 360px;
}

/* Responsive */
@media (max-width: 900px) {
  .booking { padding: 80px 28px; }
  .booking-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .booking-form { padding: 28px 22px; }
}

/* ═══════════════════════════════════════════
   FREE GUIDE SECTION
═══════════════════════════════════════════ */
.free-guide {
  background: var(--amethyst-pale);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

.free-guide::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,94,167,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.free-guide-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Text side */
.free-guide-text .gold-rule { margin-left: 0; }

.free-guide-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 14px;
}

.free-guide-title em {
  font-style: italic;
  color: var(--amethyst);
}

.free-guide-sub {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.8;
  margin-bottom: 28px;
}

.free-guide-chapters {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.free-guide-chapters li {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 12px;
}

.free-guide-num {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  color: var(--gold);
  min-width: 20px;
}

.btn-guide-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: white;
  background: var(--amethyst);
  padding: 15px 30px;
  border-radius: 2px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-guide-download:hover {
  background: var(--mid);
  box-shadow: 0 8px 28px rgba(123,94,167,0.3);
}

.btn-guide-icon {
  font-size: 16px;
  line-height: 1;
}

.free-guide-note {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 12px;
}

/* Visual side — mock PDF cover */
.free-guide-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.free-guide-cover {
  position: relative;
  width: 220px;
  aspect-ratio: 210/297;
  border-radius: 4px;
  overflow: hidden;
  background: var(--deep);
  box-shadow:
    0 20px 60px rgba(26,16,40,0.35),
    0 4px 16px rgba(26,16,40,0.2),
    4px 4px 0 rgba(123,94,167,0.2);
  transition: transform 0.5s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth);
}

.free-guide-cover:hover {
  transform: translateY(-6px) rotate(0.5deg);
  box-shadow:
    0 28px 70px rgba(26,16,40,0.4),
    0 8px 24px rgba(26,16,40,0.25),
    4px 4px 0 rgba(123,94,167,0.25);
}

.free-guide-cover-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(123,94,167,0.55) 0%, transparent 65%),
    radial-gradient(ellipse at 75% 20%, rgba(201,168,76,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.free-guide-cover-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 24px 20px;
  text-align: center;
}

.free-guide-cover-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.5));
}

.free-guide-cover-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: white;
  line-height: 1.2;
  margin-bottom: 6px;
  text-shadow: 0 0 20px rgba(123,94,167,0.6);
}

.free-guide-cover-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.free-guide-cover-rule {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 14px;
}

.free-guide-cover-tag {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.65);
}

/* Responsive */
@media (max-width: 900px) {
  .free-guide { padding: 72px 28px; }
  .free-guide-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .free-guide-visual { order: -1; }
  .free-guide-cover { width: 180px; }
}

/* ═══════════════════════════════════════════
   FIND MY CRYSTAL QUIZ MODAL
═══════════════════════════════════════════ */
.quiz-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26,16,40,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.quiz-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.quiz-modal {
  background: var(--deep);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 48px 44px 44px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(123,94,167,0.15);
}

/* Progress bar */
.quiz-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--amethyst), var(--gold));
  transition: width 0.5s var(--ease-smooth);
  border-radius: 12px;
}

/* Close button */
.quiz-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.3s ease;
  font-family: var(--font-body);
}

.quiz-close:hover { color: rgba(255,255,255,0.7); }

/* Steps */
.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeUp 0.4s var(--ease-smooth) forwards;
}

.quiz-eyebrow {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.quiz-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  letter-spacing: 0.03em;
  color: white;
  line-height: 1.15;
  margin-bottom: 10px;
}

.quiz-title em {
  font-style: italic;
  color: var(--gold-light);
}

.quiz-subtitle {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(195,168,224,0.6);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

/* Option buttons */
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quiz-option {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 18px 16px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.quiz-option:hover {
  background: rgba(123,94,167,0.15);
  border-color: var(--amethyst-light);
  transform: translateY(-2px);
}

.quiz-option.selected {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
}

.quiz-option-icon {
  font-size: 20px;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 4px;
}

.quiz-option-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  color: white;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.quiz-option-desc {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  color: rgba(195,168,224,0.6);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* Result */
.quiz-result-inner {
  text-align: center;
  position: relative;
}

.quiz-result-glow {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,94,167,0.3) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.quiz-result-gem {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 12px;
  animation: pulse-glow 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.quiz-result-name {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: white;
  line-height: 1.1;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.quiz-result-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.quiz-result-rule {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 16px;
}

.quiz-result-body {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(195,168,224,0.75);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.quiz-result-properties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.quiz-result-prop {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amethyst-light);
  background: rgba(123,94,167,0.2);
  border: 1px solid rgba(123,94,167,0.3);
  padding: 5px 12px;
  border-radius: 20px;
}

.quiz-result-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.btn-quiz-shop {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--deep);
  background: var(--gold-light);
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-quiz-shop:hover {
  background: var(--gold);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.btn-quiz-restart {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 4px;
}

.btn-quiz-restart:hover { color: rgba(255,255,255,0.65); }

@media (max-width: 560px) {
  .quiz-modal { padding: 40px 24px 32px; }
  .quiz-options { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 150;
  width: calc(100% - 48px);
  max-width: 680px;
  background: var(--deep);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  transition: transform 0.5s var(--ease-smooth), opacity 0.5s ease;
  opacity: 0;
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-banner.hidden {
  transform: translateX(-50%) translateY(120px);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.cookie-icon {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.8;
}

.cookie-text p {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.cookie-text a {
  color: var(--amethyst-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s;
}

.cookie-text a:hover { color: var(--gold-light); }

.cookie-btn {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--deep);
  background: var(--gold-light);
  border: none;
  border-radius: 2px;
  padding: 10px 22px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.cookie-btn:hover { background: var(--gold); }

@media (max-width: 560px) {
  .cookie-banner { bottom: 16px; width: calc(100% - 32px); }
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-btn { align-self: flex-end; }
}

/* ─── Footer credit ─── */
.footer-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-credit-label {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.footer-credit-logo {
  height: 36px;
  display: block;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  filter: brightness(0) invert(1);
}

.footer-credit-logo:hover { opacity: 1; }

/* ─── Quiz back button ─── */
.quiz-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.quiz-back:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════
   THREE GUIDES SECTION
═══════════════════════════════════════════ */
.free-guides-header {
  text-align: center;
  margin-bottom: 8px;
}

.free-guides-grid {
  max-width: 860px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
  justify-content: center;
}

/* ── Premium full-width panel ── */
.guide-premium-panel {
  max-width: 1060px;
  margin: 0 auto;
  background: var(--deep);
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.2);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.4s ease;
}

.guide-premium-panel:hover {
  box-shadow: 0 16px 56px rgba(26,16,40,0.35);
}

.guide-premium-panel-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(123,94,167,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 30%, rgba(201,168,76,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.guide-premium-left {
  position: relative;
  z-index: 1;
  padding: 36px 32px 36px 36px;
  border-right: 1px solid rgba(201,168,76,0.15);
  display: flex;
  flex-direction: column;
}

.guide-premium-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: white;
  line-height: 1.15;
  margin-bottom: 12px;
}

.guide-premium-title em {
  font-style: italic;
  color: var(--gold-light);
}

.guide-premium-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(195,168,224,0.75);
  line-height: 1.75;
}

.guide-premium-features-row {
  position: relative;
  z-index: 1;
  padding: 36px 36px 36px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
  align-content: center;
}

/* ── Individual guide card ── */
.guide-card {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.12);
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s ease;
  background: white;
}

.guide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,16,40,0.1);
}

/* ── Cover panel ── */
.guide-card-cover {
  aspect-ratio: 210/160;
  position: relative;
  overflow: hidden;
  background: var(--deep);
}

.guide-card-cover--astro {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(123,94,167,0.6) 0%, transparent 65%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.2) 0%, transparent 50%),
    linear-gradient(155deg, #2C1F3E 0%, #1A1028 100%);
}

.guide-card-cover--wearing {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(123,94,167,0.45) 0%, transparent 60%),
    linear-gradient(145deg, #2C1F3E 0%, #1A1028 100%);
}

.guide-card-cover--deep {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(123,94,167,0.5) 0%, transparent 60%),
    linear-gradient(145deg, #1A1028 0%, #2C1F3E 100%);
}

.guide-card-cover-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(123,94,167,0.35) 0%, transparent 65%);
  pointer-events: none;
}

.guide-card-cover-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px 16px;
  text-align: center;
}

.guide-card-logo {
  width: 36px; height: 36px;
  object-fit: contain;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.5));
}

.guide-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: white;
  line-height: 1.2;
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(123,94,167,0.6);
}

.guide-card-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.guide-card-rule {
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 10px;
}

.guide-card-tag {
  font-family: var(--font-body);
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
}

/* ── Card body ── */
.guide-card-body {
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.guide-card-eyebrow {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.guide-card-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: 8px;
}

.guide-card-desc {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.7;
  margin-bottom: 16px;
}

.guide-card-chapters {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  flex: 1;
}

.guide-card-chapters li {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 10px;
}

.guide-card-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 300;
  color: var(--gold);
  min-width: 16px;
}

/* ── Email gate ── */
.guide-gate { margin-top: auto; }

.guide-gate-note {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.6;
  margin-bottom: 10px;
}

.guide-gate-form { display: flex; flex-direction: column; gap: 8px; }

.guide-gate-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guide-gate-input {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--deep);
  background: var(--amethyst-pale);
  border: 1px solid rgba(123,94,167,0.2);
  border-radius: 3px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
}

.guide-gate-input::placeholder { color: var(--muted); }
.guide-gate-input:focus { border-color: var(--amethyst-light); background: white; }

.btn-guide-gate {
  width: 100%;
  justify-content: center;
}

.guide-gate-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: var(--amethyst-pale);
  border-radius: 4px;
  margin-bottom: 8px;
}

.guide-gate-success-icon {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}

.guide-gate-success p {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.5;
}

/* ── Footer grid update for 5 columns ── */
.footer-top {
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr !important;
}

/* ── Responsive ── */
@media (max-width: 720px) {
  .free-guides-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto 24px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr !important;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr !important; }
}

/* ─── Guide card premium styles ─── */
.guide-card-cover { position: relative; }

.guide-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--deep);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 20px;
}

.guide-card-name em {
  font-style: italic;
  color: var(--amethyst);
}

.guide-card-premium-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.guide-premium-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.guide-premium-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  width: 24px;
  text-align: center;
}

.guide-premium-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.guide-premium-item p {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: rgba(195,168,224,0.65);
  line-height: 1.6;
  margin: 0;
}

.guide-card-price-row {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  margin-bottom: 16px;
}

.guide-card-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.guide-price-amount {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--deep);
  line-height: 1;
}

.guide-price-note {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--soft);
}

.btn-guide-premium {
  background: var(--deep) !important;
  color: var(--gold-light) !important;
  border: 1px solid var(--deep) !important;
  width: 100%;
  justify-content: center;
}

.btn-guide-premium:hover {
  background: var(--amethyst) !important;
  border-color: var(--amethyst) !important;
  box-shadow: 0 8px 24px rgba(123,94,167,0.3) !important;
}

/* ─── Premium card item colours (white card bg) ─── */
.guide-card-premium-features .guide-premium-item strong {
  color: var(--deep);
}

.guide-card-premium-features .guide-premium-item p {
  color: var(--soft);
}

.guide-card-teaser {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
  color: var(--amethyst);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ─── Free Guides nav highlight ─── */
