/* ============================================================
   Independence St. NOLA — design system
   Palette drawn from the mermaid logo art:
   ink navy #104058 · seafoam #8BC4C5 · cream #F7F2EC
   sand #E6D2B5 · brass #B7995E · CTA teal #19646C
   Fonts: Fraunces (display) + Inter (body), self-hosted
   ============================================================ */

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-v38-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-v38-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v20-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v20-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #104058;
  --ink-deep: #0c3346;
  --cream: #f7f2ec;
  --paper: #efe7dc;
  --seafoam: #8bc4c5;
  --seafoam-wash: #e3efec;
  --sand: #e6d2b5;
  --brass: #a5854e;
  --cta: #19646c;
  --cta-dark: #124e55;
  --text: #23404f;
  --max: 1120px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(16, 64, 88, 0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  text-wrap: balance;
}

h1 { font-size: clamp(2.75rem, 6.5vw, 5.25rem); letter-spacing: -0.015em; line-height: 1.03; }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); letter-spacing: -0.01em; line-height: 1.08; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { max-width: 62ch; }

a { color: var(--cta); }
a:hover { color: var(--cta-dark); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

section { padding: clamp(4rem, 9vw, 7rem) 0; }

.kicker {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.9rem;
}

.lede { font-size: clamp(1.125rem, 1.6vw, 1.3rem); color: var(--text); }

/* Star divider — echoes the sparkles in Jamie's tattoo-flash art */
.star-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
  max-width: 280px;
  color: var(--brass);
}
.star-rule::before,
.star-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: color-mix(in srgb, var(--brass) 45%, transparent);
}
.star-rule svg { flex: none; }

/* Four-point sparkle accents, drawn like the stars in her flash art */
.sparkle {
  position: absolute;
  color: var(--brass);
  pointer-events: none;
}
.sparkle svg { display: block; width: 100%; height: 100%; }
.has-sparkles { position: relative; }

/* Tarot-card frame: double border like a card face */
.frame {
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  padding: 10px;
  background: #fffdf9;
  position: relative;
}
.frame img { border-radius: 13px; }
.frame::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid color-mix(in srgb, var(--brass) 55%, transparent);
  border-radius: 18px;
  pointer-events: none;
}

/* Arch frame: echoes the arched lettering of the logo */
.frame-arch,
.frame-arch::after { border-radius: 999px 999px 22px 22px; }
.frame-arch img { border-radius: 992px 992px 13px 13px; }

/* Night-sky dot texture for navy bands */
.starfield {
  background-image:
    radial-gradient(rgba(232, 238, 241, 0.16) 1px, transparent 1.5px),
    radial-gradient(rgba(232, 238, 241, 0.09) 1px, transparent 1.5px);
  background-size: 190px 190px, 110px 110px;
  background-position: 0 0, 55px 80px;
}

/* Archival price list: name left, price right, hairline rules */
.menu-list { border-top: 1px solid color-mix(in srgb, var(--ink) 22%, transparent); }
.menu-item {
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
  padding: clamp(1.5rem, 3vw, 2.2rem) 0;
}
.menu-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem 2rem;
  flex-wrap: wrap;
}
.menu-head h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 0;
}
.menu-price {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--brass);
  white-space: nowrap;
}
.menu-item p { margin-top: 0.7rem; }
.menu-item .menu-meta {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--text) 72%, transparent);
  margin-top: 0.5rem;
}
.menu-item .btn { margin-top: 1.2rem; }

/* Staggered steps: organic drift instead of an even grid */
.steps { display: grid; gap: clamp(2rem, 4vw, 2.8rem); max-width: 720px; }
.step { padding-left: 1.9rem; position: relative; }
.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 11px;
  height: 11px;
  background: var(--brass);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}
@media (min-width: 861px) {
  .step:nth-child(2) { margin-left: 3.5rem; }
  .step:nth-child(3) { margin-left: 7rem; }
}

/* Oversized pull quote */
.pull-quote {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.3;
  max-width: 20em;
  margin: 0 auto;
  text-align: center;
  text-wrap: balance;
}

/* Moon phase strip: dark moon to full and back */
.moon-strip {
  display: flex;
  justify-content: center;
  gap: clamp(0.9rem, 2.5vw, 1.6rem);
  margin: 0 auto;
}
.moon-strip span {
  width: clamp(14px, 2vw, 20px);
  height: clamp(14px, 2vw, 20px);
  border-radius: 50%;
  border: 1.5px solid var(--seafoam);
  background: linear-gradient(90deg, var(--seafoam) 0 var(--p, 0%), transparent var(--p, 0%));
  opacity: 0.9;
}

/* Footer wordmark, magazine-style */
.footer-wordmark {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 8vw, 6rem);
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  text-wrap: balance;
}
.footer-wordmark .fw-tail { color: var(--seafoam); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.9rem 1.9rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-primary {
  background: var(--cta);
  color: #fdfbf7;
}
.btn-primary:hover {
  background: var(--cta-dark);
  color: #fdfbf7;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(18, 78, 85, 0.28);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--ink) 40%, transparent);
}
.btn-ghost:hover {
  box-shadow: inset 0 0 0 1.5px var(--ink);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn-lg { padding: 1.05rem 2.3rem; font-size: 1.0625rem; }

/* On dark sections */
.on-dark .btn-ghost {
  color: var(--cream);
  box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--cream) 55%, transparent);
}
.on-dark .btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--cream); color: #fff; }
.on-dark .btn-primary {
  background: var(--seafoam);
  color: var(--ink-deep);
}
.on-dark .btn-primary:hover {
  background: #a3d4d2;
  color: var(--ink-deep);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16, 64, 88, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}
