/* =========================================================
   THE BELHOR HEALING CENTER — stylesheet
   Desert Mystic palette, intentionally styled after
   early-2000s regional business sites (see design brief).
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&family=Cinzel:wght@400;600;700&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  /* Belhor brand palette — deep teal + gold, sampled from the founder's
     brochure cover and emblem mark. Variable names kept from the original
     build for compatibility with the rest of this stylesheet. */
  --terracotta-deep: #123f3a;   /* deep teal — primary accent text/borders */
  --terracotta: #1c6f66;        /* mid teal — masthead gradient, panel bars */
  --terracotta-light: #2f9c8d;  /* light teal — gradient highlights */
  --sand: #e6ddc4;
  --sand-light: #f7f2e3;
  --cream: #fbf7ec;
  --turquoise: #2f9c8d;
  --turquoise-deep: #1b6a60;
  --purple-deep: #0f3e39;       /* dark teal — nav bar, headings */
  --purple-darker: #082621;     /* darkest teal — page surround, footer */
  --gold: #cf9f3f;
  --gold-light: #ecc873;
  --ink: #2c241a;
  --ink-soft: #5a4f3c;
  --border-brown: #8a7548;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--purple-darker);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(201,162,39,0.10) 0, transparent 45%),
    radial-gradient(circle at 80% 60%, rgba(47,143,134,0.12) 0, transparent 50%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 40px);
}

a { color: var(--turquoise-deep); text-decoration: underline; cursor: pointer; }
a:hover { color: var(--terracotta-deep); }
/* looks like plain text (no color/underline giveaway), but the pointer
   cursor still changes on hover as a subtle "something's here" clue */
.quiet-link { color: inherit; text-decoration: none; cursor: pointer; }
.quiet-link:hover { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

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

/* ---------- page shell ---------- */

.page-outer {
  max-width: 1000px;
  margin: 18px auto;
  padding: 0 12px;
}

.page-shell {
  background: var(--cream);
  border: 1px solid var(--border-brown);
  box-shadow: 0 0 0 4px var(--purple-darker), 0 8px 24px rgba(0,0,0,0.45);
}

/* ---------- top utility bar ---------- */

.utility-bar {
  background: linear-gradient(to bottom, #f1e2c2, #e2caa0);
  border-bottom: 1px solid var(--border-brown);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  color: var(--ink-soft);
  padding: 4px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  justify-content: flex-end;
}
.utility-bar a { color: var(--terracotta-deep); text-decoration: none; }
.utility-bar a:hover { text-decoration: underline; }
.utility-bar span.sep { color: var(--border-brown); }

/* ---------- masthead / logo banner ---------- */

.masthead {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.18) 100%),
    linear-gradient(120deg, var(--terracotta-deep) 0%, var(--terracotta) 45%, var(--gold) 100%);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-bottom: 3px solid var(--purple-deep);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img.logo {
  height: 76px;
  width: 76px;
  object-fit: contain;
  background: var(--cream);
  border-radius: 50%;
  border: 2px solid var(--gold);
  padding: 4px;
}

.brand-text h1 {
  font-family: 'Tangerine', cursive;
  font-size: 58px;
  line-height: 0.9;
  margin: 0;
  color: var(--cream);
  text-shadow: 2px 2px 0 var(--purple-darker), 0 0 14px rgba(0,0,0,0.4);
}

.brand-text p.tagline {
  margin: 4px 0 0;
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--sand-light);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
}

.masthead-contact {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  color: var(--cream);
  text-align: right;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.35);
  line-height: 1.5;
}
.masthead-contact strong { color: var(--gold-light); }

/* ---------- primary nav ---------- */

.primary-nav {
  background: linear-gradient(to bottom, var(--purple-deep), var(--purple-darker));
  border-top: 1px solid var(--gold);
  border-bottom: 2px solid var(--purple-darker);
  padding: 0;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.primary-nav li { border-right: 1px solid rgba(255,255,255,0.15); }

.primary-nav a {
  display: block;
  padding: 10px 16px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sand-light);
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: var(--terracotta-deep);
  color: #fff;
}

