/* ═══════════════════════════════════════════════
   Psychic Journey Spiritual Shoppe — Lakewood, OH
   Light editorial: ivory, indigo, violet, chakra accents
   ═══════════════════════════════════════════════ */

:root {
  --ivory: #faf8f3;
  --white: #ffffff;
  --indigo: #241d3d;
  --violet: #6d4dae;
  --violet-deep: #55388f;
  --gold: #c9a24b;
  --muted: #6f6885;
  --line: #e8e3d8;
  --head: "Prata", Georgia, serif;
  --body: "Figtree", "Segoe UI", sans-serif;
  --maxw: 1140px;
  --radius: 16px;
  --chakra: linear-gradient(90deg, #d84a44, #e88b34, #e6c22e, #4ba351, #3f7fc1, #5b4bb0, #8d4fb3);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 400;
  background: var(--ivory);
  color: var(--indigo);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1 { font-size: clamp(2.3rem, 5.2vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: .9rem; }
h3 { font-size: 1.3rem; }

a { color: var(--violet); }
a:hover { color: var(--violet-deep); }

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

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

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: .9rem;
}

.chakra-strip {
  width: 120px;
  height: 5px;
  border-radius: 4px;
  background: var(--chakra);
  margin: .3rem 0 1.2rem;
}
.chakra-strip.center-strip { margin: .3rem auto 1.2rem; }
.chakra-strip.full { width: 100%; height: 6px; border-radius: 0; margin: 0; }

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

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

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: .04em;
  font-size: .92rem;
  padding: .9em 1.8em;
  border-radius: 100px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  white-space: nowrap;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-lg { font-size: .98rem; padding: 1em 2.1em; }

.btn-violet {
  background: linear-gradient(120deg, var(--violet), var(--violet-deep));
  color: #fff;
  box-shadow: 0 8px 26px rgba(109, 77, 174, .35);
}
.btn-violet:hover { color: #fff; box-shadow: 0 12px 34px rgba(109, 77, 174, .5); }

.btn-line {
  border: 2px solid rgba(36, 29, 61, .2);
  color: var(--indigo);
  background: var(--white);
}
.btn-line:hover { border-color: var(--violet); color: var(--violet-deep); }

.btn-gold {
  background: linear-gradient(160deg, #e6cf95, var(--gold));
  color: #241303;
  box-shadow: 0 8px 26px rgba(201, 162, 75, .4);
}

/* ─── 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(250, 248, 243, .96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 22px rgba(36, 29, 61, .08);
  padding: 9px 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-dot {
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--chakra);
  flex-shrink: 0;
}
.brand-text { font-family: var(--head); font-size: 1.02rem; color: var(--indigo); line-height: 1.2; }
.brand-text em { font-style: italic; color: var(--violet); }

.nav-links { display: flex; gap: 22px; }
.nav-links a {
  color: var(--indigo);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  opacity: .8;
}
.nav-links a:hover { opacity: 1; color: var(--violet); }

.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(--indigo); transition: .3s; display: block; }

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 140px 0 90px;
  background:
    radial-gradient(ellipse 55% 50% at 88% 15%, rgba(109, 77, 174, .12) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 5% 90%, rgba(201, 162, 75, .12) 0%, transparent 55%),
    var(--ivory);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.9vw, 1.22rem);
  color: var(--muted);
  max-width: 520px;
  margin: 1.2rem 0 2rem;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note {
  margin-top: 1.3rem;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-photo {
  border-radius: 200px 200px var(--radius) var(--radius);
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: 0 30px 70px rgba(36, 29, 61, .25);
  max-width: 420px;
  justify-self: center;
}
.hero-photo img { display: block; width: 100%; height: auto; }

/* ─── Readings ─── */
.read-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 2.8rem;
}
.read-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--violet);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.read-card:nth-child(2) { border-top-color: var(--gold); }
.read-card:nth-child(3) { border-top-color: #3f7fc1; }
.read-card:nth-child(4) { border-top-color: #d84a44; }
.read-card:hover { transform: translateY(-5px); box-shadow: 0 20px 46px rgba(36, 29, 61, .12); }
.read-card h3 { margin-bottom: .7rem; }
.read-card p { color: var(--muted); font-size: .98rem; }

/* ─── Healing ─── */
.healing { background: var(--white); }
.healing p { color: var(--muted); margin-bottom: 1rem; }
.healing p em { color: var(--violet); font-style: italic; font-weight: 600; }

.pill-cloud {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.3rem;
}
.pill-cloud li {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: .4em 1.1em;
  font-weight: 600;
  font-size: .88rem;
}

.photo-stack { position: relative; display: grid; justify-items: center; }
.ps-main {
  border-radius: var(--radius);
  overflow: hidden;
  border: 8px solid var(--ivory);
  box-shadow: 0 26px 60px rgba(36, 29, 61, .2);
  max-width: 380px;
}
.ps-main img { display: block; width: 100%; height: auto; }
.ps-small {
  position: absolute;
  bottom: -30px;
  right: clamp(0px, 4vw, 30px);
  width: 180px;
  border-radius: 12px;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 18px 44px rgba(36, 29, 61, .25);
  transform: rotate(3deg);
}
.ps-small img { display: block; width: 100%; height: auto; }

/* ─── Shoppe gallery ─── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(36, 29, 61, .1);
  aspect-ratio: 3 / 3.6;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery figure:hover img { transform: scale(1.05); }

/* ─── Band ─── */
.band {
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(255, 255, 255, .08) 0%, transparent 60%),
    linear-gradient(160deg, var(--violet-deep) 0%, var(--indigo) 100%);
  color: #f3effa;
  padding: clamp(56px, 8vw, 88px) 0;
}
.band-quote {
  font-family: var(--head);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.4;
  margin-bottom: 1.6rem;
}

/* ─── 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; }
.storefront {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(36, 29, 61, .16);
  max-height: 380px;
}
.storefront img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(36, 29, 61, .16);
  aspect-ratio: 16 / 8;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ─── Book page ─── */
.book-page { background: var(--ivory); }
.book-hero { padding-top: 140px; }
.book-title { margin-bottom: .6rem; }
.book-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(36, 29, 61, .12);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  gap: 22px;
  text-align: left;
}
.bf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.bf-field { display: grid; gap: 7px; border: 0; }
.bf-field > span, .bf-field legend {
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .04em;
  margin-bottom: 2px;
}
.bf-field input, .bf-field select, .bf-field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--indigo);
  background: var(--ivory);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: .8em 1em;
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.bf-field input:focus, .bf-field select:focus, .bf-field textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(109, 77, 174, .15);
}
.bf-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.bf-chip { position: relative; }
.bf-chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.bf-chip span {
  display: inline-block;
  border: 1.5px solid var(--line);
  background: var(--ivory);
  border-radius: 100px;
  padding: .5em 1.2em;
  font-weight: 600;
  font-size: .9rem;
  transition: all .2s ease;
}
.bf-chip input:checked + span {
  background: var(--violet);
  border-color: var(--violet);
  color: #fff;
}
.bf-chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(109, 77, 174, .3); }
.bf-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.bf-note { color: var(--muted); font-size: .85rem; }

