/* ═══════════════════════════════════════════════
   Nola Oracle & Tarot — Magazine St, New Orleans
   NOLA bohemian: ink green, warm amber, cream, Bodoni
   ═══════════════════════════════════════════════ */

:root {
  --ink: #16302a;
  --ink-2: #1e3d35;
  --amber: #d98e32;
  --amber-deep: #bf7620;
  --cream: #f7f1e5;
  --cream-2: #efe6d2;
  --text-dark: #24312d;
  --muted: #6d7a72;
  --muted-light: #b8c5bc;
  --head: "Bodoni Moda", Georgia, serif;
  --body: "Albert Sans", "Segoe UI", sans-serif;
  --maxw: 1120px;
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 400;
  background: var(--cream);
  color: var(--text-dark);
  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.12;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: .9rem; }
h3 { font-size: 1.18rem; }

.amp { font-style: italic; color: var(--amber); }

a { color: var(--ink-2); }
a:hover { color: var(--amber-deep); }

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

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

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

.fleur-row {
  color: var(--amber);
  letter-spacing: .8em;
  font-size: 1rem;
  margin-bottom: .8rem;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.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: .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-amber {
  background: linear-gradient(150deg, #e8a54e, var(--amber-deep));
  color: #fff;
  box-shadow: 0 8px 26px rgba(191, 118, 32, .35);
}
.btn-amber:hover { color: #fff; box-shadow: 0 12px 34px rgba(191, 118, 32, .5); }

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

.btn-line {
  border: 2px solid rgba(22, 48, 42, .25);
  color: var(--ink);
  background: transparent;
}
.btn-line:hover { border-color: var(--amber-deep); color: var(--amber-deep); }

/* ─── 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(22, 48, 42, .96);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .3);
  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-fleur { color: var(--amber); font-size: 1.35rem; }
.brand-text { font-family: var(--head); font-weight: 600; font-size: 1.15rem; color: #fff; }
.brand-text em { font-style: italic; color: #ecc588; }

.nav-links { display: flex; gap: 24px; }
.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  opacity: .85;
}
.nav-links a:hover { opacity: 1; color: #ecc588; }

.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: #fff; transition: .3s; display: block; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowzoom 20s ease-out both;
}
@keyframes slowzoom {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 24, 20, .6) 0%, rgba(12, 24, 20, .35) 45%, rgba(12, 24, 20, .75) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 130px 24px 90px; max-width: 820px; margin: 0 auto; }
.hero .eyebrow { color: #ecc588; }
.hero-sub {
  color: #e3ddd0;
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  max-width: 560px;
  margin: 1.3rem auto 2.2rem;
}
.hero-sub strong { color: #fff; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note {
  margin-top: 1.5rem;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #ecc588;
}

/* ─── Menu (pricing) ─── */
.menu {
  max-width: 760px;
  margin: 0 auto 1.6rem;
  display: grid;
  gap: 26px;
}
.menu-item { text-align: left; }
.mi-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.mi-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(109, 122, 114, .5);
  transform: translateY(-6px);
}
.mi-price {
  font-family: var(--head);
  font-style: italic;
  color: var(--amber-deep);
  font-size: 1rem;
  white-space: nowrap;
}
.menu-item p { color: var(--muted); font-size: .97rem; margin-top: .2rem; }

.fine-print {
  text-align: center;
  color: var(--muted);
  font-size: .86rem;
  max-width: 620px;
  margin: 0 auto 2rem;
}

/* ─── Split (events) ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  color: var(--cream);
}
.split-media { position: relative; min-height: 420px; overflow: hidden; margin: 0; }
.split-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-panel { padding: clamp(56px, 6vw, 92px) clamp(30px, 5vw, 80px); }
.split-panel .eyebrow { color: #ecc588; }
.split-panel h2 { color: var(--cream); }
.split-panel p { color: var(--muted-light); }

.checks { list-style: none; margin-top: 1.3rem; }
.checks li {
  padding-left: 1.9em;
  position: relative;
  margin-bottom: .6em;
  color: var(--cream);
}
.checks li::before {
  content: "⚜";
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: .9em;
}

/* ─── Gretta ─── */
.gretta { background: var(--cream-2); }
.gretta p { color: var(--muted); }
.portrait {
  border-radius: 240px 240px var(--radius) var(--radius);
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 26px 60px rgba(22, 48, 42, .22);
  max-width: 380px;
  margin: 0 auto;
}
.portrait img { display: block; width: 100%; height: auto; }
.sign-quote {
  border-left: 3px solid var(--amber);
  padding: 6px 0 6px 20px;
  margin: 1.4rem 0;
}
.sign-quote p {
  font-family: var(--head);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text-dark);
}
.sign-quote cite { color: var(--muted); font-style: normal; font-size: .9rem; }
.mini-photo {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: 0 12px 30px rgba(22, 48, 42, .12);
  max-width: 400px;
}
.mini-photo img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.mini-photo figcaption { color: var(--muted); font-size: .88rem; font-style: italic; }

/* ─── Review band ─── */
.band {
  background:
    radial-gradient(ellipse 55% 70% at 50% 0%, rgba(232, 165, 78, .12) 0%, transparent 60%),
    linear-gradient(165deg, var(--ink-2), var(--ink));
  color: var(--cream);
  padding: clamp(56px, 8vw, 84px) 0;
}
.stars-row {
  color: #ecc588;
  font-size: 1.5rem;
  letter-spacing: .3em;
  margin-bottom: 1rem;
}
.band-quote {
  font-family: var(--head);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.band-link { color: #ecc588; font-weight: 700; }

/* ─── 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; }
.visit-media { display: grid; gap: 20px; }
.gate-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e0d6c0;
  box-shadow: 0 20px 50px rgba(22, 48, 42, .16);
  max-height: 360px;
}
.gate-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e0d6c0;
  box-shadow: 0 20px 50px rgba(22, 48, 42, .16);
  aspect-ratio: 16 / 8;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: sepia(.25) saturate(.85); }

/* ─── Footer ─── */
.footer { background: var(--ink); color: var(--muted-light); }
.footer-inner { padding: 46px 24px 96px; }
.footer .fleur-row { margin-bottom: .6rem; }
.footer-brand {
  font-family: var(--head);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: .7rem;
}
.footer-brand em { font-style: italic; color: #ecc588; }
.footer-meta { font-size: .95rem; margin-bottom: .6rem; }
.footer-meta a { color: #ecc588; }
.footer-pay { font-size: .84rem; opacity: .7; margin-bottom: 1rem; }
.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(150deg, #e8a54e, var(--amber-deep));
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 15px;
  border-radius: 100px;
  box-shadow: 0 10px 32px rgba(22, 48, 42, .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; }
  .hero-media img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ─── Responsive ─── */
@media (max-width: 940px) {
  .grid-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 300px; }
  .portrait { max-width: 320px; }
}

@media (max-width: 720px) {
  .nav-links, .nav-call { display: none; }
  .nav-toggle { display: flex; }
  .nav { background: rgba(22, 48, 42, .96); }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--ink);
    padding: 20px 24px 26px;
    gap: 18px;
    border-bottom: 2px solid var(--amber);
  }
  .mobile-call { display: inline-flex; }
  .footer-inner { padding-bottom: 112px; }
  .hero-content { padding-top: 116px; }
  .mi-head { flex-wrap: wrap; gap: 6px; }
  .mi-dots { display: none; }
}
