/* ═══════════════════════════════════════════════
   Psychic Readings by Michael — Huntsville, AL
   Neon noir: near-black violet, pink/violet/cyan glow
   ═══════════════════════════════════════════════ */

:root {
  --bg: #0c0714;
  --bg-2: #140b22;
  --panel: #1a1030;
  --pink: #ff3ec8;
  --violet: #a855f7;
  --cyan: #22d3ee;
  --blue: #6366f1;
  --text: #f2ecfa;
  --muted: #a99cc4;
  --head: "Syne", "Segoe UI", sans-serif;
  --body: "Outfit", "Segoe UI", sans-serif;
  --maxw: 1120px;
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, iframe { max-width: 100%; }

h1, h2, h3 {
  font-family: var(--head);
  font-weight: 700;
  line-height: 1.12;
}

h2 { font-size: clamp(1.8rem, 3.8vw, 2.7rem); margin-bottom: 1rem; }
h3 { font-size: 1.22rem; }

.grad-text {
  background: linear-gradient(100deg, var(--pink), var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 780px; }
.center { text-align: center; }

.section { padding: clamp(68px, 9vw, 112px) 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--head);
  font-size: .74rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid rgba(255, 62, 200, .4);
  border-radius: 100px;
  padding: .35em 1.2em;
  margin-bottom: 1.1rem;
  font-weight: 600;
  box-shadow: 0 0 18px rgba(255, 62, 200, .18), inset 0 0 12px rgba(255, 62, 200, .08);
}

.section-sub {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 2.8rem;
  font-size: 1.05rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--head);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .9em 1.8em;
  border-radius: 100px;
  transition: transform .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-lg { font-size: .92rem; padding: 1em 2em; }
.btn svg { width: 1em; height: 1em; }

.btn-neon {
  background: linear-gradient(100deg, var(--pink), var(--violet));
  color: #fff;
  box-shadow: 0 0 24px rgba(255, 62, 200, .45), 0 4px 18px rgba(0,0,0,.4);
}
.btn-neon:hover { box-shadow: 0 0 38px rgba(255, 62, 200, .65), 0 6px 22px rgba(0,0,0,.5); }

.btn-ghost {
  border: 1px solid rgba(34, 211, 238, .5);
  color: var(--cyan);
  box-shadow: 0 0 16px rgba(34, 211, 238, .15), inset 0 0 10px rgba(34, 211, 238, .06);
}
.btn-ghost:hover { background: rgba(34, 211, 238, .08); }

/* ─── Nav ─── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.scrolled {
  background: rgba(12, 7, 20, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(168, 85, 247, .25), 0 8px 30px rgba(0,0,0,.5);
  padding: 8px 0;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .5em;
  margin-right: auto;
  text-decoration: none;
}
.brand-orb { font-size: 1.4rem; filter: drop-shadow(0 0 8px rgba(168, 85, 247, .8)); }
.brand-text {
  font-family: var(--head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}
.brand-text em { font-style: normal; color: var(--pink); text-shadow: 0 0 12px rgba(255, 62, 200, .6); }

.nav-links { display: flex; gap: 24px; }
.nav-links a {
  color: var(--text);
  font-family: var(--head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .8;
}
.nav-links a:hover { opacity: 1; color: var(--cyan); text-decoration: none; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: .3s; display: block; }

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 150px 0 90px;
  background:
    radial-gradient(ellipse 60% 50% at 75% 30%, rgba(168, 85, 247, .16) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(255, 62, 200, .1) 0%, transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero-haze {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1.4px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 0%, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.neon-tag {
  font-family: var(--head);
  font-size: .78rem;
  letter-spacing: .34em;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(34, 211, 238, .7);
  margin-bottom: 1.2rem;
}
.neon-title { font-size: clamp(3.2rem, 8vw, 6rem); text-transform: uppercase; letter-spacing: .02em; }
.neon-line { display: block; }
.n-blue {
  color: #cfe4ff;
  text-shadow: 0 0 8px #7aa8ff, 0 0 24px #4f6cff, 0 0 60px #4f46e5;
}
.n-pink {
  color: #ffd7f2;
  text-shadow: 0 0 8px #ff7ad9, 0 0 26px var(--pink), 0 0 70px #d916a8;
}
.flicker { animation: flicker 4.5s linear infinite; }
@keyframes flicker {
  0%, 6%, 8%, 100% { opacity: 1; }
  7% { opacity: .55; }
  38%, 40.5% { opacity: 1; }
  39.5% { opacity: .4; }
  40% { opacity: .85; }
}
.hero-script {
  font-style: italic;
  color: var(--violet);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  letter-spacing: .06em;
  margin: 1rem 0 1.2rem;
  text-shadow: 0 0 16px rgba(168, 85, 247, .5);
}
.hero-sub {
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2rem;
  font-size: 1.04rem;
}
.hero-sub strong { color: var(--text); font-weight: 500; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 62, 200, .4);
  box-shadow:
    0 0 40px rgba(255, 62, 200, .25),
    0 0 90px rgba(168, 85, 247, .18),
    0 24px 60px rgba(0,0,0,.6);
  transform: rotate(1.6deg);
}
.hero-photo img { display: block; width: 100%; height: auto; }
.hero-photo figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 18px 12px;
  font-size: .85rem;
  color: var(--muted);
  background: linear-gradient(transparent, rgba(12, 7, 20, .92));
}

/* ─── Ticker ─── */
.ticker {
  background: var(--panel);
  border-top: 1px solid rgba(168, 85, 247, .35);
  border-bottom: 1px solid rgba(168, 85, 247, .35);
  overflow: hidden;
  padding: 11px 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  font-family: var(--head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .28em;
  color: var(--violet);
  text-shadow: 0 0 10px rgba(168, 85, 247, .55);
  animation: scroll 30s linear infinite;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ─── Cards ─── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 3rem;
}
.card {
  background: linear-gradient(160deg, rgba(255,255,255,.03), rgba(255,255,255,.008));
  border: 1px solid rgba(168, 85, 247, .22);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-6px); }
.c-pink:hover { border-color: rgba(255, 62, 200, .6); box-shadow: 0 0 34px rgba(255, 62, 200, .22), 0 16px 40px rgba(0,0,0,.4); }
.c-violet:hover { border-color: rgba(168, 85, 247, .65); box-shadow: 0 0 34px rgba(168, 85, 247, .24), 0 16px 40px rgba(0,0,0,.4); }
.c-cyan:hover { border-color: rgba(34, 211, 238, .6); box-shadow: 0 0 34px rgba(34, 211, 238, .2), 0 16px 40px rgba(0,0,0,.4); }
.card-glyph {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  font-size: 1.6rem;
  border-radius: 50%;
  background: rgba(168, 85, 247, .12);
  border: 1px solid rgba(168, 85, 247, .35);
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 0 6px rgba(168, 85, 247, .5));
}
.card h3 { margin-bottom: .5rem; color: var(--text); }
.card p { color: var(--muted); font-size: .96rem; }

