/* ═══════════════════════════════════════════════
   Lodi Psychic by Amanda — Variation 3
   Light celestial: ivory, lilac, gold, Fraunces
   ═══════════════════════════════════════════════ */

:root {
  --ivory: #faf6ef;
  --ivory-2: #f3ecdf;
  --white: #ffffff;
  --plum: #43265c;
  --plum-deep: #2f1a42;
  --lilac: #9f7fd1;
  --lilac-soft: #e6dcf5;
  --gold: #c99b3f;
  --gold-soft: #e9cf8e;
  --muted: #7a6b8a;
  --head: "Fraunces", Georgia, serif;
  --body: "Karla", "Segoe UI", sans-serif;
  --maxw: 1120px;
  --radius: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 1.02rem;
  background: var(--ivory);
  color: var(--plum-deep);
  line-height: 1.7;
  -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.12;
}

h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 1rem; letter-spacing: -.01em; }
h2 em { font-style: italic; color: var(--lilac); }
h3 { font-size: 1.25rem; }

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

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

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

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

.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

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

.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;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-lg { font-size: .98rem; padding: 1em 2.1em; }

.btn-plum {
  background: linear-gradient(120deg, var(--plum), #5c3580);
  color: #fff;
  box-shadow: 0 8px 26px rgba(67, 38, 92, .35);
}
.btn-plum:hover { color: #fff; box-shadow: 0 12px 34px rgba(67, 38, 92, .45); }

.btn-open {
  border: 2px solid rgba(67, 38, 92, .25);
  color: var(--plum);
  background: var(--white);
}
.btn-open:hover { border-color: var(--lilac); color: var(--plum); background: var(--lilac-soft); }

/* ─── 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, 246, 239, .95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(47, 26, 66, .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-moon { font-size: 1.25rem; }
.brand-text { font-family: var(--head); font-weight: 600; font-size: 1.12rem; color: var(--plum-deep); }
.brand-text em { color: var(--lilac); }

.nav-links { display: flex; gap: 24px; }
.nav-links a {
  color: var(--plum-deep);
  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(--plum-deep); transition: .3s; display: block; }

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 140px 0 100px;
  background:
    radial-gradient(ellipse 60% 55% at 18% 20%, rgba(159, 127, 209, .18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 88% 75%, rgba(233, 207, 142, .3) 0%, transparent 55%),
    var(--ivory);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-logo {
  display: block;
  width: min(430px, 88%);
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(47, 26, 66, .28);
  margin-bottom: 1.6rem;
  transform: rotate(-1.2deg);
}
.hero-lede {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 1.8rem;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note {
  margin-top: 1.4rem;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-portrait { position: relative; display: grid; justify-items: center; }
.arch {
  width: min(400px, 82vw);
  aspect-ratio: 4 / 4.6;
  border-radius: 999px 999px 24px 24px;
  overflow: hidden;
  border: 10px solid var(--white);
  box-shadow: 0 30px 70px rgba(47, 26, 66, .3);
  background: var(--lilac-soft);
}
.arch img { width: 100%; height: 100%; object-fit: cover; display: block; }
.arch-badge {
  position: absolute;
  right: clamp(0px, 3vw, 26px);
  bottom: -18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 118px; height: 118px;
  border-radius: 50%;
  background: var(--plum);
  color: var(--ivory);
  font-family: var(--head);
  line-height: 1.25;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(47, 26, 66, .35);
  transform: rotate(8deg);
  border: 3px solid var(--gold-soft);
}
.arch-badge strong { font-size: 1.35rem; letter-spacing: .04em; color: var(--gold-soft); }

/* doodles */
.hero-doodles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.doodle {
  position: absolute;
  color: var(--lilac);
  opacity: .5;
  font-size: 1.4rem;
  animation: twinkle 4s ease-in-out infinite;
}
.d1 { top: 18%; left: 6%; }
.d2 { top: 12%; right: 10%; font-size: 2rem; animation-delay: 1s; color: var(--gold); }
.d3 { bottom: 30%; left: 3%; font-size: 1rem; animation-delay: 2s; }
.d4 { bottom: 16%; right: 4%; animation-delay: .5s; }
.d5 { top: 55%; left: 48%; font-size: 1.1rem; animation-delay: 1.5s; color: var(--gold); }
@keyframes twinkle {
  0%, 100% { opacity: .25; transform: scale(1); }
  50% { opacity: .7; transform: scale(1.2); }
}

.hero-wave {
  position: absolute;
  inset: auto 0 -1px 0;
  width: 100%;
  height: clamp(34px, 5vw, 70px);
  z-index: 1;
}

/* ─── Services deck ─── */
#readings { background: var(--white); }
.deck {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 3rem;
}
.svc {
  background: var(--ivory);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #eadfce;
  transition: transform .28s ease, box-shadow .28s ease;
  display: grid;
  grid-template-columns: 108px 1fr;
  align-items: center;
}
.svc:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(47, 26, 66, .16);
}
.svc > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 150px;
}
.svc-body { padding: 20px 20px 20px 16px; }
.svc-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.price {
  font-family: var(--head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold);
}
.svc-time {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lilac);
  margin: .15rem 0 .5rem;
}
.svc-body p:last-child { color: var(--muted); font-size: .95rem; }

