/* Mystical Tarot — main stylesheet */

/* ── Layout primitives ──────────────────────────────────────────────────── */
.site {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.section {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 56px;
  z-index: 2;
}
.section-head {
  text-align: center;
  margin-bottom: 72px;
}
.section-eyebrow {
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 14px;
  font-weight: 300;
}
.section-title {
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 300;
  margin: 0 0 22px;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-family: var(--display-font, 'Frank Ruhl Libre', serif);
  line-height: 1.1;
}
.section-sub {
  max-width: 580px;
  margin: 28px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
}

.display { font-family: var(--display-font, 'Frank Ruhl Libre', serif); }

/* ── Starfield background ───────────────────────────────────────────────── */
.starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 20%, var(--bg-2) 0%, var(--bg) 50%, var(--bg) 100%);
}
.starfield::before {
  /* Soft purple gradient overlay */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 90%, rgba(108, 65, 145, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 15% 80%, rgba(58, 78, 145, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 25% at 50% 0%,  rgba(212, 175, 111, 0.06) 0%, transparent 60%);
}
.stars-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.cosmic-glow {
  position: absolute;
  top: -25%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, var(--gold-faint) 0%, transparent 60%);
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
}
.moon-wrap {
  position: absolute;
  top: 8%;
  left: 7%;
  opacity: 0.95;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 0.5px solid var(--gold);
  opacity: 0.04;
  pointer-events: none;
}
.ring-1 {
  width: 1100px; height: 1100px;
  top: 40%; right: -30%;
  border: 0.5px dashed var(--gold);
  opacity: 0.08;
  animation: spinSlow 240s linear infinite;
}
.ring-2 {
  width: 700px; height: 700px;
  bottom: -20%; left: -10%;
  opacity: 0.06;
  animation: spinSlow 360s linear infinite reverse;
}

/* ── Nav ────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: padding 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
}
.nav-scrolled {
  padding: 14px 0;
  background: rgba(13, 10, 26, 0.65);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 0.5px solid var(--line);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; right: 0;
  width: 0;
  height: 0.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 22px;
  border: 0.5px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
  background: transparent;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 0 30px var(--gold-soft);
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
  font-family: inherit;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 4px 30px var(--gold-soft), inset 0 0 0 1px rgba(255,255,255,0.1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--gold-soft), inset 0 0 0 1px rgba(255,255,255,0.2);
  background: var(--gold);
  filter: brightness(1.1);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 0.5px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-faint);
}
.btn-block {
  display: flex;
  width: 100%;
}
.btn-sm { padding: 10px 22px; font-size: 12px; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 56px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
.hero-content {
  max-width: 880px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.32em;
  margin-bottom: 36px;
  opacity: 0.9;
}
.hero-title {
  font-size: clamp(56px, 9vw, 124px);
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-title-line {
  font-weight: 200;
  font-size: 0.55em;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
}
.hero-title-emph {
  font-weight: 300;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.04em;
  text-shadow: 0 0 50px var(--gold-soft);
}
.hero-name {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 300;
  color: var(--ink);
  margin: 8px 0 24px;
  letter-spacing: 0.1em;
  opacity: 0.85;
}
.hero-divider { margin: 32px 0; }
.hero-sub {
  max-width: 560px;
  margin: 32px auto 48px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  font-weight: 300;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
}
.hero-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  display: inline-block;
}
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ink-faint);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.3em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}
.scroll-hint:hover { color: var(--gold); }

/* Split hero layout variant */
.hero-split { text-align: start; align-items: flex-start; padding-inline-start: 12%; }
.hero-split .hero-content { margin: 0; }
.hero-split .hero-title { align-items: flex-start; }
.hero-split .hero-eyebrow { justify-content: flex-start; }
.hero-split .hero-cta, .hero-split .hero-meta { justify-content: flex-start; }
.hero-split .hero-divider svg { margin: 0; }
.hero-split .hero-sub { margin-left: 0; margin-right: 0; }

/* ── About ──────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.about-portrait {
  position: relative;
}
.portrait-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  border: 0.5px solid var(--line);
  background:
    repeating-linear-gradient(135deg,
      rgba(212, 175, 111, 0.04) 0px,
      rgba(212, 175, 111, 0.04) 1px,
      transparent 1px,
      transparent 14px),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  box-shadow:
    0 30px 80px rgba(0,0,0,0.4),
    0 0 0 1px var(--gold-faint),
    inset 0 0 60px rgba(0,0,0,0.3);
}
.portrait-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 0.5px solid var(--gold-faint);
  border-radius: 4px;
  pointer-events: none;
}
.portrait-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--ink-faint);
}
.portrait-label {
  font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ── Mystic Orb (3D animation) ──────────────────────────────────────────── */