/* ─── About / Shop photos ─── */
.about { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.shop { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.about p, .shop p { color: var(--muted); }

.photo-glow {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, .35);
  box-shadow: 0 0 36px rgba(34, 211, 238, .16), 0 24px 60px rgba(0,0,0,.55);
  transform: rotate(-1.4deg);
  max-height: 560px;
}
.shop .photo-glow { transform: rotate(1.4deg); border-color: rgba(255, 62, 200, .35); box-shadow: 0 0 36px rgba(255, 62, 200, .16), 0 24px 60px rgba(0,0,0,.55); }
.photo-glow img { display: block; width: 100%; height: 100%; object-fit: cover; }

.checks { list-style: none; margin-top: 1.4rem; }
.checks li {
  padding-left: 1.9em;
  position: relative;
  margin-bottom: .7em;
  color: var(--text);
}
.checks li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--pink);
  text-shadow: 0 0 8px rgba(255, 62, 200, .8);
}

/* ─── Reviews ─── */
.reviews {
  border-top: 1px solid rgba(168, 85, 247, .2);
  border-bottom: 1px solid rgba(168, 85, 247, .2);
  background: var(--bg-2);
}
.review-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 2.2rem;
}
.review {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(34, 211, 238, .22);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.review:nth-child(2) { border-color: rgba(255, 62, 200, .28); }
.review:nth-child(3) { border-color: rgba(168, 85, 247, .3); }
.review-stars {
  color: #ffd76a;
  letter-spacing: .22em;
  margin-bottom: .7rem;
  text-shadow: 0 0 10px rgba(255, 215, 106, .5);
}
.review p {
  font-size: 1.02rem;
  color: var(--text);
  font-style: italic;
}
.review-cta { color: var(--muted); }
.review-cta strong { color: #ffd76a; text-shadow: 0 0 10px rgba(255, 215, 106, .4); }

/* ─── FAQ ─── */
.faq-item {
  border: 1px solid rgba(168, 85, 247, .25);
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: rgba(255,255,255,.02);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 52px 19px 22px;
  font-family: var(--head);
  font-size: 1.02rem;
  font-weight: 600;
  position: relative;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink);
  font-size: 1.5rem;
  font-weight: 300;
  text-shadow: 0 0 10px rgba(255, 62, 200, .6);
  transition: transform .3s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 22px 18px; color: var(--muted); }

/* ─── Visit ─── */
.visit { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.visit p { color: var(--muted); }
.contact-list { list-style: none; margin: 1.8rem 0 2.2rem; }
.contact-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 1.1rem;
  align-items: flex-start;
}
.contact-list .ci { font-size: 1.2rem; line-height: 1.6; }
.contact-list a { font-size: 1.03rem; }
.visit-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, .35);
  box-shadow: 0 0 36px rgba(168, 85, 247, .18), 0 20px 60px rgba(0,0,0,.5);
  aspect-ratio: 4 / 3.2;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(.9) hue-rotate(200deg) saturate(.7) contrast(.95);
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid rgba(168, 85, 247, .25);
  padding: 54px 0 90px;
  text-align: center;
  background: var(--bg-2);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  margin-bottom: .8rem;
}
.footer-tag { color: var(--muted); font-size: .95rem; margin-bottom: .8rem; font-style: italic; }
.footer-meta { color: var(--muted); font-size: .9rem; margin-bottom: 1.3rem; }
.footer-copy { color: rgba(169, 156, 196, .45); font-size: .82rem; }