/* Aura Portrait is the feature we most want a visitor to find — give it
   a gold accent everywhere so it reads as the one to click, not just on
   the phone-only reordered nav below. */
.primary-nav a[href="aura.html"] {
  color: var(--gold-light);
  font-weight: bold;
}

/* ---------- secondary link bar ---------- */

.secondary-bar {
  background: var(--sand);
  border-bottom: 1px solid var(--border-brown);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  padding: 5px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  color: var(--ink-soft);
}
.secondary-bar a { color: var(--turquoise-deep); text-decoration: none; }
.secondary-bar a:hover { text-decoration: underline; }
.secondary-bar span.sep { color: var(--border-brown); }

/* ---------- announcement marquee ---------- */

.announce {
  background: var(--turquoise-deep);
  color: var(--sand-light);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  padding: 6px 14px;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--gold);
}
.announce .track {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 22s linear infinite;
}
.announce a { color: var(--gold-light); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .announce .track { animation: none; padding-left: 0; }
}

/* ---------- welcome banner ---------- */

.welcome-banner {
  background: linear-gradient(to bottom, var(--sand-light), var(--sand));
  border-bottom: 1px solid var(--border-brown);
  padding: 14px 22px;
  text-align: center;
}
.welcome-banner h2 {
  font-family: 'Tangerine', cursive;
  font-size: 40px;
  margin: 0;
  color: var(--purple-deep);
}

/* ---------- content layout ---------- */

.content-wrap {
  display: flex;
  gap: 22px;
  padding: 22px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.sidebar {
  flex: 0 0 230px;
  background: var(--sand-light);
  border: 1px solid var(--border-brown);
  padding: 14px;
}

.sidebar img.portrait {
  border: 3px solid var(--cream);
  outline: 1px solid var(--border-brown);
  margin-bottom: 10px;
}

.sidebar blockquote {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: var(--purple-deep);
  margin: 0 0 8px;
  padding-left: 10px;
  border-left: 3px solid var(--gold);
}
.sidebar cite {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
  font-style: normal;
}

.sidebar-title {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  border-bottom: 1px solid var(--border-brown);
  padding-bottom: 6px;
  margin: 0 0 10px;
}

.main-col { flex: 1 1 480px; min-width: 260px; }

.main-col h2.section-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--terracotta-deep);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 6px;
  margin-top: 0;
}

.main-col h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--purple-deep);
}

.panel {
  background: #fff;
  border: 1px solid var(--border-brown);
  padding: 14px 16px;
  margin-bottom: 18px;
  /* contains floated children taller than the surrounding text, so a tall
     floated figure doesn't spill past the panel's border into whatever
     comes next */
  display: flow-root;
}

.panel-title-bar {
  background: linear-gradient(to bottom, var(--terracotta-light), var(--terracotta));
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--terracotta-deep);
  border-bottom: none;
}

/* ---------- buttons / links-as-buttons ---------- */

.btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(to bottom, var(--turquoise), var(--turquoise-deep));
  border: 1px solid var(--turquoise-deep);
  padding: 9px 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}
/* author styles beat the browser's own [hidden] -> display:none
   regardless of specificity, so the unconditional `display:
   inline-block` above needs this spelled out explicitly (same fix as
   .aura-stage img[hidden] and .aura-scroll-cue[hidden]) */