.mystic-orb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 900px;
  perspective-origin: 50% 50%;
  overflow: hidden;
}
.orb-aura {
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(255, 246, 224, 0.18) 0%,
      var(--gold-faint) 22%,
      transparent 65%);
  filter: blur(28px);
  animation: orbPulse 6s ease-in-out infinite;
  pointer-events: none;
}
.orb-stage {
  position: relative;
  width: 240px;
  height: 240px;
  transform-style: preserve-3d;
  animation: orbDrift 14s ease-in-out infinite;
}
.orb-ring {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}
.orb-ring svg { width: 100%; height: 100%; overflow: visible; }
/* 3D tilted rings rotating at different axes */
.orb-ring-1 {
  animation: ringSpinX 30s linear infinite;
  transform: rotateX(72deg);
}
.orb-ring-2 {
  animation: ringSpinY 22s linear infinite reverse;
  transform: rotateY(70deg);
}
.orb-ring-3 {
  animation: ringSpinZ 14s linear infinite;
  transform: rotateZ(0deg);
}
.orb-core {
  position: absolute;
  inset: 30%;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 24px rgba(255, 246, 224, 0.65))
          drop-shadow(0 0 50px var(--gold-soft));
  animation: corePulse 4s ease-in-out infinite;
}
.orb-core svg { width: 100%; height: 100%; }

.orb-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orbit-track {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform-origin: 50% 50%;
}
.orbit-dot {
  position: absolute;
  top: -1px;
  left: calc(50% - 1px);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold), 0 0 12px var(--gold-soft);
  opacity: 0.8;
}

.orb-caption {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  opacity: 0.6;
  text-transform: uppercase;
  font-style: italic;
  white-space: nowrap;
}

/* Slow drift for parallax feel */
@keyframes orbDrift {
  0%, 100% { transform: rotateX(-4deg) rotateY(0deg) translateY(0); }
  50%      { transform: rotateX(4deg)  rotateY(8deg) translateY(-6px); }
}
@keyframes orbPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.06); }
}
@keyframes corePulse {
  0%, 100% { transform: scale(1);    filter: drop-shadow(0 0 18px rgba(255, 246, 224, 0.5))  drop-shadow(0 0 42px var(--gold-soft)); }
  50%      { transform: scale(1.08); filter: drop-shadow(0 0 30px rgba(255, 246, 224, 0.85)) drop-shadow(0 0 60px var(--gold-soft)); }
}
@keyframes ringSpinX {
  from { transform: rotateX(72deg) rotateZ(0deg); }
  to   { transform: rotateX(72deg) rotateZ(360deg); }
}
@keyframes ringSpinY {
  from { transform: rotateY(70deg) rotateZ(0deg); }
  to   { transform: rotateY(70deg) rotateZ(360deg); }
}
@keyframes ringSpinZ {
  from { transform: rotateZ(0deg) rotateX(20deg); }
  to   { transform: rotateZ(360deg) rotateX(20deg); }
}
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes orbitPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.7); }
  50%      { opacity: 1;   transform: scale(1.4); }
}
.portrait-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, var(--gold-faint) 0%, transparent 60%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.portrait-caption {
  text-align: center;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: 0.05em;
}
.caption-sub {
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--gold);
  opacity: 0.7;
}
.about-text { color: var(--ink-soft); }
.about-text .lede {
  font-family: var(--display-font, 'Frank Ruhl Libre', serif);
  font-size: 28px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 300;
  margin: 0 0 28px;
  letter-spacing: 0.01em;
}
.about-text p {
  font-size: 16px;
  line-height: 1.85;
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-weight: 300;
}
.credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 44px 0 0;
  padding: 32px 0 0;
  border-top: 0.5px solid var(--line);
  list-style: none;
}
.credentials li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cred-num {
  font-size: 36px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}
