/* ═══════════════════════════════════════════════
   Psychic Visions — Charleston, SC
   Serene light: white/sage, deep teal, chakra accents
   ═══════════════════════════════════════════════ */

:root {
  --white: #fdfdfb;
  --mist: #f1f5f0;
  --sage: #e3ece4;
  --teal: #16544e;
  --teal-deep: #0d3a36;
  --ink: #1d2d2b;
  --muted: #5f7370;
  --gold: #c9a24b;
  --head: "Marcellus", Georgia, serif;
  --body: "Mulish", "Segoe UI", sans-serif;
  --maxw: 1120px;
  --radius: 18px;
  --chakra: linear-gradient(90deg, #e53935, #fb8c00, #fdd835, #43a047, #1e88e5, #5e35b1, #8e24aa);
}

* { 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.7;
  -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.12;
  letter-spacing: .01em;
}

h1 { font-size: clamp(2.5rem, 5.8vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.7vw, 2.6rem); margin-bottom: .9rem; }
h3 { font-size: 1.25rem; }

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

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

.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-size: .76rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .9rem;
}
.eyebrow.light { color: #bfe3d9; }

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

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

.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: .05em;
  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-dark {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 24px rgba(22, 84, 78, .3);
}
.btn-dark:hover { background: var(--teal-deep); color: #fff; }

.btn-soft {
  background: var(--sage);
  color: var(--teal-deep);
}
.btn-soft:hover { background: #d5e3d7; color: var(--teal-deep); }

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

/* ─── 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(253, 253, 251, .95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 22px rgba(29, 45, 43, .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: 16px; height: 16px;
  border-radius: 50%;
  background: var(--chakra);
}
.brand-text { font-family: var(--head); font-size: 1.3rem; color: var(--ink); }
.brand-text em { font-style: normal; color: var(--teal); }

.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(--teal); }

.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% 10%, rgba(67, 160, 71, .1) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 5% 90%, rgba(30, 136, 229, .08) 0%, transparent 55%),
    linear-gradient(175deg, var(--mist) 0%, var(--white) 65%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.9vw, 1.2rem);
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 1.8rem;
}
.hero-sub strong { color: var(--ink); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note {
  margin-top: 1.3rem;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
}
.hero-photo {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(29, 45, 43, .25);
}
.hero-photo img { display: block; width: 100%; height: auto; }

/* ─── Cards ─── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid #e2eae3;
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(29, 45, 43, .12);
}
.card-chip {
  display: block;
  width: 44px;
  height: 8px;
  border-radius: 6px;
  margin-bottom: 1.1rem;
}
.c1 { background: linear-gradient(90deg, #e53935, #fb8c00); }
.c2 { background: linear-gradient(90deg, #fb8c00, #fdd835); }
.c3 { background: linear-gradient(90deg, #e91e63, #8e24aa); }
.c4 { background: linear-gradient(90deg, #43a047, #1e88e5); }
.c5 { background: linear-gradient(90deg, #1e88e5, #8e24aa); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .96rem; }
.card-cta {
  background: var(--sage);
  border-color: transparent;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: .6rem;
}

/* ─── About ─── */
.about { background: linear-gradient(180deg, var(--white) 0%, var(--mist) 100%); }
.about p { color: var(--muted); }
.photo-soft {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(29, 45, 43, .2);
  max-height: 560px;
}
.photo-soft img { display: block; width: 100%; height: 100%; object-fit: cover; }

.checks { list-style: none; margin: 1.2rem 0 1.6rem; }
.checks li {
  padding-left: 1.9em;
  position: relative;
  margin-bottom: .6em;
  color: var(--ink);
}
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .1em;
  width: 1.35em; height: 1.35em;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: .8em;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.mini-quote {
  border-left: 4px solid;
  border-image: var(--chakra) 1;
  padding: 4px 0 4px 18px;
}
.mini-quote p {
  font-family: var(--head);
  font-size: 1.15rem;
  color: var(--ink);
  font-style: italic;
}
.mini-quote cite { color: var(--muted); font-style: normal; font-size: .88rem; font-weight: 700; }

/* ─── Events band ─── */
.band {
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(255, 255, 255, .08) 0%, transparent 60%),
    linear-gradient(160deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #eaf5f0;
  padding: clamp(56px, 8vw, 88px) 0;
}
.band h2 { color: #fff; }
.band-sub {
  max-width: 560px;
  margin: 0 auto 1.8rem;
  color: #bfd9d0;
  font-size: 1.05rem;
}

/* ─── 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; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e2eae3;
  box-shadow: 0 22px 54px rgba(29, 45, 43, .16);
  aspect-ratio: 4 / 3.2;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ─── Footer ─── */
.footer { background: var(--teal-deep); color: #cfe5dd; }
.footer-inner { padding: 44px 24px 92px; }
.footer-brand {
  font-family: var(--head);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: .7rem;
}
.footer-brand em { font-style: normal; color: #8fd0bd; }
.footer-meta { opacity: .85; font-size: .94rem; margin-bottom: 1rem; }
.footer-meta a { color: #8fd0bd; }
.footer-copy { opacity: .5; font-size: .84rem; }

/* ─── Mobile call bar ─── */
.mobile-call {
  display: none;
  position: fixed;
  inset: auto 12px 12px 12px;
  z-index: 90;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 15px;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(13, 58, 54, .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; }
  .cards { grid-template-columns: 1fr 1fr; }
  .photo-soft { max-width: 460px; margin: 0 auto; }
}

@media (max-width: 700px) {
  .nav-links, .nav-call { display: none; }
  .nav-toggle { display: flex; }
  .nav { background: rgba(253, 253, 251, .95); }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 20px 24px 26px;
    gap: 18px;
    box-shadow: 0 16px 30px rgba(29, 45, 43, .1);
  }
  .cards { grid-template-columns: 1fr; }
  .mobile-call { display: inline-flex; }
  .footer-inner { padding-bottom: 108px; }
  .hero { padding-top: 116px; }
}
