/* ─────────────────────────────────────────────
   444 Tarot & Soul Readings — Y2K Holographic
   ───────────────────────────────────────────── */

:root {
  --pink: #FF6B9D;
  --pink-light: #FFB8D0;
  --pink-soft: #FFDCE8;
  --pink-bg: #FFE8F0;
  --lilac: #C9A0FF;
  --lilac-light: #E0CBFF;
  --lilac-bg: #F0E4FF;
  --purple: #9B6FE8;
  --blue: #7EB8FF;
  --mint: #7EFFC3;
  --plum: #2D1B3D;
  --plum-2: #5A3D6E;
  --white: #FFFFFF;
  --line: rgba(200, 160, 255, 0.25);

  --grad-y2k: linear-gradient(135deg, #FFB8D0, #C9A0FF, #7EB8FF, #7EFFC3, #FFB8D0);
  --grad-pink-purple: linear-gradient(150deg, #FFD6E8 0%, #EECBF5 40%, #DDBFFF 70%, #C8B0F0 100%);
  --grad-warm: linear-gradient(135deg, #FFD6E5 0%, #E8C8FF 50%, #C8D8FF 100%);

  --shadow-glow: 0 8px 32px rgba(201, 160, 255, 0.25);
  --shadow-pink: 0 8px 32px rgba(255, 107, 157, 0.2);

  --radius: 20px;
  --radius-lg: 28px;
  --maxw: 1100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Quicksand', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--plum);
  background: var(--grad-pink-purple);
  background-attachment: fixed;
  min-height: 100vh;
}

/* ── Iridescent shimmer animation ── */
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── Typography ── */
h1 {
  font-family: 'Abril Fatface', 'Fraunces', Georgia, serif;
  font-weight: 400;
  color: var(--plum);
  margin: 0 0 0.25em;
  letter-spacing: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
}
h2 {
  font-family: 'Bitcount Prop Single', 'Fraunces', Georgia, serif;
  font-weight: 400;
  color: var(--plum);
  margin: 0 0 0.5em;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.2;
}
h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  color: var(--plum);
  margin: 0 0 0.4em;
  font-size: 1.2rem;
}

p { margin: 0 0 1em; }
em { color: var(--pink); font-style: italic; }

a { color: var(--purple); text-decoration: none; transition: color .2s; }
a:hover { color: var(--pink); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pink);
  margin: 0 0 0.6em;
}

/* ── NAV ───────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 48px);
  backdrop-filter: blur(16px);
  background: rgba(255, 232, 240, 0.7);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bitcount Prop Single', serif;
  font-size: 1.4rem;
  color: var(--plum);
}
.nav__logo {
  height: 72px;
  object-fit: contain;
}
.nav__links {
  display: flex;
  gap: clamp(14px, 2.4vw, 28px);
  align-items: center;
  font-weight: 500;
}
.nav__links a { color: var(--plum-2); }
.nav__links a:hover { color: var(--pink); }
.nav__cta {
  background: var(--pink);
  color: var(--white) !important;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 999px;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

@media (max-width: 640px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-family: inherit;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.btn--primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}
.btn--primary:hover {
  transform: translateY(-3px);
  background: var(--purple);
  box-shadow: var(--shadow-glow);
}
.btn--secondary {
  background: var(--lilac);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.btn--secondary:hover {
  transform: translateY(-3px);
  background: var(--purple);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  color: var(--plum);
  border: 2px solid var(--pink-light);
}
.btn--ghost:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--pink);
}
.btn--wide { width: 100%; padding: 15px; }

/* ── SECTION SPACING ───────────────────────── */
section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 48px);
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head__sub { color: var(--plum-2); margin-top: 8px; }

/* ── Glassmorphism card base ── */
.glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glow);
}

/* ── HERO ──────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(40px, 6vw, 80px);
}
.hero__art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__art img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__art-placeholder,
.about__photo-placeholder,
.book__art-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  text-align: center;
  padding: 20px;
  pointer-events: none;
}
.hero__art-placeholder span,
.about__photo-placeholder span,
.book__art-placeholder span {
  font-family: 'Abril Fatface', serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}
.hero__art-placeholder small,
.about__photo-placeholder small,
.book__art-placeholder small { opacity: 0.6; color: rgba(255,255,255,0.6); }
.hero__art-placeholder code,
.about__photo-placeholder code,
.book__art-placeholder code { background: rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); }

/* Decorative stars on hero art */
.hero__art::before {
  content: "✦";
  position: absolute;
  top: 16%; right: 12%;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.4);
  z-index: 2;
}
.hero__art::after {
  content: "✧";
  position: absolute;
  bottom: 20%; left: 15%;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.hero__copy {
  position: relative;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-glow);
}
.hero__title { margin-bottom: 0.5em; color: var(--plum); }
.hero__title em { color: var(--pink); }
.hero__lede {
  color: var(--plum-2);
  font-size: 1.05rem;
  margin-bottom: 1.6em;
  max-width: 52ch;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__fine {
  margin-top: 1.4em;
  font-size: 0.82rem;
  color: var(--plum-2);
  opacity: 0.6;
}

/* Decorative butterfly near hero */
.hero__copy::after {
  content: "🦋";
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 1.6rem;
  opacity: 0.5;
}

@media (max-width: 840px) {
  .hero { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 400px; margin: 0 auto; width: 100%; }
}

/* ── ABOUT ─────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.about__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 4px;
  background: var(--grad-warm);
}
.about__photo-frame {
  position: relative;
  width: 100%; height: 100%;
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  background: var(--grad-warm);
}
.about__photo-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__photo-decor {
  position: absolute;
  top: -14px; right: -14px;
  width: 40%; height: 40%;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}
.about__photo-frame.is-empty { background: var(--grad-warm); }

/* Decorative star */
.about__photo::before {
  content: "✦";
  position: absolute;
  top: -10px; right: -6px;
  font-size: 1.2rem;
  color: var(--pink);
  opacity: 0.6;
  z-index: 5;
}

.about__copy {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-glow);
}
.about__copy p { color: var(--plum-2); }
.about__copy p strong { color: var(--plum); }