/* ─── Footer ─── */
.footer { background: var(--indigo); color: #cfc8e2; }
.footer-inner { padding: 44px 24px 96px; text-align: center; }
.footer-brand {
  font-family: var(--head);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: .7rem;
}
.footer-brand em { font-style: italic; color: #b9a6e8; }
.footer-meta { font-size: .95rem; margin-bottom: 1.2rem; }
.footer-meta a { color: #d9c98f; }
.footer-legal {
  max-width: 760px;
  margin: 0 auto .8rem;
  font-size: .78rem;
  opacity: .6;
  line-height: 1.6;
}
.footer-copy { font-size: .82rem; opacity: .5; margin-top: 1rem; }

/* ─── Mobile call bar ─── */
.mobile-call {
  display: none;
  position: fixed;
  inset: auto 12px 12px 12px;
  z-index: 90;
  background: linear-gradient(120deg, var(--violet), var(--violet-deep));
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 15px;
  border-radius: 100px;
  box-shadow: 0 10px 32px rgba(36, 29, 61, .4);
  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; }
  html { scroll-behavior: auto; }
}

/* ─── Responsive ─── */
@media (max-width: 940px) {
  .grid-2, .hero-grid { grid-template-columns: 1fr; }
  .read-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery figure:last-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
  .hero-photo { max-width: 340px; }
  .photo-stack { margin-top: 2.4rem; }
}

@media (max-width: 720px) {
  .nav-links, .nav-call { display: none; }
  .nav-toggle { display: flex; }
  .nav { background: rgba(250, 248, 243, .96); }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--ivory);
    padding: 20px 24px 26px;
    gap: 18px;
    box-shadow: 0 16px 30px rgba(36, 29, 61, .1);
  }
  .bf-row { grid-template-columns: 1fr; }
  .mobile-call { display: inline-flex; }
  .footer-inner { padding-bottom: 112px; }
  .hero, .book-hero { padding-top: 116px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery figure:last-child { aspect-ratio: 3 / 3.6; }
}