.btn[hidden] { display: none; }
.btn:hover { background: linear-gradient(to bottom, var(--terracotta-light), var(--terracotta-deep)); color: #fff; border-color: var(--terracotta-deep); }
.btn-gold {
  background: linear-gradient(to bottom, var(--gold-light), var(--gold));
  border-color: #8a6f14;
  color: var(--purple-darker);
}
.btn-gold:hover { color: var(--purple-darker); filter: brightness(1.06); }
.btn-pill { border-radius: 999px; padding: 9px 22px; }

/* ---------- services grid ---------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border-brown);
  padding: 14px;
  text-align: center;
}
.service-card .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  color: var(--terracotta-deep);
}
.service-card h3 { margin: 4px 0 6px; }

/* ---------- tables (events) ---------- */

table.retro-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
table.retro-table caption { caption-side: top; text-align: left; font-family: 'Cinzel', serif; font-size: 13px; padding-bottom: 6px; color: var(--purple-deep); }
table.retro-table th {
  background: var(--purple-deep);
  color: var(--sand-light);
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 10px;
  text-align: left;
}
table.retro-table td {
  border-bottom: 1px solid var(--sand);
  padding: 8px 10px;
  vertical-align: top;
}
table.retro-table tr:nth-child(even) td { background: var(--sand-light); }

/* On a phone the 3 columns (Date / Event / Description) get squeezed to
   under 40px each and the description wraps into towers of text — turn
   each row into a stacked card instead. */
@media (max-width: 640px) {
  table.retro-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  table.retro-table, table.retro-table tbody, table.retro-table tr, table.retro-table td { display: block; width: 100%; }
  table.retro-table tr {
    border: 1px solid var(--border-brown);
    margin-bottom: 12px;
    padding: 12px 14px;
  }
  table.retro-table tr:nth-child(even) td { background: transparent; }
  table.retro-table td { border-bottom: none; padding: 2px 0; }
  table.retro-table td:nth-child(1) {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--terracotta-deep);
  }
  table.retro-table td:nth-child(2) {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    color: var(--purple-deep);
    margin: 2px 0 6px;
  }
  table.retro-table td:nth-child(3) { font-size: 14px; color: var(--ink-soft); }
}

/* ---------- testimonials ---------- */

.testimonial {
  display: flex;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border-brown);
  padding: 14px;
  margin-bottom: 16px;
}
.testimonial > img { width: 64px; height: 64px; border: 2px solid var(--sand); flex-shrink: 0; object-fit: cover; }
.testimonial blockquote { margin: 0 0 6px; font-style: italic; }
.testimonial cite { font-size: 13px; color: var(--ink-soft); font-style: normal; }

/* ---------- gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.gallery-frame {
  background: #fff;
  border: 1px solid var(--border-brown);
  padding: 8px;
  text-align: center;
}
.gallery-frame img {
  border: 1px solid var(--sand);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.gallery-frame figcaption {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 6px;
}

@media (max-width: 640px) {
  /* A floated figure works fine on a wide desktop column, but on a
     narrow phone the float leaves so little room beside it that
     whatever follows — often a heading — gets squeezed into an
     unreadable sliver or visually overlaps the image instead of
     wrapping past it. Un-float every instance at this width so each
     image sits as its own full-width block, with the next element
     always starting cleanly below it. The !important is needed
     because each page sets float/width inline on individual figures.
     Text still reads narrower than the image in most spots, so it
     never has room to wrap alongside it. */
  .gallery-frame {
    float: none !important;
    width: 100% !important;
    margin: 0 0 14px !important;
    clear: both;
  }
}

/* ---------- forms ---------- */

.retro-form label {
  display: block;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  color: var(--ink-soft);
  margin: 12px 0 4px;
}
.retro-form input[type="text"],
.retro-form input[type="email"],
.retro-form input[type="tel"],
.retro-form select,
.retro-form textarea {
  width: 100%;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 15px;
  padding: 7px 9px;
  border: 1px solid var(--border-brown);
  background: var(--sand-light);
}
.retro-form textarea { resize: vertical; min-height: 100px; }
.retro-form .required { color: var(--terracotta-deep); }
.retro-form .helper { font-size: 11px; color: var(--ink-soft); font-family: Verdana, Geneva, sans-serif; }

.form-status {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  color: var(--ink-soft);
  min-height: 1.4em;
  margin: 10px 0 0;
}
.form-status.is-error { color: var(--terracotta-deep); font-weight: bold; }

/* ---------- footer ---------- */