.cred-lbl {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* ── Services ───────────────────────────────────────────────────────────── */
.section-services { background: transparent; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}
.service-card {
  position: relative;
  padding: 44px 32px 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.015);
  border: 0.5px solid var(--line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--gold-faint), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  background: rgba(212, 175, 111, 0.03);
}
.service-card:hover::before { opacity: 0.6; }
.service-featured {
  border-color: var(--gold-soft);
  background: rgba(212, 175, 111, 0.04);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 0 0 0.5px var(--gold-faint);
}
.service-tag {
  position: absolute;
  top: 16px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  background: var(--gold);
  color: var(--bg);
  font-size: 11px;
  letter-spacing: 0.2em;
  border-radius: 999px;
  font-weight: 500;
}
.service-icon {
  margin: 8px auto 24px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-faint);
  border: 0.5px solid var(--gold-soft);
}
.service-title {
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.service-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-faint);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}
.service-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  display: inline-block;
}
.service-price {
  color: var(--gold);
  font-family: var(--display-font, serif);
  font-size: 18px;
}
.service-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 24px;
  font-weight: 300;
}
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: start;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.service-features svg {
  flex-shrink: 0;
  margin-top: 4px;
}
.service-cta {
  margin-top: auto;
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding-top: 18px;
  border-top: 0.5px solid var(--line);
  transition: all 0.2s ease;
}
.service-cta:hover {
  color: var(--ink);
  letter-spacing: 0.14em;
}
.services-note {
  margin-top: 36px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-faint);
  font-style: italic;
}

/* ── Oracle (Card of Day) ───────────────────────────────────────────────── */
.section-oracle {
  position: relative;
}
.section-oracle::before {
  content: '';
  position: absolute;
  inset: -10% 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, var(--gold-faint) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.oracle-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.cards-row {
  display: flex;
  gap: 28px;
  perspective: 1400px;
  flex-wrap: wrap;
  justify-content: center;
}
.tarot-card {
  position: relative;
  width: 180px;
  height: 290px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), opacity 0.5s ease;
}
.tarot-card:disabled { cursor: default; }
.tarot-card:not(:disabled):hover {
  transform: translateY(-10px);
}
.tarot-card:not(:disabled):hover .card-inner {
  box-shadow: 0 30px 60px rgba(0,0,0,0.55), 0 0 0 0.5px var(--gold-soft), 0 0 80px var(--gold-faint);
}
.tarot-card.card-faded {
  opacity: 0.25;
  transform: scale(0.92);
  pointer-events: none;
  filter: blur(1px);
}
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 0.5px var(--gold-faint);
}
.card-picked .card-inner {
  transform: rotateY(180deg) scale(1.05);
}
.card-face {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.card-face-back {
  background:
    radial-gradient(ellipse at top, #1f1740 0%, #0d0a1a 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 0.5px solid var(--gold-soft);
}
.card-face-front {
  transform: rotateY(180deg);
  background:
    radial-gradient(ellipse at top, #271d52 0%, #14102a 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 0.5px solid var(--gold);
}
.card-back-art, .card-face-art {
  width: 100%;
  height: 100%;
  display: block;
}
.card-hint {
  position: absolute;
  inset: auto 0 -32px 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  pointer-events: none;
  transition: color 0.2s ease;
}
.tarot-card:hover .card-hint { color: var(--gold); }

.oracle-reveal {
  max-width: 600px;
  text-align: center;
  padding: 36px 32px;
  border-radius: 12px;
  background: rgba(212, 175, 111, 0.04);
  border: 0.5px solid var(--gold-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.reveal-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0.85;
}
.reveal-title {
  font-size: 36px;
  font-weight: 300;
  margin: 0 0 14px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.reveal-num {
  color: var(--gold);
  font-style: italic;
  opacity: 0.85;
}
.reveal-keys {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 22px;
  font-family: var(--display-font, serif);
}
.reveal-text {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-soft);
  font-weight: 300;
  margin: 0 0 28px;
  font-family: var(--display-font, serif);
  font-style: italic;
}
.oracle-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--ink-faint);
  font-size: 14px;
  font-style: italic;
  font-family: var(--display-font, serif);
}

/* ── Testimonials ───────────────────────────────────────────────────────── */
.voices-stage {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0;
  text-align: center;
}
.quote-mark {
  font-size: 200px;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: -40px;
  inset-inline-end: 0;
  line-height: 1;
  pointer-events: none;
  font-weight: 700;
}
.voice-quote {
  margin: 0;
  padding: 0;
}
.voice-text {
  font-family: var(--display-font, serif);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.6;
  color: var(--ink);
  font-weight: 300;
  font-style: italic;
  margin: 0 0 32px;
  letter-spacing: 0.01em;
}
.voice-cite {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.voice-name {
  font-size: 17px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.voice-city {
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.18em;
}
.voice-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.voice-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0.5px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  font-size: 22px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: grid;
  place-items: center;
  font-family: serif;
}
.voice-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.voice-dots {
  display: flex;
  gap: 8px;
}
.dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0.5px solid var(--gold-soft);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}
.dot-btn.on {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── Contact ────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-card {
  position: relative;
  padding: 32px 36px 28px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 0.5px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}
.contact-card-glow {
  position: absolute;
  top: -50%;
  inset-inline-end: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--gold-faint) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.contact-row {
  position: relative;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--line);
}
.contact-row:first-of-type { padding-top: 4px; }
.contact-row:last-of-type { border-bottom: none; }
.contact-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 8px;
}
.contact-value {
  display: block;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
a.contact-value:hover { color: var(--gold); }
.contact-pending {
  color: var(--ink-faint);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.05em;
}

/* WhatsApp CTA inside contact card */
.whatsapp-cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(37, 211, 102, 0.06));
  border: 0.5px solid rgba(37, 211, 102, 0.4);
  color: var(--ink);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(.2,.7,.2,1);
  overflow: hidden;
}
.whatsapp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 50%, rgba(37, 211, 102, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.whatsapp-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 211, 102, 0.75);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.22);
}
.whatsapp-cta:hover::before { opacity: 1; }
.whatsapp-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 0 0 0.5px rgba(255,255,255,0.2) inset, 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease;
}
.whatsapp-cta:hover .whatsapp-icon {
  transform: scale(1.08) rotate(-6deg);
}
.whatsapp-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.whatsapp-title {
  font-size: 16px;
  color: var(--ink);
  letter-spacing: 0.02em;
  font-weight: 500;
}
.whatsapp-sub {
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}
.whatsapp-arrow {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--gold);
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.whatsapp-cta:hover .whatsapp-arrow {
  opacity: 1;
  transform: translateX(-4px);
}

