/* ═══════════════════════════════════════════════
   Amazing Psychic Sue — Sue Wiebe
   Calm lavender: white, soft lilac, plum, Lora
   ═══════════════════════════════════════════════ */

:root {
  --white: #ffffff;
  --lilac: #f2eef9;
  --lilac-2: #e7e0f4;
  --plum: #5b4a9e;
  --plum-deep: #463680;
  --violet-vivid: #6a48c9;
  --ink: #322b4a;
  --muted: #6f6a85;
  --gold: #d3a94e;
  --head: "Lora", Georgia, serif;
  --body: "Nunito Sans", "Segoe UI", sans-serif;
  --maxw: 1120px;
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 400;
  background: var(--white);
  color: var(--ink);
  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: 500;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h1 em, h2 em { font-style: italic; color: var(--plum); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: .9rem; }
h3 { font-size: 1.2rem; }

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

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

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

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

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

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

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: .03em;
  font-size: .95rem;
  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: 1rem; padding: 1em 2.1em; }

.btn-plum {
  background: linear-gradient(130deg, var(--violet-vivid), var(--plum-deep));
  color: #fff;
  box-shadow: 0 8px 26px rgba(91, 74, 158, .35);
}
.btn-plum:hover { color: #fff; box-shadow: 0 12px 34px rgba(91, 74, 158, .5); }

.btn-line {
  border: 2px solid rgba(91, 74, 158, .3);
  color: var(--plum);
  background: var(--white);
}
.btn-line:hover { border-color: var(--plum); }

.btn-light {
  background: #fff;
  color: var(--plum-deep);
  box-shadow: 0 8px 26px rgba(0, 0, 0, .2);
}
.btn-light:hover { color: var(--plum); }

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, .6);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }

/* ─── 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(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 22px rgba(50, 43, 74, .1);
  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: .5em; margin-right: auto; text-decoration: none; }
.brand-heart { font-size: 1.2rem; }
.brand-text { font-family: var(--head); font-weight: 600; font-size: 1.15rem; color: var(--ink); }
.brand-text em { font-style: italic; color: var(--plum); }

.nav-links { display: flex; gap: 24px; }
.nav-links a {
  color: var(--ink);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  opacity: .8;
}
.nav-links a:hover { opacity: 1; color: var(--plum); }

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

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 140px 0 90px;
  background:
    radial-gradient(ellipse 55% 50% at 90% 12%, rgba(106, 72, 201, .1) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 4% 92%, rgba(211, 169, 78, .1) 0%, transparent 55%),
    linear-gradient(175deg, var(--lilac) 0%, var(--white) 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
.hero-sub {
  font-size: clamp(1.03rem, 1.9vw, 1.2rem);
  color: var(--muted);
  max-width: 520px;
  margin: 1.2rem 0 2rem;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.center-cta { justify-content: center; }
.hero-note {
  margin-top: 1.4rem;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--plum);
  opacity: .85;
}
.hero-photo {
  border-radius: 50% 50% var(--radius) var(--radius);
  overflow: hidden;
  border: 10px solid #fff;
  box-shadow: 0 30px 70px rgba(50, 43, 74, .25);
  max-width: 400px;
  justify-self: center;
}
.hero-photo img { display: block; width: 100%; height: auto; }

/* ─── About ─── */
.about { background: var(--white); }
.about p { color: var(--muted); margin-bottom: 1.1rem; font-size: 1.05rem; }
.badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}
.badges span {
  background: var(--lilac);
  border: 1px solid var(--lilac-2);
  border-radius: 100px;
  padding: .5em 1.2em;
  font-weight: 700;
  font-size: .9rem;
}

/* ─── How ─── */
.how { background: linear-gradient(180deg, var(--lilac) 0%, var(--white) 100%); }
.how-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 24px 56px rgba(50, 43, 74, .18);
}
.how-photo img { display: block; width: 100%; height: auto; }
.steps {
  list-style: none;
  counter-reset: step;
  margin-top: .6rem;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 1.1em 3.2em;
  color: var(--muted);
}
.steps li strong { color: var(--ink); }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: .1em;
  width: 2.1em; height: 2.1em;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--violet-vivid), var(--plum-deep));
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: .95em;
}
.tip {
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--muted);
  box-shadow: 0 8px 24px rgba(50, 43, 74, .08);
}

/* ─── Pricing ─── */
.price-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 2.2rem auto 1.4rem;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--lilac-2);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  display: grid;
  gap: .5rem;
  justify-items: center;
  align-content: start;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-5px); box-shadow: 0 20px 46px rgba(50, 43, 74, .14); }