@media (max-width: 840px) {
  .about { grid-template-columns: 1fr; }
  .about__photo { max-width: 360px; margin: 0 auto; width: 100%; }
}

/* ── OFFERINGS ─────────────────────────────── */
.offerings .section-head h2 { color: var(--white); }
.offerings .section-head__sub { color: rgba(255, 255, 255, 0.75); }
.offerings .eyebrow { color: var(--lilac-light); }

.offerings__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 700px) {
  .offerings__grid { grid-template-columns: 1fr; }
}

.offering {
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: transform .3s, box-shadow .3s;
}
/* Gradient border */
.offering::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: var(--grad-warm);
  z-index: -1;
}
.offering:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(201, 160, 255, 0.3);
}

.offering__icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}
.offering__price-badge {
  display: inline-block;
  font-family: 'Abril Fatface', serif;
  font-size: 1.6rem;
  color: var(--pink);
  margin: 8px 0 6px;
}
.offering__sub {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--plum-2);
  margin-bottom: 14px;
}
.offering__desc {
  color: var(--plum-2);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.offering .btn { text-align: center; display: block; }

/* Flagship card — extra shimmer */
.offering--flagship {
  background: rgba(255, 255, 255, 0.7);
}
.offering--flagship::after {
  content: "✦ flagship ✦";
  position: absolute;
  top: 14px; right: 16px;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--plum);
  background: var(--pink-soft);
  padding: 4px 12px;
  border-radius: 999px;
}

/* Offerings container */
.offerings {
  position: relative;
}

/* ── HOW IT WORKS ──────────────────────────── */
.how__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.how__step {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  transition: transform .3s;
}
.how__step:hover { transform: translateY(-4px); }
.how__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-warm);
  color: var(--plum);
  font-family: 'Abril Fatface', serif;
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.how__step h3 { margin-bottom: 6px; }
.how__step p { color: var(--plum-2); margin: 0; font-size: 0.95rem; }

/* ── TESTIMONIALS ──────────────────────────── */
.threads {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.thread {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .3s;
}
.thread:hover { transform: translateY(-4px); }
.thread__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.thread__name {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--plum);
  font-weight: 500;
}
.thread__time {
  font-size: 0.7rem;
  color: var(--plum-2);
  opacity: 0.6;
}
.thread__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 4px 4px 0;
}
.bubble {
  margin: 0;
  background: var(--grad-warm);
  color: var(--plum);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Quicksand', sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
  padding: 10px 14px;
  border-radius: 18px;
  max-width: 88%;
  word-wrap: break-word;
}
.bubble--tail {
  position: relative;
  border-bottom-left-radius: 6px;
}

/* ── BOOKING ───────────────────────────────── */
.book {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.book__art {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: sticky;
  top: 100px;
}
/* Decorative */
.book__art::before {
  content: "✦";
  position: absolute;
  top: 30%; left: 45%;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.3);
}
.book__copy {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-glow);
}

.form { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field > span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--plum);
}
.form__field input,
.form__field select,
.form__field textarea {
  font: inherit;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--lilac);
  box-shadow: 0 0 0 3px rgba(201, 160, 255, 0.2);
  background: rgba(255, 255, 255, 0.8);
}
.form__field textarea { resize: vertical; min-height: 100px; }
.form__field input[type="file"] { padding: 10px; }
.form__field.has-error input,
.form__field.has-error select {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.15);
}
.form__status {
  min-height: 1.2em;
  font-size: 0.92rem;
  color: var(--plum-2);
  margin: 0;
}
.form__status.is-success { color: #2E9164; }
.form__status.is-error { color: var(--pink); }

.book__fine {
  margin-top: 22px;
  font-size: 0.82rem;
  color: var(--plum-2);
  opacity: 0.7;
}

@media (max-width: 840px) {
  .book { grid-template-columns: 1fr; }
  .book__art { position: static; max-width: 320px; margin: 0 auto; width: 100%; }
}

/* ── FOOTER ────────────────────────────────── */
.footer {
  margin-top: 40px;
  border-top: 3px solid transparent;
  border-image: var(--grad-y2k) 1;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px clamp(20px, 5vw, 48px);
  text-align: center;
  color: var(--plum-2);
}
.footer__brand {
  font-family: 'Bitcount Prop Single', serif;
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.footer__tag { margin: 0 0 14px; }
.footer__socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.footer__socials a { color: var(--pink); }
.footer__fine { font-size: 0.82rem; opacity: 0.7; margin: 0; }

/* ── REVEAL ANIMATION ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .nav__cta, .btn--primary, .btn--secondary, .btn--ghost::before,
  .offering::before, .offering--flagship::after,
  .how__num, .about__photo { animation: none; }
}