footer.site-footer {
  background: var(--purple-darker);
  color: var(--sand-light);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  text-align: center;
  padding: 16px;
}
footer.site-footer a { color: var(--gold-light); }
footer.site-footer .footer-quote {
  font-family: 'Tangerine', cursive;
  font-size: 26px;
  color: var(--gold-light);
  margin-bottom: 8px;
}

/* ---------- fluid image hover (js/fluid-hover.js) ---------- */
/* Desktop-only enhancement: the script wraps a tagged <img> in
   a .fluid-wrap and overlays a WebGL canvas that renders the
   same image, distorted by cursor movement. The source <img>
   stays in normal flow (so existing sizing/aspect-ratio rules
   keep controlling layout) but is visually hidden once the
   canvas takes over. If the script can't run, the plain <img>
   is simply left alone. */

.fluid-wrap {
  position: relative;
}
.fluid-wrap img {
  visibility: hidden;
}
.fluid-wrap canvas.fluid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- gallery lightbox (js/lightbox.js) ---------- */

.gallery-frame.lightbox-trigger {
  cursor: zoom-in;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.gallery-frame.lightbox-trigger:hover,
.gallery-frame.lightbox-trigger:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}
.gallery-frame.lightbox-trigger:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 38, 33, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease;
}
.lightbox-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox-frame {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border-brown);
  box-shadow: 0 0 0 4px var(--purple-darker), 0 20px 50px rgba(0,0,0,0.5);
  max-width: min(92vw, 1100px);
  max-height: 92vh;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.96);
  transition: transform 220ms ease;
}
.lightbox-overlay.is-open .lightbox-frame {
  transform: scale(1);
}
.lightbox-frame img {
  max-width: 100%;
  max-height: 74vh;
  width: auto;
  height: auto;
  border: 1px solid var(--sand);
  object-fit: contain;
}
.lightbox-caption {
  margin: 12px 0 0;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--terracotta-deep);
  text-align: center;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: var(--purple-deep);
  color: var(--sand-light);
  border: 1px solid var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--terracotta-deep);
}
.lightbox-close {
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
}
.lightbox-prev { left: -8px; }
.lightbox-next { right: -8px; }

@media (max-width: 640px) {
  .lightbox-frame { padding: 10px; }
  .lightbox-close { top: -14px; right: 0; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox-overlay, .lightbox-frame { transition: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 640px) {
  .brand-text h1 { font-size: 42px; }
  .masthead { flex-direction: column; align-items: flex-start; }
  .masthead-contact { text-align: left; }
  .content-wrap { flex-direction: column; }
  .sidebar { flex: 1 1 auto; }

  /* The header stack (utility bar, masthead, nav, secondary links,
     ticker) was eating the entire first screen on a phone before a
     visitor reached any actual content. Trim it down: */
  .brand img.logo { height: 52px; width: 52px; }
  .masthead { padding: 12px 16px; gap: 10px; }
  .masthead-contact { display: none; } /* phone number is already in the utility bar; full address is on Directions */

  .primary-nav ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .primary-nav ul::-webkit-scrollbar { display: none; }
  .primary-nav li { flex: 0 0 auto; }
  .primary-nav a { padding: 12px 14px; font-size: 12px; }

  /* Aura Portrait is the feature we most want a phone visitor to find —
     pull it up to the second slot (right after Home) so it's on screen
     before anyone has to swipe the nav strip. The gold accent itself is
     a base rule now (applies on desktop too); this adds a tap-friendly
     underline on top of it when it isn't the current page. */
  .primary-nav li:has(a[href="index.html"]) { order: -2; }
  .primary-nav li:has(a[href="aura.html"]) { order: -1; }
  .primary-nav a[href="aura.html"]:not([aria-current="page"]) {
    box-shadow: inset 0 -2px 0 var(--gold);
  }

  .secondary-bar { display: none; } /* same links reachable via primary nav and the footer */
}

@media (max-width: 480px) {
  .brand-text h1 { font-size: 34px; }
  .brand-text p.tagline { font-size: 10px; letter-spacing: 1px; }
}

/* ---------- aura portrait (aura.html + js/aura.js) ---------- */

.aura-app { margin: 4px 0 8px; }

.aura-intro {
  background: var(--sand-light);
  border: 1px solid var(--border-brown);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  margin-bottom: 18px;
  font-size: 15px;
}
.aura-intro p { margin: 6px 0; }

.aura-stage {
  position: relative;
  background: var(--purple-darker);
  border: 1px solid var(--border-brown);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.6);
  aspect-ratio: 3 / 4;
  max-width: 460px;
  margin: 0 auto 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aura-stage video:not([hidden]),
.aura-stage canvas:not([hidden]),
.aura-stage img:not([hidden]) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* the site-wide `img { display: block }` reset outranks the browser's
   default [hidden] -> display:none (author styles beat user-agent ones
   regardless of specificity), so the gif needs it spelled out here */
.aura-stage img[hidden] { display: none; }
.aura-stage video.mirror { transform: scaleX(-1); }
.aura-stage .aura-placeholder {
  color: var(--sand);
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
  opacity: 0.7;
}
.aura-stage.is-busy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8,38,33,0.55);
  backdrop-filter: blur(2px);
}

