
/* ===== Auraria V3 — Canonical Design + Living Pages elements ===== */
:root {
  --aur-forest: #163029;
  --aur-cream: #F5F1EA;
  --aur-gold: #C9A96E;
  --aur-white: #FFFFFF;
  --aur-black: #000000;
  --lp-purple: #8B67F6;
  --lp-green: #00E676;
}
body.auraria-v3 {
  font-family: 'Avenir', 'Avenir Next', 'Work Sans', system-ui, sans-serif;
  font-weight: 350;
  font-size: 16px;
  line-height: 22.4px;
  color: var(--aur-black);
  background: var(--aur-white);
  margin: 0;
}
.auraria-v3 h1, .auraria-v3 h2, .auraria-v3 h3 {
  font-family: 'Gotham', 'Work Sans', 'Inter', system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: 1.6px;
  color: var(--aur-forest);
}
.auraria-v3 h1 { font-size: clamp(2rem, 5vw, 3.3rem); line-height: 1.15; margin: 0 0 24px; }
.auraria-v3 h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); line-height: 1.2; margin: 0 0 16px; }
.auraria-v3 .label-eyebrow {
  font-family: 'Avenir', 'Work Sans', system-ui, sans-serif;
  font-size: 14px; font-weight: 350; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--aur-forest); margin: 0 0 12px;
}
.auraria-v3 p { margin: 0 0 16px; }

/* Canonical button */
.btn-aur {
  display: inline-block;
  background: transparent;
  color: var(--aur-forest);
  border: 2px solid var(--aur-forest);
  border-radius: 0;
  padding: 8.8px 24px;
  font-family: 'Avenir', system-ui, sans-serif;
  font-size: 16px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 2.4px;
  text-decoration: none; cursor: pointer;
  transition: all 200ms ease;
}
.btn-aur:hover { background: var(--aur-forest); color: var(--aur-white); }
.btn-aur--inverse { color: var(--aur-white); border-color: var(--aur-white); }
.btn-aur--inverse:hover { background: var(--aur-white); color: var(--aur-forest); }

/* ===== HERO ===== */
.aur-hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(rgba(22,48,41,.55), rgba(22,48,41,.65)),
              url('/web/image/12509') center/cover no-repeat;
  color: var(--aur-white); text-align: center; padding: 120px 24px 80px;
}
.aur-hero h1 { color: var(--aur-white); }
.aur-hero p { color: var(--aur-white); font-size: 18px; max-width: 640px; margin: 0 auto 32px; }
.aur-hero .label-eyebrow { color: var(--aur-white); }
.aur-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== ETHEREAL PRESENCE — forest-green aurora orbs ===== */
.aur-ethereal {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.aur-ethereal::before, .aur-ethereal::after {
  content: ""; position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,48,41,.18) 0%, transparent 70%);
  filter: blur(40px);
  animation: aurFloat 18s ease-in-out infinite;
}
.aur-ethereal::before {
  width: 600px; height: 600px; top: -150px; left: -150px;
}
.aur-ethereal::after {
  width: 800px; height: 800px; bottom: -200px; right: -200px;
  animation-delay: -9s;
  background: radial-gradient(circle, rgba(201,169,110,.12) 0%, transparent 70%);
}
@keyframes aurFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(60px,-40px) scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
  .aur-ethereal::before, .aur-ethereal::after { animation: none; }
}

/* ===== SCENE SECTION ===== */
.aur-scene {
  position: relative; z-index: 1;
  padding: 96px 24px;
  max-width: 1200px; margin: 0 auto;
}
.aur-scene + .aur-scene { border-top: 1px solid rgba(22,48,41,.1); }
.aur-scene-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 768px) {
  .aur-scene-grid { grid-template-columns: 1fr; gap: 32px; }
  .aur-scene { padding: 56px 20px; }
}
.aur-scene-num {
  font-family: 'Gotham', 'Work Sans', system-ui, sans-serif;
  font-size: 96px; font-weight: 500; color: var(--aur-gold);
  line-height: 1; margin: 0 0 16px;
}
.aur-scene-image {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; display: block;
  background: var(--aur-cream);
}
/* Even scenes flip image+text */
.aur-scene:nth-child(even) .aur-scene-grid > .aur-scene-text { order: 2; }
.aur-scene:nth-child(even) .aur-scene-grid > .aur-scene-media { order: 1; }
@media (max-width: 768px) {
  .aur-scene:nth-child(even) .aur-scene-grid > .aur-scene-text,
  .aur-scene:nth-child(even) .aur-scene-grid > .aur-scene-media { order: 0; }
}

