/* ═══════════════════════════════════════════════
   The Psychic Studio — Grand Rapids, MI
   Neon studio: violet-black, magenta/violet/blue glow
   ═══════════════════════════════════════════════ */

:root {
  --bg: #150b21;
  --bg-2: #1d1030;
  --panel: #241540;
  --magenta: #ff4fd8;
  --violet: #8b5cf6;
  --blue: #4f8dff;
  --candle: #ffb054;
  --text: #f4eefc;
  --muted: #b3a6cc;
  --head: "Unbounded", "Segoe UI", sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  --maxw: 1120px;
  --radius: 18px;
  --grad: linear-gradient(100deg, var(--magenta), var(--violet), var(--blue));
}

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

html { scroll-behavior: smooth; }

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

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

h1, h2, h3 {
  font-family: var(--head);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.2rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: .9rem; }
h3 { font-size: 1.08rem; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

a { color: var(--magenta); }

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

.section { padding: clamp(64px, 9vw, 104px) 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--head);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.6rem;
  font-size: 1.03rem;
}

.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: 500;
  letter-spacing: .04em;
  font-size: .82rem;
  padding: .95em 1.8em;
  border-radius: 100px;
  transition: transform .22s ease, box-shadow .22s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-lg { font-size: .88rem; padding: 1.05em 2.1em; }

.btn-glow {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 0 26px rgba(255, 79, 216, .4), 0 8px 24px rgba(0, 0, 0, .4);
}
.btn-glow:hover { color: #fff; box-shadow: 0 0 40px rgba(255, 79, 216, .6), 0 10px 30px rgba(0, 0, 0, .5); }

.btn-outline {
  border: 1.5px solid rgba(139, 92, 246, .6);
  color: var(--text);
}
.btn-outline:hover { background: rgba(139, 92, 246, .12); }

/* ─── Nav ─── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 13px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.scrolled {
  background: rgba(21, 11, 33, .95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255, 79, 216, .3), 0 10px 30px rgba(0, 0, 0, .4);
  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: .55em; margin-right: auto; text-decoration: none; }
.brand-orb {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(255, 79, 216, .8);
}
.brand-text { font-family: var(--head); font-weight: 600; font-size: .98rem; color: var(--text); }
.brand-text em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-links { display: flex; gap: 22px; }
.nav-links a {
  color: var(--text);
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  opacity: .85;
}
.nav-links a:hover { opacity: 1; color: var(--magenta); }

.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: 140px 0 80px;
  background:
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(255, 79, 216, .16) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 10% 85%, rgba(79, 141, 255, .14) 0%, transparent 55%),
    var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(36px, 5vw, 60px);
  align-items: center;
}
.pill {
  display: inline-block;
  background: rgba(255, 176, 84, .1);
  border: 1px solid rgba(255, 176, 84, .45);
  color: var(--candle);
  border-radius: 100px;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5em 1.3em;
  margin-bottom: 1.3rem;
}
.hero-sub {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.9vw, 1.18rem);
  max-width: 520px;
  margin: 1.2rem 0 2rem;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note {
  margin-top: 1.4rem;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
}
.hero-photo {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
  box-shadow: 0 0 50px rgba(139, 92, 246, .35), 0 30px 70px rgba(0, 0, 0, .55);
  max-width: 400px;
  justify-self: center;
  max-height: 560px;
}
.hero-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.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(21, 11, 33, .95));
}

/* ─── Ticker ─── */
.ticker {
  background: var(--grad);
  color: #fff;
  overflow: hidden;
  padding: 10px 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  font-family: var(--head);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .26em;
  animation: scroll 28s linear infinite;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ─── Cards ─── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(139, 92, 246, .3);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--magenta);
  box-shadow: 0 0 30px rgba(255, 79, 216, .18), 0 18px 44px rgba(0, 0, 0, .4);
}
.card-glyph {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  font-size: 1.5rem;
  border-radius: 14px;
  margin-bottom: 1rem;
}
.g1 { background: rgba(255, 79, 216, .15); box-shadow: inset 0 0 0 1px rgba(255, 79, 216, .4); }
.g2 { background: rgba(139, 92, 246, .15); box-shadow: inset 0 0 0 1px rgba(139, 92, 246, .45); }
.g3 { background: rgba(79, 141, 255, .15); box-shadow: inset 0 0 0 1px rgba(79, 141, 255, .45); }
.g4 { background: rgba(255, 176, 84, .12); box-shadow: inset 0 0 0 1px rgba(255, 176, 84, .4); }
.g5 { background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25); }
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--muted); font-size: .94rem; }
.card-late {
  background: linear-gradient(150deg, rgba(255, 79, 216, .14), rgba(79, 141, 255, .1));
  border-color: rgba(255, 176, 84, .5);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: .6rem;
}