/* Floating WhatsApp button — always visible */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  inset-inline-start: 28px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow:
    0 8px 24px rgba(37, 211, 102, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.3),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.25);
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08) rotate(-6deg);
  box-shadow:
    0 12px 32px rgba(37, 211, 102, 0.6),
    0 4px 10px rgba(0, 0, 0, 0.35),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.35);
}
.whatsapp-float svg {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
.whatsapp-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.55);
  animation: whatsappPulse 2.2s ease-out infinite;
  pointer-events: none;
}
.whatsapp-float-label {
  position: absolute;
  inset-inline-start: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(13, 10, 26, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 400;
  white-space: nowrap;
  border: 0.5px solid var(--line);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.whatsapp-float:hover .whatsapp-float-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@keyframes whatsappPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (max-width: 720px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 20px;
    inset-inline-start: 20px;
  }
  .whatsapp-float-label { display: none; }
}
.contact-hint {
  margin-top: 6px;
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}
.contact-social {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 0.5px solid var(--line);
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
.social-link:hover { color: var(--gold); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  font-weight: 300;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255, 255, 255, 0.025);
  border: 0.5px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-field textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(212, 175, 111, 0.04);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--ink-faint);
  font-style: italic;
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23d4af6f' d='M0 0h10L5 6z'/></svg>");
  background-repeat: no-repeat;
  background-position: left 18px center;
  padding-inline-start: 40px;
}
.form-fine {
  margin: 4px 0 0;
  font-size: 11px;
  color: var(--ink-faint);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  position: relative;
  padding: 80px 56px 60px;
  border-top: 0.5px solid var(--line);
  text-align: center;
  z-index: 2;
}
.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.footer-tag {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin: 4px 0 14px;
}
.footer-fine {
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.12em;
  margin: 14px 0 0;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .section { padding: 80px 32px; }
  .nav-inner { padding: 0 32px; }
  .nav-links { display: none; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .credentials { grid-template-columns: 1fr; gap: 18px; }
  .hero { padding: 120px 32px 80px; }
  .moon-wrap { left: -5%; top: 5%; transform: scale(0.7); }
  .cards-row { gap: 16px; }
  .tarot-card { width: 130px; height: 210px; }
  .hero-split { padding-inline-start: 32px; }
}