/* ===== EMBEDDED SCENE PLAYER ===== */
.aur-player {
  margin-top: 24px; padding: 16px;
  border: 2px solid var(--aur-forest);
}
.aur-player-row { display: flex; align-items: center; gap: 16px; }
.aur-player-btn {
  width: 44px; height: 44px; border-radius: 0;
  border: 2px solid var(--aur-forest); background: transparent;
  color: var(--aur-forest); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: all 200ms ease;
  flex-shrink: 0;
}
.aur-player-btn:hover { background: var(--aur-forest); color: var(--aur-white); }
.aur-player-btn[aria-pressed="true"] { background: var(--aur-forest); color: var(--aur-white); }
.aur-player-progress {
  flex: 1; height: 4px; background: rgba(22,48,41,.15); position: relative; cursor: pointer;
}
.aur-player-progress-fill {
  position: absolute; left: 0; top: 0; height: 100%;
  background: var(--aur-forest); width: 0%; transition: width .1s linear;
}
.aur-player-time {
  font-family: 'Avenir', system-ui, monospace; font-size: 12px;
  letter-spacing: 1.2px; color: var(--aur-forest); min-width: 76px; text-align: right;
}
.aur-player-caption {
  margin-top: 12px; font-size: 14px; line-height: 1.5;
  color: var(--aur-forest); min-height: 42px;
  font-style: italic; opacity: 0; transition: opacity .3s ease;
}
.aur-player-caption.visible { opacity: 1; }

/* ===== BEACON (canonical Living Pages bottom-left) ===== */
.lp-beacon {
  position: fixed; bottom: 28px; left: 28px;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--lp-purple); color: var(--aur-white);
  border: none; padding: 0; cursor: pointer; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Avenir', system-ui, sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase;
  animation: lpBreath 4.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(139,103,246,.55);
  transition: background .3s ease, color .3s ease, box-shadow .3s ease;
}
.lp-beacon.playing {
  background: var(--lp-green); color: #021816;
  animation: lpBreathPlay 1.6s ease-in-out infinite;
}
@keyframes lpBreath {
  0%,100% { box-shadow: 0 0 0 0 rgba(139,103,246,.55); transform: scale(1); }
  50% { box-shadow: 0 0 0 18px rgba(139,103,246,0); transform: scale(1.04); }
}
@keyframes lpBreathPlay {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,230,118,.6); transform: scale(1); }
  50% { box-shadow: 0 0 0 16px rgba(0,230,118,0); transform: scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .lp-beacon { animation: none; }
}

/* ===== COMPANION (bottom-right comms chip) ===== */
.lp-companion {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 1000;
  display: flex; align-items: center; gap: 8px;
  background: var(--aur-forest); color: var(--aur-white);
  padding: 12px 20px;
  font-family: 'Avenir', system-ui, sans-serif;
  font-size: 13px; letter-spacing: 1.6px; text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(22,48,41,.18);
  transition: transform .3s ease;
}
.lp-companion-actions {
  display: flex; gap: 4px; margin-left: 8px;
}
.lp-companion-btn {
  width: 36px; height: 36px; border-radius: 0;
  background: transparent; color: var(--aur-white);
  border: 1px solid rgba(255,255,255,.4);
  font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 200ms ease; text-decoration: none;
}
.lp-companion-btn:hover { background: var(--aur-white); color: var(--aur-forest); }
@media (max-width: 600px) {
  .lp-companion { right: 16px; bottom: 16px; padding: 10px 14px; font-size: 11px; }
  .lp-beacon { left: 16px; bottom: 16px; width: 60px; height: 60px; font-size: 10px; }
}