.aura-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}
.aura-controls .btn { cursor: pointer; border: 1px solid var(--turquoise-deep); }
.aura-controls .btn[disabled] { opacity: 0.45; cursor: default; pointer-events: none; }

.aura-status {
  text-align: center;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  color: var(--ink-soft);
  min-height: 1.4em;
  margin-bottom: 14px;
}
.aura-status.is-error { color: var(--terracotta-deep); font-weight: bold; }

.aura-touch-hint {
  text-align: center;
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  margin: -6px 0 14px;
}

.aura-scroll-cue {
  display: block;
  margin: 0 auto 18px;
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  animation: aura-scroll-cue-bob 1.6s ease-in-out infinite;
}
.aura-scroll-cue span { display: inline-block; margin-left: 2px; }
/* author styles beat the browser's own [hidden] -> display:none
   regardless of specificity, so the unconditional `display: block`
   above needs this spelled out explicitly (same issue as the
   pendulum-gif fix in .aura-stage img[hidden]) */
.aura-scroll-cue[hidden] { display: none; }
@keyframes aura-scroll-cue-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .aura-scroll-cue { animation: none; }
}

.aura-reading { margin-top: 8px; }
.aura-reading .panel-title-bar { margin-top: 0; }
.aura-reading .aura-name {
  font-family: 'Tangerine', cursive;
  font-size: 40px;
  line-height: 1.1;
  color: var(--terracotta-deep);
  text-align: center;
  margin: 10px 0 4px;
}
.aura-reading .aura-essence {
  font-size: 17px;
  margin: 10px 0 14px;
}
.aura-layers { list-style: none; padding: 0; margin: 0 0 14px; }
.aura-layers li {
  padding: 10px 0 10px 44px;
  position: relative;
  border-bottom: 1px solid var(--sand);
  font-size: 15px;
}
.aura-layers li:last-child { border-bottom: none; }
.aura-swatch {
  position: absolute;
  left: 6px;
  top: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-brown);
  box-shadow: 0 0 10px currentColor;
}
.aura-layers .zone-name {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--purple-deep);
  display: block;
}
.aura-guidance {
  background: #fff;
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  margin: 0 0 12px;
  font-size: 15px;
}
.aura-closing {
  font-family: 'Tangerine', cursive;
  font-size: 24px;
  color: #000;
  text-align: center;
  margin: 6px 0 0;
}
.aura-disclaimer {
  font-size: 11px;
  font-family: Verdana, Geneva, sans-serif;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 14px;
}
.aura-offline-note {
  font-size: 11px;
  font-family: Verdana, Geneva, sans-serif;
  color: var(--terracotta-deep);
  text-align: center;
  margin-top: 6px;
}
.aura-held-note {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--turquoise-deep);
  text-align: center;
  margin: 2px 0 4px;
}

@media (max-width: 640px) {
  .aura-stage { max-width: 100%; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