/* ─── Love band ─── */
.love {
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(255, 79, 216, .14) 0%, transparent 60%),
    var(--bg-2);
  padding: clamp(60px, 8vw, 92px) 0;
  border-top: 1px solid rgba(255, 79, 216, .25);
  border-bottom: 1px solid rgba(255, 79, 216, .25);
}
.love-sub { color: var(--muted); max-width: 540px; margin: 0 auto 1.8rem; }

/* ─── Studio ─── */
.studio-photo {
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
  box-shadow: 0 0 40px rgba(79, 141, 255, .25), 0 26px 60px rgba(0, 0, 0, .5);
  max-height: 520px;
}
.studio-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.studio p { color: var(--muted); }
.review {
  background: rgba(255, 255, 255, .04);
  border-left: 3px solid var(--magenta);
  border-radius: 12px;
  padding: 20px 22px;
  margin: 1.2rem 0 1rem;
}
.review-stars { color: var(--candle); letter-spacing: .22em; margin-bottom: .5rem; }
.review p { font-size: 1.08rem; color: var(--text); font-style: italic; margin-bottom: .5rem; }
.review cite { color: var(--muted); font-style: normal; font-size: .86rem; }
.rating-note { font-size: .92rem; }
.rating-note a { color: var(--blue); }

/* ─── Visit ─── */
.contact-list { list-style: none; margin: 1.4rem 0 2rem; }
.contact-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 1.05rem;
  align-items: flex-start;
}
.contact-list .ci { font-size: 1.15rem; line-height: 1.7; }
.visit-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.visit-media { display: grid; gap: 20px; }
.ext-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, .35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
  max-height: 300px;
}
.ext-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, .35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
  aspect-ratio: 16 / 8;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(.88) hue-rotate(210deg) saturate(.75) contrast(.95);
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid rgba(255, 79, 216, .25);
  background: var(--bg-2);
  color: var(--muted);
}
.footer-inner { padding: 44px 24px 96px; }
.footer-brand {
  font-family: var(--head);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: .6rem;
}
.footer-brand em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer-meta { font-size: .94rem; margin-bottom: 1rem; }
.footer-meta a { color: var(--magenta); }
.footer-copy { font-size: .82rem; opacity: .55; }

/* ─── Mobile call bar ─── */
.mobile-call {
  display: none;
  position: fixed;
  inset: auto 12px 12px 12px;
  z-index: 90;
  background: var(--grad);
  color: #fff;
  font-family: var(--head);
  font-weight: 500;
  font-size: .82rem;
  text-align: center;
  padding: 15px;
  border-radius: 100px;
  box-shadow: 0 0 30px rgba(255, 79, 216, .45), 0 10px 30px rgba(0, 0, 0, .5);
  align-items: center;
  justify-content: center;
  gap: .5em;
  text-decoration: none;
}
.mobile-call:hover { text-decoration: none; color: #fff; }

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

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

/* ─── Responsive ─── */
@media (max-width: 940px) {
  .grid-2, .hero-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .hero-photo { max-width: 340px; }
  .studio-photo { max-width: 440px; margin: 0 auto; }
}

@media (max-width: 700px) {
  .nav-links, .nav-call { display: none; }
  .nav-toggle { display: flex; }
  .nav { background: rgba(21, 11, 33, .95); }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-2);
    padding: 20px 24px 26px;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 79, 216, .35);
  }
  .cards { grid-template-columns: 1fr; }
  .mobile-call { display: inline-flex; }
  .footer-inner { padding-bottom: 112px; }
  .hero { padding-top: 118px; }
}