/* ─── Amanda ─── */
.amanda { background: linear-gradient(180deg, var(--white) 0%, var(--ivory) 100%); }
.amanda > .container > div > p { color: var(--muted); }

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.4rem 0;
}
.pill-list li {
  background: var(--white);
  border: 1px solid #e6dccb;
  border-radius: 100px;
  padding: .45em 1.1em;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 3px 12px rgba(47, 26, 66, .06);
}
.hours-chip {
  background: var(--lilac-soft);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: .95rem;
  color: var(--plum-deep);
}

.quote-stack { display: grid; gap: 20px; }
.q {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px 22px;
  box-shadow: 0 14px 36px rgba(47, 26, 66, .1);
  border: 1px solid #efe7d8;
}
.q p {
  font-family: var(--head);
  font-style: italic;
  font-size: 1.12rem;
  margin-bottom: .7rem;
}
.q cite { color: var(--muted); font-style: normal; font-weight: 700; font-size: .85rem; }
.q1 { transform: rotate(-1.2deg); }
.q2 { transform: rotate(1.2deg); margin-left: 8%; }

/* ─── Reviews band ─── */
.band {
  background: var(--plum);
  padding: clamp(48px, 7vw, 72px) 0;
}
.band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.band .q { background: rgba(255, 255, 255, .06); border-color: rgba(233, 207, 142, .3); box-shadow: none; transform: none; margin: 0; }
.band .q p { color: var(--ivory); }
.band .q cite { color: var(--gold-soft); }

/* ─── Visit ─── */
#visit > .container > div > p { color: var(--muted); }
.contact-list { list-style: none; margin: 1.6rem 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; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: 0 24px 56px rgba(47, 26, 66, .18);
  aspect-ratio: 4 / 3.2;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ─── Footer ─── */
.footer {
  background: var(--plum-deep);
  color: var(--ivory);
  padding: 52px 0 92px;
  text-align: center;
}
.footer-logo {
  width: min(290px, 70%);
  height: auto;
  border-radius: 14px;
  margin-bottom: 1.2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.footer-meta { opacity: .8; font-size: .95rem; margin-bottom: 1rem; }
.footer-meta a { color: var(--gold-soft); }
.footer-copy { opacity: .45; font-size: .84rem; }

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

/* ─── Responsive ─── */
@media (max-width: 980px) {
  .deck { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .grid-2, .hero-grid { grid-template-columns: 1fr; }
  .hero-logo { margin-inline: auto; }
  .hero-copy { text-align: center; }
  .hero-lede { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .band-grid { grid-template-columns: 1fr; }
  .q2 { margin-left: 0; }
}
@media (max-width: 680px) {
  .nav-links, .nav-call { display: none; }
  .nav-toggle { display: flex; }
  .nav { background: rgba(250, 246, 239, .95); }
  .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(47, 26, 66, .12);
  }
  .deck { grid-template-columns: 1fr; }
  .mobile-call { display: inline-flex; }
  .footer { padding-bottom: 112px; }
  .hero { padding-top: 118px; }
  .arch-badge { width: 96px; height: 96px; bottom: -12px; }
}