/* ===== SHELF (slides from left on Beacon click) ===== */
.lp-shelf {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 320px; max-width: 80vw;
  background: var(--aur-forest); color: var(--aur-white);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform .35s ease;
  padding: 32px 24px; overflow-y: auto;
}
.lp-shelf.visible { transform: translateX(0); }
.lp-shelf h3 {
  color: var(--aur-white); font-size: 13px;
  letter-spacing: 2.4px; text-transform: uppercase;
  margin: 0 0 24px;
}
.lp-shelf-item {
  display: block; padding: 14px 0; color: var(--aur-white);
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.15);
  font-size: 14px; cursor: pointer;
}
.lp-shelf-item:hover { color: var(--lp-green); }
.lp-shelf-num { color: var(--aur-gold); margin-right: 12px; font-weight: 500; }
.lp-shelf-close {
  position: absolute; top: 16px; right: 16px;
  background: transparent; border: 1px solid var(--aur-white);
  color: var(--aur-white); width: 36px; height: 36px;
  cursor: pointer; font-size: 18px;
}
.lp-shelf-close:hover { background: var(--aur-white); color: var(--aur-forest); }

/* ===== MARQUEE ===== */
.lp-marquee {
  position: fixed; bottom: 110px; left: 0; right: 0;
  background: rgba(22,48,41,.9); color: var(--aur-white);
  padding: 8px 0; z-index: 999; overflow: hidden;
  font-size: 13px; letter-spacing: 1.2px;
  transform: translateY(100%); opacity: 0;
  transition: transform .6s ease, opacity .6s ease;
}
.lp-marquee.visible { transform: translateY(0); opacity: 1; }
.lp-marquee-track {
  display: inline-block; white-space: nowrap;
  animation: lpMarquee 28s linear infinite; padding-left: 100%;
}
.lp-marquee-track span { margin-right: 80px; }
@keyframes lpMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .lp-marquee-track { animation: none; }
}

/* ===== ANCHOR scroll offset ===== */
.aur-scene { scroll-margin-top: 24px; }

/* ===== Footer ===== */
.aur-footer {
  background: var(--aur-forest); color: var(--aur-white);
  padding: 64px 24px; text-align: center;
}
.aur-footer h2 { color: var(--aur-white); }
.aur-footer p { color: var(--aur-white); }
.aur-footer .label-eyebrow { color: var(--aur-white); }

/* MARQUEE — absolute bottom of viewport, always full + visible (Paul 2026-04-30) */
.lp-marquee{
  position:fixed !important;bottom:0 !important;left:0;right:0;width:100%;
  background:linear-gradient(180deg,rgba(15,30,24,0.92) 0%,rgba(15,30,24,1) 100%);
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  padding:10px 0;overflow:hidden;
  z-index:998 !important;border-top:1px solid rgba(199,201,190,0.18);
  display:block !important;opacity:1 !important;visibility:visible !important;
}
.lp-marquee-track{display:flex;gap:1.5rem;animation:lpMarqueeScroll 60s linear infinite;white-space:nowrap;width:max-content}
.lp-marquee-track span{color:#F8F8F8;font-size:12px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;font-family:Avenir,"Helvetica Neue",Arial,sans-serif;flex-shrink:0}
@keyframes lpMarqueeScroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
/* Push body content up so marquee doesn't overlap footer */
body{padding-bottom:48px}

/* PAUL 2026-04-30: marquee shows only when experience is active */
.lp-marquee{opacity:0 !important;pointer-events:none !important;transition:opacity 0.5s ease 0.3s !important}
body.lp-experience-active .lp-marquee{opacity:1 !important;pointer-events:auto !important}

/* Kill any stray ::after pseudo on Beacon */
button.lp-beacon::before,button.lp-beacon::after{content:none !important;display:none !important}