/* ─── Mobile call bar ─── */
.mobile-call {
  display: none;
  position: fixed;
  inset: auto 12px 12px 12px;
  z-index: 90;
  background: linear-gradient(100deg, var(--pink), var(--violet));
  color: #fff;
  font-family: var(--head);
  font-weight: 600;
  font-size: .9rem;
  text-align: center;
  padding: 15px;
  border-radius: 100px;
  box-shadow: 0 0 30px rgba(255, 62, 200, .5), 0 8px 24px rgba(0,0,0,.5);
  align-items: center;
  justify-content: center;
  gap: .5em;
  text-decoration: none;
}
.mobile-call svg { width: 1.1em; height: 1.1em; }
.mobile-call:hover { text-decoration: none; }

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  translate: 0 24px;
  transition: opacity .8s ease, translate .8s ease;
}
.reveal.in { opacity: 1; translate: 0 0; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; translate: none; transition: none; }
  .flicker { animation: none; }
  .ticker-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .grid-2, .hero-grid { grid-template-columns: 1fr; }
  .cards, .review-row { grid-template-columns: 1fr 1fr; }
  .hero-photo { max-width: 420px; margin: 0 auto; }
  .about .photo-glow { order: -1; }
}

@media (max-width: 720px) {
  .nav-links, .nav-call { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(12, 7, 20, .97);
    backdrop-filter: blur(12px);
    padding: 20px 24px 26px;
    gap: 18px;
    border-bottom: 1px solid rgba(168, 85, 247, .3);
  }
  .cards, .review-row { grid-template-columns: 1fr; }
  .mobile-call { display: inline-flex; }
  .footer { padding-bottom: 110px; }
  .hero { padding-top: 125px; }
}
