@font-face {
  font-family: Inter;
  src: url(assets/inter.woff2);
}
@font-face {
  font-family: Cinzel;
  src: url(assets/cinzel-decorative.woff2);
}
:root {
  --bg: #090a12;
  --ivory: #f3eee5;
  --muted: #b8b2c3;
  --gold: #c8a766;
  --violet: #7760a8;
  --line: #ffffff20;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background:
    radial-gradient(circle at 80% 50%, #21152c 0, transparent 35%), var(--bg);
  color: var(--ivory);
  font:
    16px/1.7 Inter,
    Arial,
    sans-serif;
}
body > main,
body > footer,
body > .skip {
  position: relative;
  z-index: 1;
}
body > header {
  position: absolute;
  z-index: 20;
}
#page-ambient {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at 70% 30%, #21152c, #090a12 68%);
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3 {
  font-family: Cinzel, Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
  margin: 0;
}
h1 {
  font-size: clamp(3rem, 7vw, 7rem);
}
h2 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}
h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
}
em {
  color: #ddd4f6;
}
.skip {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 50;
  background: #fff;
  color: #000;
  padding: 0.7rem;
}
.skip:focus {
  top: 1rem;
}
header {
  position: absolute;
  z-index: 20;
  left: 5%;
  right: 5%;
  top: 0;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.logo {
  text-decoration: none;
  font-family: Cinzel;
  font-size: 1.3rem;
}
.logo i,
.kicker {
  color: var(--gold);
}
nav {
  display: flex;
  gap: clamp(0.7rem, 1.35vw, 2rem);
  align-items: center;
  min-width: 0;
  margin-right: 0;
}
header > nav {
  position: absolute;
  right: 0;
  max-width: calc(100% - 230px);
  justify-content: flex-end;
  transform: none;
}
nav a {
  flex-shrink: 0;
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.book,
.primary {
  display: inline-flex;
  padding: 0.8rem 1.2rem;
  border: 1px solid #d8c18f;
  background: #d8c18f;
  color: #111;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
}
.menu {
  display: none;
}
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 8rem 7%;
  overflow: hidden;
}
.scene {
  position: absolute;
  inset: 0;
  background: #080a13;
  perspective: 1200px;
}
.scene:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #080a13dd 0,
    #080a1399 28%,
    transparent 58%
  );
  pointer-events: none;
}
.scene canvas,
.scene-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.scene-fallback {
  background:
    linear-gradient(90deg, #080a13 7%, transparent 60%),
    linear-gradient(0deg, #090a12, transparent 35%),
    url(assets/cinematic-michelle-hero.jpg) 55% center/cover no-repeat;
  transition: opacity 0.8s ease;
}
.webgl-ready .scene-fallback {
  opacity: 0;
}
.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 710px;
}
.hero-copy > p:not(.kicker) {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.15rem;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.23em;
  font-size: 0.68rem;
}
.actions {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}
.concept {
  position: absolute;
  bottom: 1.2rem;
  right: 2rem;
  color: #aaa;
  font-size: 0.65rem;
}
.intro {
  padding: 9rem 7%;
  max-width: 1100px;
}
.intro h2 {
  margin: 0.5rem 0 1.5rem;
}
.intro > p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.2rem;
}
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-block: 1px solid var(--line);
  background: #090a1266;
}
.services article {
  min-height: 380px;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, #ffffff0b, #120d1a44);
  border-right: 1px solid var(--line);
}
.services article > p {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}
.services a {
  color: #d8c18f;
}
.michelle {
  padding: 10rem 7%;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 8vw;
  align-items: center;
}
.michelle img {
  max-height: 720px;
  width: 100%;
  object-fit: cover;
  object-position: center 25%;
  border: 1px solid #b693dd55;
  box-shadow: -25px 25px 0 #322344;
}
.michelle h2 {
  margin: 0.5rem 0 2rem;
}
.michelle p:not(.kicker) {
  color: var(--muted);
  max-width: 650px;
}
.selector,
.tarot {
  margin: 3rem 5%;
  padding: 6rem;
  background: linear-gradient(125deg, #25172fcc, #0e101bb8);
  backdrop-filter: blur(3px);
  border: 1px solid var(--line);
}
.choices {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.choices button,
.cards button {
  color: var(--ivory);
  background: #ffffff08;
  border: 1px solid #ffffff28;
  padding: 1rem;
  font: inherit;
}
.choices button:hover,
.choices button:focus {
  border-color: var(--gold);
}
.cards {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}
.cards button {
  width: 150px;
  padding: 0;
  transition: 0.4s;
}
.cards button:hover {
  transform: translateY(-12px);
}
.quote,
.cta {
  text-align: center;
  padding: 10rem 8%;
  background: radial-gradient(circle, #3a234744, transparent 60%);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-grid figure {
  margin: 0;
  padding: 2rem;
  text-align: left;
  background: #0b0b16a6;
  border: 1px solid #ffffff24;
  backdrop-filter: blur(4px);
}
.testimonial-grid blockquote {
  font-size: clamp(1.25rem, 2vw, 2rem);
}
.testimonial-grid figcaption {
  margin-top: 1.5rem;
  color: var(--gold);
}
.contact-details {
  padding: 7rem 7%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: end;
  background: #08091380;
  border-block: 1px solid var(--line);
  backdrop-filter: blur(3px);
}
.contact-details address {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-style: normal;
  color: var(--muted);
}
blockquote {
  font: clamp(2rem, 4vw, 4rem)/1.3 Cinzel;
  margin: auto;
  max-width: 1000px;
}
.quote p {
  color: var(--gold);
}
.cta h2 {
  margin: 0.5rem auto 2rem;
  max-width: 850px;
}
footer {
  padding: 5rem 7%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
footer div {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.page {
  padding: 10rem 7% 7rem;
  max-width: 1250px;
  margin: auto;
}
.page h1 {
  margin-bottom: 2rem;
}
.page p {
  max-width: 760px;
  color: var(--muted);
}
.panel {
  padding: 2rem;
  margin: 1rem 0;
  border: 1px solid var(--line);
  background: #ffffff05;
}
.inner-page {
  min-height: 100svh;
  background: #070811;
}
.inner-page .page {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 1240px);
  min-height: 80svh;
  padding: clamp(10rem, 15vw, 13rem) clamp(1.25rem, 6vw, 6rem) 8rem;
  background: linear-gradient(135deg, #090a12b8, #17102391 58%, #0a0b14b8);
  border-inline: 1px solid #ffffff0c;
  box-shadow: 0 40px 120px #0005;
}
.inner-page .page::before {
  content: "✦";
  position: absolute;
  top: 8rem;
  right: 6%;
  color: #c8a76655;
  font-size: clamp(4rem, 10vw, 9rem);
  text-shadow: 0 0 80px #9062bf88;
}
.inner-page .page > .kicker,
.inner-page .page > h1,
.inner-page .page > p {
  position: relative;
  z-index: 1;
}
.inner-page .page > h1 {
  max-width: 970px;
  margin: 0.5rem 0 2.5rem;
  text-wrap: balance;
}
.inner-page .page > p {
  max-width: 760px;
  font-size: 1.05rem;
}
.inner-page .panel {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: clamp(1.75rem, 4vw, 3.5rem);
  margin: 1.25rem 0;
  background: linear-gradient(135deg, #ffffff0b, #21152e80);
  border: 1px solid #ffffff20;
  box-shadow:
    inset 0 1px #ffffff09,
    0 24px 55px #0002;
  backdrop-filter: blur(8px);
}
.inner-page .panel::after {
  content: "";
  position: absolute;
  inset: auto -6rem -8rem auto;
  width: 17rem;
  height: 17rem;
  border: 1px solid #c8a76618;
  border-radius: 50%;
  box-shadow:
    0 0 0 2rem #9a67c00a,
    0 0 0 4rem #9a67c008;
  pointer-events: none;
}
.inner-page details.panel {
  min-height: auto;
  padding: 0;
}
.inner-page details summary {
  padding: 1.75rem 2rem;
  cursor: pointer;
  color: var(--ivory);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.15rem;
}
.inner-page details[open] summary {
  color: var(--gold);
}
.inner-page details p {
  padding: 0 2rem 1.75rem;
}
.inner-page .page > img {
  width: min(540px, 100%) !important;
  margin: 3rem 0 !important;
  border: 1px solid #c8a76655;
  box-shadow:
    -24px 24px #30213e,
    0 30px 80px #0008;
}
.inner-page .services {
  margin: 4rem 0;
  background: #0a0a13a6;
  backdrop-filter: blur(8px);
}
.inner-page .services article {
  position: relative;
  min-height: 350px;
  padding-right: 10rem;
  background-repeat: no-repeat;
  background-position: calc(100% + 1.3rem) 50%;
  background-size: 10rem auto;
}
.inner-page .services article:nth-child(1) {
  background-image:
    linear-gradient(145deg, #ffffff08, transparent), url(assets/card-sun.png);
}
.inner-page .services article:nth-child(2) {
  background-image:
    linear-gradient(145deg, #ffffff08, transparent),
    url(assets/card-magician.png);
}
.inner-page .services article:nth-child(3) {
  background-image:
    linear-gradient(145deg, #ffffff08, transparent),
    url(assets/card-empress.png);
}
.inner-page .services article:nth-child(4) {
  background-image:
    linear-gradient(145deg, #ffffff08, transparent), url(assets/card-star.png);
}
.inner-page .services strong {
  font:
    400 2rem Cinzel,
    Georgia,
    serif;
}
.inner-page .guidance-art {
  width: min(190px, 30%);
  filter: drop-shadow(0 24px 30px #0009);
}
.inner-page footer {
  background: #070811d9;
  backdrop-filter: blur(10px);
}
.guidance-art {
  width: min(190px, 35%);
  float: right;
  margin: 0 0 1.5rem 2rem;
}
.legacy-readings {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 8rem max(1.5rem, calc((100vw - 1280px) / 2));
  background: linear-gradient(150deg, #07050cee, #24132ed4 52%, #130d1bf0);
  border-block: 1px solid var(--line);
}
.legacy-readings::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.2;
  background-image: radial-gradient(circle, #ffffffbf 0.7px, transparent 0.8px);
  background-size: 34px 34px;
  mask-image: linear-gradient(115deg, black, transparent 72%);
}
.legacy-heading {
  max-width: 730px;
  margin-bottom: 3.5rem;
}
.legacy-heading h2 {
  margin: 0.6rem 0 1.2rem;
}
.legacy-heading > p:last-child,
.legacy-offering p:not(.offering-note) {
  color: var(--muted);
}
.legacy-offerings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  box-shadow: 0 35px 90px #0003;
}
.legacy-offering {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 420px;
  padding: 2.7rem 10.5rem 2.7rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, #ffffff08, transparent);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.legacy-offering:nth-child(even) {
  border-right: 0;
}
.legacy-offering.featured {
  background: linear-gradient(135deg, #d7b76619, #69369b40);
  box-shadow: inset 4px 0 #8d5bd773;
}
.legacy-offering > img {
  position: absolute;
  z-index: -1;
  right: -1.4rem;
  top: 50%;
  width: 10.5rem;
  max-height: 17rem;
  object-fit: contain;
  opacity: 0.48;
  filter: drop-shadow(0 20px 22px #000b) saturate(0.8);
  transform: translateY(-50%) rotate(5deg);
  transition:
    opacity 0.35s ease,
    transform 0.5s ease;
}
.legacy-offering:nth-child(even) > img {
  transform: translateY(-50%) rotate(-5deg);
}
.legacy-offering:hover > img {
  opacity: 0.7;
  transform: translateY(-53%) rotate(2deg);
}
.offering-note {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.legacy-offering h3 {
  max-width: 430px;
  margin-bottom: 1rem;
}
.legacy-offering a {
  color: #e4c878;
  text-underline-offset: 0.3rem;
}
.legacy-price {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}
.legacy-price strong {
  font:
    400 2.5rem Cinzel,
    Georgia,
    serif;
}
.legacy-price span {
  color: var(--muted);
  font-size: 0.8rem;
}
.legacy-testimonials {
  position: relative;
  width: min(100% - 3rem, 1180px);
  margin: 10rem auto;
  padding: 3rem 0 2rem;
}
.testimonial-emblem {
  position: absolute;
  right: 1rem;
  top: -2rem;
  width: 11rem;
  opacity: 0.22;
}
.legacy-heading.compact {
  margin-bottom: 2rem;
}
.legacy-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.legacy-quotes figure {
  position: relative;
  margin: 0;
  padding: 2.5rem 2.2rem 1rem 0;
}
.legacy-quotes figure::before {
  display: block;
  margin-bottom: 1.2rem;
  content: "✦  ·  ✦";
  color: #d7b7668c;
  font-size: 0.62rem;
  letter-spacing: 0.45em;
}
.legacy-quotes figure + figure {
  padding-left: 2.2rem;
  border-left: 1px solid var(--line);
}
.legacy-quotes blockquote {
  margin: 0 0 1.4rem;
  font-size: 1.55rem;
  line-height: 1.35;
}
.legacy-quotes figcaption {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.legacy-contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(100% - 3rem, 1180px);
  margin: 0 auto 6rem;
  padding: clamp(2.5rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  background: linear-gradient(125deg, #70379dbd, #191324e6 60%, #6e4b2347);
  border: 1px solid #c8a7ff61;
  box-shadow:
    0 35px 100px #0005,
    0 0 65px #733caa1f,
    inset 0 1px #ffffff0a;
}
.legacy-contact::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: 0.2;
  background-image: radial-gradient(circle, #ffffffe6 0.7px, transparent 0.9px);
  background-size: 29px 29px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}
.contact-wheel {
  position: absolute;
  z-index: -1;
  right: -7rem;
  top: -8rem;
  width: 28rem;
  opacity: 0.09;
}
.legacy-contact h2 {
  margin: 0.5rem 0 1.2rem;
}
.legacy-contact p:not(.kicker) {
  max-width: 620px;
  color: var(--muted);
}
.legacy-contact address {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  font-style: normal;
}
.legacy-contact address a {
  color: #e4c878;
}
.legacy-contact address span {
  color: var(--muted);
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
  }
  .scene canvas {
    display: none;
  }
  .scene-fallback {
    opacity: 1;
  }
}
.reading-access {
  border: 1px solid var(--line);
  padding: 0.72rem 1rem;
  white-space: nowrap;
}
.portal-page,
.reading-page {
  min-height: calc(100vh - 70px);
}
.booking-page {
  max-width: 1380px;
}
.booking-shell {
  margin: 3rem 0 2rem;
  overflow: hidden;
  border: 1px solid #c8a76655;
  border-radius: 4px;
  background: #0b0b13e8;
  box-shadow:
    0 35px 90px #0006,
    0 0 60px #7c4a9c24;
}
.booking-shell .calendly-inline-widget {
  width: 100%;
}
.booking-fallback {
  padding-bottom: 1rem;
}
.booking-fallback a {
  color: var(--gold);
}
.portal-intro {
  max-width: 760px;
  color: var(--muted);
}
.portal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.portal-card,
.chat-panel {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: rgba(10, 9, 18, 0.88);
}
.portal-card form,
.portal-card label,
.portal-card > label {
  display: grid;
  gap: 0.45rem;
}
.portal-card form,
.portal-card {
  gap: 1rem;
}
.portal-card input,
.portal-card select,
.chat-form input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0;
  color: #fff;
  background: #11101b;
  font: inherit;
}
.portal-card button,
.call-controls button,
.chat-form button,
.portal-card .primary {
  width: fit-content;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--line);
  color: #fff;
  background: #171321;
  font: inherit;
  cursor: pointer;
}
.portal-card .primary,
.call-controls .primary {
  color: #160d1f;
  border-color: #ddc8ed;
  background: #ddc8ed;
}
#signed-out .portal-card {
  display: flex;
  flex-direction: column;
}
#signed-out .portal-card button.primary {
  position: relative;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin-top: auto;
  padding: 1rem 1.5rem;
  overflow: hidden;
  border: 1px solid #ead5a9;
  box-shadow:
    0 12px 30px #08050e80,
    inset 0 1px #fff8;
  color: #17101f;
  background: linear-gradient(115deg, #f3e5c6 0%, #ddc8ed 52%, #c8a766 140%);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    filter 180ms ease;
}
#signed-out .portal-card button.primary:hover {
  transform: translateY(-2px);
  border-color: #fff0c9;
  box-shadow:
    0 16px 38px #08050ea8,
    0 0 28px #9d66d638,
    inset 0 1px #fff;
  filter: brightness(1.06);
}
#signed-out .portal-card button.primary:active {
  transform: translateY(0);
  box-shadow:
    0 7px 18px #08050e99,
    inset 0 2px 5px #5b416133;
}
#signed-out .portal-card button.primary:focus-visible {
  outline: 3px solid #f4d892;
  outline-offset: 4px;
}
#signed-out .portal-card small {
  min-height: 1.4rem;
  color: var(--muted);
}
.portal-notice {
  margin-top: 1.2rem;
  padding: 0.8rem 1rem;
  border-left: 3px solid #9dd8ea;
  background: #10222a;
}
.portal-notice.error {
  border-color: #ff8b8b;
  background: #2a1218;
}
.room-entry {
  margin: 1rem 0;
}
.booking-lead {
  max-width: 760px;
}
.booking-gate,
.schedule-panel,
.account-commerce {
  margin-top: 3rem;
  padding: clamp(1.4rem, 3vw, 3rem);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #28183ee8, #12111be8);
}
.commerce-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.commerce-product {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 340px;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #171421cc;
}
.commerce-product h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}
.commerce-product strong {
  font:
    2rem Cinzel,
    serif;
  color: var(--ivory);
}
.commerce-product .primary {
  justify-self: start;
  margin-top: auto;
}
.credit-badge,
.status-pill {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border: 1px solid #c8a76680;
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.schedule-controls {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 1rem;
}
.schedule-controls label {
  display: grid;
  gap: 0.45rem;
}
.available-times {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.available-times button {
  border-color: #c8a76680;
}
.commerce-history {
  margin-top: 4rem;
}
.commerce-table {
  border-top: 1px solid var(--line);
}
.commerce-table > div {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.account-commerce-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}
.credit-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 2rem 0;
  background: var(--line);
}
.credit-list article {
  display: grid;
  gap: 0.5rem;
  padding: 1.25rem;
  background: #15131e;
}
.credit-list strong {
  font:
    2.4rem Cinzel,
    serif;
  color: var(--gold);
}
.empty-state {
  color: #c8c1d0;
}
.form-error {
  color: #ffb5b5;
}
.inline-form {
  display: flex !important;
  align-items: end;
  flex-wrap: wrap;
}
.inline-form label {
  flex: 1 1 260px;
}
.created-room {
  margin-top: 1rem;
  padding: 1rem;
  border-left: 2px solid #9dd8ea;
}
.created-room mark {
  padding: 0.3rem 0.5rem;
  color: #fff;
  background: #3a214b;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}
.text-button {
  margin-top: 1rem;
  background: transparent !important;
}
.room-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}
.call-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 1.5rem 0 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #07070d;
}
.call-stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#local-video {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(26%, 230px);
  height: auto;
  aspect-ratio: 4/3;
  border: 1px solid #fff8;
  background: #111;
}
#video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.5rem;
  text-align: center;
  color: var(--muted);
}
#video-placeholder[hidden] {
  display: none;
}
.call-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.call-controls button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.messages {
  min-height: 180px;
  max-height: 330px;
  overflow-y: auto;
  padding: 1rem;
  border: 1px solid var(--line);
  background: #090811;
}
.chat-message,
.system-message {
  margin: 0 0 0.75rem;
}
.system-message {
  color: var(--muted);
  font-size: 0.9rem;
}
.chat-form {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.75rem;
}
.chat-form input {
  flex: 1;
}
.privacy-note {
  color: var(--muted);
  font-size: 0.85rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 1650px) {
  header {
    height: 70px;
    right: 5%;
  }
  .menu {
    display: block;
    position: absolute;
    right: 0;
    margin-left: 0;
    padding: 0.65rem 0.8rem;
    border: 1px solid var(--line);
    color: #fff;
    background: #11131e;
    font: inherit;
    cursor: pointer;
  }
  .menu + nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    padding: 1.25rem;
    border: 1px solid var(--line);
    background: #11131ef7;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-right: 0;
    max-width: none;
    transform: none;
  }
  .menu + nav.open {
    display: flex;
  }
  .menu + nav a {
    padding: 0.85rem;
    border-bottom: 1px solid var(--line);
  }
  .menu + nav .book,
  .menu + nav .reading-access {
    margin-top: 0.55rem;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 850px) {
  header {
    height: 70px;
  }
  .menu {
    display: block;
    background: none;
    border: 0;
    color: #fff;
  }
  .menu + nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 2rem;
    background: #11131e;
    flex-direction: column;
  }
  .menu + nav.open {
    display: flex;
  }
  .hero {
    padding: 7rem 1.2rem 3rem;
    align-items: end;
  }
  .commerce-products {
    grid-template-columns: 1fr;
  }
  .schedule-controls {
    grid-template-columns: 1fr;
  }
  .commerce-table > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .credit-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .account-commerce-heading {
    align-items: start;
    flex-direction: column;
  }
  .scene {
    opacity: 0.72;
  }
  .scene-fallback {
    background-position: 66% center;
  }
  .hero-copy {
    background: linear-gradient(90deg, #090a12ee, #090a1266);
    padding: 1.5rem;
  }
  .concept {
    display: none;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .testimonial-grid,
  .contact-details {
    grid-template-columns: 1fr;
  }
  .legacy-offerings,
  .legacy-quotes,
  .legacy-contact {
    grid-template-columns: 1fr;
  }
  .legacy-offering {
    min-height: 390px;
    padding: 2.2rem 7.5rem 2.2rem 1.5rem;
    border-right: 0;
  }
  .legacy-quotes figure + figure {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .inner-page .page {
    width: 100%;
    padding-inline: 1.2rem;
  }
  .inner-page .page::before {
    top: 6rem;
  }
  .inner-page .services article {
    padding-right: 7.5rem;
  }
  .inner-page .guidance-art {
    float: none;
    display: block;
    width: min(115px, 34%);
    margin: 0 0 1.5rem auto;
  }
  .inner-page .panel > .kicker,
  .inner-page .panel > h2 {
    clear: both;
  }
  .services article {
    min-height: 300px;
    border-right: 0;
  }
  .michelle {
    grid-template-columns: 1fr;
    padding: 6rem 1.2rem;
  }
  .selector,
  .tarot {
    margin: 1rem;
    padding: 3rem 1.2rem;
  }
  .cards {
    justify-content: center;
  }
  .cards button {
    width: 29%;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .portal-grid {
    grid-template-columns: 1fr;
  }
  .room-heading {
    align-items: start;
    flex-direction: column;
  }
  .call-stage {
    aspect-ratio: 3 / 4;
  }
  #local-video {
    width: 34%;
  }
  .chat-form {
    align-items: stretch;
    flex-direction: column;
  }
}