.price-card.featured {
  border: 2px solid var(--plum);
  box-shadow: 0 20px 50px rgba(91, 74, 158, .18);
  position: relative;
}
.pc-tag {
  position: absolute;
  top: -13px;
  background: linear-gradient(130deg, var(--violet-vivid), var(--plum-deep));
  color: #fff;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: .35em 1.2em;
}
.pc-time { font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: .85rem; color: var(--muted); }
.pc-price { font-family: var(--head); font-size: 2.6rem; color: var(--ink); }
.pc-desc { color: var(--muted); font-size: .93rem; min-height: 3em; }
.pay-note { color: var(--muted); font-size: .92rem; }

/* ─── Testimonials ─── */
.words { background: var(--lilac); }
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 1.8rem;
}
.quote {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 26px 22px;
  box-shadow: 0 12px 32px rgba(50, 43, 74, .08);
}
.quote.wide { grid-column: 1 / -1; }
.quote p {
  font-family: var(--head);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: .8rem;
}
.quote cite { color: var(--muted); font-style: normal; font-weight: 700; font-size: .88rem; }
.rating-line { color: var(--muted); }

/* ─── CTA ─── */
.cta {
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(255, 255, 255, .1) 0%, transparent 60%),
    linear-gradient(140deg, var(--violet-vivid), var(--plum-deep));
  color: #fff;
  padding: clamp(60px, 8vw, 92px) 0;
}
.cta h2 { color: #fff; }
.cta h2 em { color: #d9c9ff; }
.cta-sub { color: #d9d0f2; margin-bottom: 1.8rem; }

/* ─── Book page ─── */
.book-hero { padding-top: 140px; }
.book-title { margin-bottom: .6rem; }
.book-form {
  background: #fff;
  border: 1px solid var(--lilac-2);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(50, 43, 74, .12);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  gap: 22px;
  text-align: left;
  margin-top: 1rem;
}
.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: 800;
  font-size: .88rem;
  letter-spacing: .03em;
  margin-bottom: 2px;
}
.bf-field input, .bf-field select, .bf-field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--lilac);
  border: 1.5px solid var(--lilac-2);
  border-radius: 12px;
  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(--plum);
  box-shadow: 0 0 0 3px rgba(91, 74, 158, .15);
  background: #fff;
}
.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(--lilac-2);
  background: var(--lilac);
  border-radius: 100px;
  padding: .55em 1.3em;
  font-weight: 700;
  font-size: .92rem;
  transition: all .2s ease;
}
.bf-chip input:checked + span {
  background: linear-gradient(130deg, var(--violet-vivid), var(--plum-deep));
  border-color: var(--plum-deep);
  color: #fff;
}
.bf-chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(91, 74, 158, .3); }
.bf-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.bf-note { color: var(--muted); font-size: .86rem; }

/* ─── Footer ─── */
.footer { background: #2c2544; color: #c6bede; }
.footer-inner { padding: 44px 24px 96px; }
.footer-brand {
  font-family: var(--head);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: .6rem;
}
.footer-brand em { font-style: italic; color: #cbb8f5; }
.footer-meta { font-size: .95rem; margin-bottom: 1rem; }
.footer-meta a { color: #cbb8f5; }
.footer-copy { font-size: .82rem; opacity: .5; }

/* ─── Mobile call bar ─── */
.mobile-call {
  display: none;
  position: fixed;
  inset: auto 12px 12px 12px;
  z-index: 90;
  background: linear-gradient(130deg, var(--violet-vivid), var(--plum-deep));
  color: #fff;
  font-weight: 800;
  text-align: center;
  padding: 15px;
  border-radius: 100px;
  box-shadow: 0 10px 32px rgba(50, 43, 74, .35);
  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; }
  .hero-photo { max-width: 330px; }
  .price-row { grid-template-columns: 1fr; max-width: 460px; }
  .quote-grid { grid-template-columns: 1fr; }
  .how-photo { max-width: 460px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .nav-links, .nav-call { display: none; }
  .nav-toggle { display: flex; }
  .nav { background: rgba(255, 255, 255, .96); }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    padding: 20px 24px 26px;
    gap: 18px;
    box-shadow: 0 16px 30px rgba(50, 43, 74, .12);
  }
  .bf-row { grid-template-columns: 1fr; }
  .mobile-call { display: inline-flex; }
  .footer-inner { padding-bottom: 112px; }
  .hero, .book-hero { padding-top: 116px; }
}