.brand {
  text-decoration: none;
  line-height: 1.1;
}
.brand .brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
  display: block;
}
.brand .brand-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 1.9rem);
  list-style: none;
}
.nav-links a:not(.btn) {
  text-decoration: none;
  color: var(--ink);
  font-weight: 400;
  font-size: 0.98rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}
.nav-links a:not(.btn):hover,
.nav-links a[aria-current="page"]:not(.btn) {
  border-bottom-color: var(--seafoam);
}
.nav-links .btn { padding: 0.65rem 1.4rem; font-size: 0.95rem; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--ink);
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(16, 64, 88, 0.1);
    box-shadow: var(--shadow);
    display: none;
    padding: 0.5rem 1.25rem 1.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid rgba(16, 64, 88, 0.07); }
  .nav-links li:first-child { border-top: 0; }
  .nav-links a:not(.btn) { display: block; padding: 0.9rem 0.25rem; border-bottom: 0; }
  .nav-links .btn { margin-top: 0.9rem; text-align: center; display: block; }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(4rem, 8vw, 6.5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { margin: 0.4rem 0 1.2rem; }
.hero .lede { margin-bottom: 2rem; }
.hero-art img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.hero-note { font-size: 0.95rem; color: color-mix(in srgb, var(--text) 78%, transparent); }
.hero-note a { color: inherit; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: 2; max-width: min(280px, 75vw); }
  .hero { padding-bottom: clamp(2.5rem, 6vw, 4rem); }
}

/* ---------- Cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: #fffdf9;
  border: 1px solid rgba(16, 64, 88, 0.08);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 1rem; }
.card .card-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

/* Text links that earn their hover */
.link-quiet {
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0% 1.5px;
  background-position: 0 100%;
  padding-bottom: 2px;
  transition: background-size 0.25s ease;
}
.link-quiet:hover { background-size: 100% 1.5px; }

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--seafoam-wash);
  color: var(--cta);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}

/* ---------- Section tints ---------- */
.tint { background: var(--seafoam-wash); }
.tint-paper { background: var(--paper); }
.dark {
  background: var(--ink);
  color: #e8eef1;
}
.dark h2, .dark h3 { color: var(--cream); }
.dark p { color: #d5e0e5; }
.dark .kicker { color: var(--sand); }

/* ---------- Split feature (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split-wide-text { grid-template-columns: 1.25fr 1fr; }
.split-wide-img { grid-template-columns: 1fr 1.25fr; }
@media (max-width: 860px) {
  .split-wide-text, .split-wide-img { grid-template-columns: 1fr; }
}
.split-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split h2 { margin-bottom: 1rem; }
.split .btn { margin-top: 1.5rem; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split-img { max-width: 480px; }
}

/* ---------- Price list (readings page) ---------- */
.session {
  background: #fffdf9;
  border: 1px solid rgba(16, 64, 88, 0.08);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}
.session-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem 1.5rem;
  margin-bottom: 0.9rem;
}
.session-head h3 { margin: 0; }
.session-meta {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--brass);
  white-space: nowrap;
}
.session p { margin-bottom: 0.8rem; }
.session p:last-of-type { margin-bottom: 0; }
.session .btn { margin-top: 1.2rem; }
.session-note {
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--text) 75%, transparent);
}

/* ---------- Quote / proof ---------- */
.quote {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.45;
  color: var(--ink);
  max-width: 21em;
  margin: 0 auto;
  text-align: center;
}
.quote-source {
  text-align: center;
  margin-top: 1.4rem;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--text) 75%, transparent);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
  margin-top: 3rem;
}
.stat-num {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
  display: block;
}
.stat-label { font-size: 0.95rem; }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Contact band / footer ---------- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { margin: 0 auto 2rem; }
.cta-band .btn { margin: 0 0.4rem 0.6rem; }

.site-footer {
  background: var(--ink-deep);
  color: #c9d7de;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.site-footer h4 {
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a { color: #c9d7de; text-decoration: none; }
.site-footer a:hover { color: var(--seafoam); }
.footer-logo {
  width: 110px;
  margin-bottom: 1rem;
  background: var(--cream);
  padding: 10px 12px;
  border-radius: 12px;
}
.footer-bottom {
  border-top: 1px solid rgba(233, 238, 241, 0.14);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: #9db3bd;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Page intro (interior pages) ---------- */
.page-intro { padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem); }
.page-intro h1 { margin-bottom: 1rem; }
.page-intro .lede { max-width: 46em; }

/* ---------- Reveal on scroll (only when JS is running) ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
html.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card { transition: none; }
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.section-head { max-width: 680px; margin: 0 0 clamp(2.5rem, 5vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 0.9rem; }
.section-head.center p { margin-inline: auto; }

/* Small proof line placed beside CTAs */
.proof-line {
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--text) 75%, transparent);
  margin-top: 0.9rem;
}
.on-dark .proof-line, .dark .proof-line { color: #b9cbd4; }
