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

/* ========== BASE ========== */
html {
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 1px;
  -webkit-text-size-adjust: 100%;
}

body {
  height: 100%;
  margin: 0;
  color: #1a1a1a;

  /* keep your large "cabaret" feel, but make it predictable */
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.5;

  text-align: center;
  font-family: "Georgia", serif;

  background-color: #d3c0a6;
  background-image: url('images/bg-paper.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  /* DESKTOP: pinned background (restored) */
  background-attachment: fixed;
}

p { margin-bottom: 1em; }

h1, h2, h3 {
  font-family: "attic-antique", "Georgia", serif;
}

.hdr { margin-top: 1px; }

area {
  outline: none;
  cursor: pointer;
}

/* ========== LAYOUT ========== */
.text-content {
  max-width: 700px;
  margin-bottom: 50px;
  margin-top: 1px;
}

.responsive-image {
  width: 100%;
  height: auto;
  display: block;
}

.header-image { padding: 1em; }

/* ========== SNAP SECTIONS ========== */
.snap-section {
  min-height: 100vh;
  min-height: 100svh; /* better on mobile address-bar behavior */
  height: auto;

  scroll-snap-align: start;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 60px 20px;
  width: 100%;
  overflow: hidden;
}

.snap-section.snap-first {
  scroll-snap-align: start;
  scroll-snap-stop: always;

  /* contain absolute children like hearts */
  position: relative;

  padding: 0 !important;
  overflow: visible;
}

/* ========== HERO FADE CAROUSEL ========== */
.hero-fade-container {
  position: relative;
  width: 100%;
  max-width: 2000px;

  /* DESKTOP: full-viewport hero (restored) */
  height: 100vh;

  overflow: hidden;
  margin: 0 auto;
}

.hero-fade-container img {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-fade-container img.active {
  opacity: 1;
  z-index: 2;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;

  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active-dot { background-color: white; }














/* ========== CAROUSEL CAPTION ========== */
.carousel-caption {
  position: absolute;
  bottom: 80px;              /* above dots */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  z-index: 4;
  pointer-events: none;

  /* lock height so it never shifts */
  height: 4.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-caption-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.caption {
  position: absolute;
  inset: 0;                  /* force all captions to same box */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  opacity: 0;
  transition: opacity 0.8s ease;
}

.caption.active {
  opacity: 0.85;
}

.carousel-caption h2 {
  font-family: "Georgia", serif;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  line-height: 1.3;
  margin: 0;
}

@media (max-width: 768px) {
  .carousel-caption {
      position: relative;
      bottom: auto;
      left: auto;
      transform: none;
      margin: 20px auto 0;
      height: 4.8em;   /* slightly taller for wrap */
}
  
}


/* Lock caption box so slides never shift */
.hero-caption--overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 58px;

  height: 5.2em;              /* fixed spatial anchor */
  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 4;
  pointer-events: none;
}

.hero-caption--overlay .hero-caption-inner {
  position: relative;
  width: min(900px, 92vw);
  height: 100%;
}


/* ========== HERO CAROUSEL V2 (SAFE ADDITIVE) ========== */
/* This is additive and won't affect your existing .hero-fade-container carousel */

.hero-carousel {
  width: 100%;
 /* max-width: 2000px;*/
  margin: 0 auto;
}

/* only the image area clips */
.hero-viewport {
  position: relative;
  width: 100%;
  height: 100vh;          /* matches your current desktop hero intent */
  overflow: hidden;
}

/* slides */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

/* dots (new names so it doesn't collide with .carousel-dots/.dot) */
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-dot.is-active {
  background: rgba(255,255,255,0.95);
}

/* captions */
.hero-caption {
  color: #fff;
}

.hero-caption-inner {
  width: min(900px, 92vw);
  margin: 0 auto;
  text-align: center;
}

/* quote swapping */
.hero-quote {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  margin: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 400ms ease, transform 400ms ease;

  font-family: "Georgia", serif;
  line-height: 1.25;
}


.hero-quote.is-active {
  opacity: 0.85;
  transform: translateY(0);
}

/* desktop overlay caption sits above dots */
.hero-caption--overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 58px;
  z-index: 4;
  pointer-events: none;
}

/* mobile caption zone below image */
.hero-caption--below {
  display: none;          /* hidden on desktop */
  padding: 18px 0 10px;
  background: #000;
}


.hero-caption--below {
  display: none;
  padding: 18px 0 10px;
  background: #000;
}

/* ✅ MOBILE LOCK goes here */
.hero-caption--below .hero-caption-inner {
  position: relative;
  height: 5.4em;  /* fixed caption bay */
}

.hero-caption--below .hero-quote {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* then your existing media query follows */
@media screen and (max-width: 768px) {

}




/* RESPONSIVE: match your existing mobile hero sizing */
@media screen and (max-width: 768px) {
  .hero-viewport {
    height: clamp(320px, 55vh, 500px);   /* same as your current .hero-fade-container mobile */
  }

  .hero-caption--overlay { display: none; }
    
  .hero-caption--below { display: block; }

    
  .hero-quote {
    font-size: 1.05em;
    line-height: 1.35;
  }
}


@media (max-width: 480px) {
  .hero-quote { font-size: 1.0em; }
}


















/* ========== HERO IMAGE CONTAINER ========== */
.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 2000px;

  height: clamp(320px, 55vh, 800px);

  overflow: hidden;
  margin: 0 auto;
}

.hero-image-container img {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}
















/* ========== LISTENING PARLOUR SECTION ========== */

.listening-parlour {
  justify-content: flex-start;
  position: relative;
  background-image: url('images/bg_wood_tile.jpg');
  background-color: #000;

  padding: clamp(16px, 2.5vw, 32px) 0 clamp(56px, 7vw, 90px);
  overflow: hidden;
}

.listening-parlour::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.10) 0%,   /* 10% black at top */
    rgba(0, 0, 0, 1.00) 100% /* full black at bottom */
  );
}





.lp-inner {
  position: relative;
  width: min(1100px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.lp-subhdr {
  margin-top: 20px;
}

.lp-story-hdr {
  color: #fff;
}

/* Card Rows */
.lp-card-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;

  gap: clamp(14px, 2.4vw, 34px);
  margin: 0 auto clamp(32px, 4vw, 60px);
}

/* Individual Cards */
.lp-card {
  flex: 0 1 clamp(160px, 16vw, 185px);
}

.lp-card img {
  width: 100%;
  height: auto;
  display: block;
    
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));    
}


.lp-description {
  max-width: 550px;
  margin: 0 auto clamp(40px, 5vw, 70px);
  line-height: 1.6;
  opacity: 1;
font-weight: bold;
    color: #fff;
  filter: drop-shadow(0 5px 9px rgba(0, 0, 0, 0.45));     
}


/* Tilt Variations */
.tilt-left-lg  .lp-card-inner { transform: rotate(-6deg); }
.tilt-left-md  .lp-card-inner { transform: rotate(-5deg); }
.tilt-left-sm  .lp-card-inner { transform: rotate(-2deg); }

.tilt-right-sm .lp-card-inner { transform: rotate(3deg); }
.tilt-right-md .lp-card-inner { transform: rotate(4deg); }



/* Card positioning wrapper */
.lp-card-inner {
  position: relative;
}

/* fix for animation */
.lp-card-inner{ 
  transform-origin: 50% 65%;
  will-change: transform;
}

/* Title overlay */
.lp-card-title {
  position: absolute;
  top: 28%;                 /* upper third placement */
  left: 50%;
  transform: translateX(-50%);  /* only horizontal centering */

  width: 80%;
  text-align: center;

  font-family: "attic-antique", "Georgia", serif;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.2;
  letter-spacing: 0.04em;

  color: #ccc;
  pointer-events: none;
  text-transform: uppercase;
}





    
















/* ========== LISTENING MAP ========== */
.listeningMap {
  width: 100%;
  max-width: 2000px;

  /* allow it to breathe on small screens */
  min-height: 60svh;
  height: auto;

  margin: 0 auto;
  overflow: hidden;

  background-color: #dad1ca;
  background-image: url('images/hero_music-orig.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.map-container {
  text-align: center;
  width: 100%;
  max-width: 768px;
}

/* ========== NOW PLAYING OVERLAY ========== */
.now-playing-overlay {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-color: rgba(0,0,0,0.75);

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 10;
}

.now-playing-content {
  color: white;
  text-align: center;
  font-family: 'Georgia', serif;
  padding: 20px;
}

.now-playing-content h2 {
  font-size: 2em;
  margin-bottom: 1em;
}

.now-playing-content a {
  color: #fff;
  text-decoration: underline;
  font-size: 1.1em;
  cursor: pointer;
}

.hidden { display: none; }

/* ========== SIGNUP FORM ========== */
#inner-circle {
  background-color: #000;
  background-image: url('images/bg_red_curtin.jpg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}

.signup-section {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Georgia', serif;
  padding: 30px;
}

.signup-section form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"] {
  padding: 10px;
  font-family: 'Georgia', serif;
  border: 1px solid #ccc;
  border-radius: 4px;

  /* iOS zoom trigger prevention */
  font-size: 16px;
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-group input { margin-right: 8px; }

.submit-group { text-align: center; }

.submit-group button {
  background-color: #2d2d2d;
  color: #fff;
  font-family: 'Georgia', serif;

  padding: 12px 24px;
  border: none;
  border-radius: 25px;

  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-group button:hover { background-color: #444; }

/* ========== APPEARANCES ========== */
.appearances-section {
  margin: 40px auto;
  width: 100%;
  max-width: 900px;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 20px 10px;
  color: #FFF;
}

.section-header img {
  display: block;
  margin: 0;
  opacity: 0.95;
}

.section-header .hdr {
  margin: 10px 0 0 0;
  line-height: 1;
  font-size: 1.8em;
  letter-spacing: 0.02em;
}

.section-subhdr {
  margin-top: 4px;
  font-family: "attic-antique", "Georgia", serif;
  font-size: 1.2em;    
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

.appearance-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-size: 1.3em;    
  color: #FFF;
  position: relative;
}

.appearance-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
}

/* ========== READ MORE TOGGLE ========== */
#more {
  overflow: hidden;
  transition: max-height 300ms ease;
}

/* ========== LANDING SECTION ========== */
.landing-logo {
  max-width: 630px;
  width: min(630px, 86vw);
  height: auto;
  padding-bottom: 20px;
}

.landing-text {
  margin: 0 auto;
  padding: 0 20px;

  font-family: "attic-antique", serif;
  font-weight: 400;
  font-style: normal;

  max-width: 500px;

  /* stop em compounding against body size */
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.45;

  color: #313440;
}

.tagline { margin-bottom: 10px; }

.read-more-toggle {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #313440;
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.read-more-toggle:hover { opacity: 1; }

.expanded-copy {
  margin-top: 16px;
  font-family: "Georgia", serif;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== LANDING NAVIGATION ========== */
.snap-section.snap-first .landing-nav {
  position: absolute;
  top: 5px;
  right: 20px;
  display: flex;
  gap: clamp(14px, 3vw, 40px);
  z-index: 10;
}

.snap-section.snap-first .nav-link {
  font-family: "attic-antique", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(0.42em, 1.2vw, 0.60em);
  color: #313440;
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.snap-section.snap-first .nav-link:hover { opacity: 0.7; }

/* ========== LANDING BUTTONS ========== */
.snap-section.snap-first .landing-buttons {
  position: absolute;
  bottom: calc(50% - 80px);

  left: 50%;
  transform: translateX(-50%) translateY(50%);

  width: 100%;
  max-width: 650px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 20px;
  pointer-events: auto;
  z-index: 5;
}

.snap-section.snap-first .landing-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.snap-section.snap-first .landing-btn:hover { opacity: 0.8; }
.snap-section.snap-first .landing-btn:active { opacity: 0.6; }

.snap-section.snap-first .landing-btn img {
  object-fit: contain;
  display: block;
}

.snap-section.snap-first .landing-btn-left img {
  width: 180px;
  height: auto;
}

.snap-section.snap-first .landing-btn-right img {
  width: 180px;
  height: auto;
}


/* ========== FOOTER ========== */

.site-footer{
  padding: 60px 20px;
  text-align: center;
  background: #000;
  color: #ddd;
}

.footer-inner{
  max-width: 800px;
  margin: 0 auto;
}

.footer-mark{
  font-family: "attic-antique", serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: #fff;
}

.footer-line{
  font-style: italic;
  opacity: 0.7;
  margin-bottom: 20px;
}

.footer-copyright{
  font-size: 0.85rem;
  opacity: 0.5;
}
footer a {
  text-decoration: none;
  transition: opacity 200ms ease;
}

footer a:hover {
  opacity: 0.7;
}



/* ========== insta ========== */
/* anchor the first section as positioning context */
.snap-first{
  position: relative;
}

/* static top-right icon (only lives in section 1) */
.insta-static{
  position: absolute;
  top: 18px;
  right: 18px;
  opacity: 0.7;
  text-decoration: none;
  line-height: 0;
  transition: opacity 200ms ease;
}

.insta-static img{
  width: 32px;
  height: auto;
  display: block;
opacity: 0.7;
}

.insta-static:hover{
  opacity: 0.95;
}









/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {
  /* scroll snap fights touch on small screens */
  html { scroll-snap-type: none; }

  body {
    background-image: url('images/bg_mobile_short.jpg');
    background-repeat: repeat-y;
    background-size: auto;
    background-position: top center;
    background-attachment: scroll; /* mobile override */
  }

  .snap-section { padding: 40px 15px; }

  /* mobile keeps your prior behavior */
  .hero-fade-container { height: clamp(320px, 55vh, 500px); }
  .hero-image-container { height: clamp(320px, 55vh, 500px); }

  .map-container { max-width: 92vw; }

    
    

    
    
    
    
}

@media (max-width: 600px) {
  .text-content { padding: 1em; }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .form-group { width: 100%; }

  .signup-section { padding: 20px; }

  /* keep inputs readable and prevent iOS zoom */
  .form-group input[type="text"],
  .form-group input[type="email"] {
    font-size: 16px;
    padding: 14px;
  }

  .appearance-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .date-info {
    font-size: 0.9em;
    color: #CCC;
    align-self: center;
    text-align: center;  
  }
    
.venue-info {
    align-self: center;
    text-align: center;         
    }   
}

@media (max-width: 480px) {
  .snap-section.snap-first .landing-nav { right: 10px; }

  .snap-section.snap-first .landing-btn-left img {
    width: 120px;
    height: auto;
  }

  .snap-section.snap-first .landing-btn-right img {
    width: 100px;
    height: 115px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #more { transition: none; }
}




/*  carousel settings  */    
  #story-section {
    justify-content: flex-start;
    padding: 0;
    background-color: #000;  
  }



/* ========== FLOATING HEARTS ANIMATION (UNCHANGED) ========== */

.hearts-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.hearts-foreground{
  position: relative; /* required for z-index to apply */
  z-index: 5;         /* above hearts */
}

.heart {
  position: absolute;
  top: -200px;
  left: 0;

  /* now driven per-heart via CSS variables from JS */
  opacity: var(--o, 0.75);
  filter: blur(var(--b, 0px));

  pointer-events: none;
  will-change: transform, opacity, filter;
  object-fit: contain;
  animation-fill-mode: both;
}

@keyframes floatHearts {
  0% {
    transform: translateY(-200px) translateX(0) rotate(0deg) scale(var(--s, 1));
    opacity: 0;
  }
  10% {
    opacity: var(--o, 0.75);
  }
  50% {
    opacity: calc(var(--o, 0.75) + 0.08);
  }
  100% {
    transform: translateY(calc(100vh + 100px)) translateX(300px) rotate(360deg) scale(var(--s, 1));
    opacity: 0;
  }
}

.heart.float-1 { animation: floatHearts 8s linear infinite;  width: 20px; animation-delay: 0s; }
.heart.float-2 { animation: floatHearts 10s linear infinite; width: 28px; animation-delay: 2s; }
.heart.float-3 { animation: floatHearts 12s linear infinite; width: 24px; animation-delay: 4s; }
.heart.float-4 { animation: floatHearts 9s linear infinite;  width: 26px; animation-delay: 1s; }
.heart.float-5 { animation: floatHearts 11s linear infinite; width: 22px; animation-delay: 3s; }
.heart.float-6 {animation: floatHearts 18s linear infinite; width: 60px; animation-delay: 0s;
}










/* ========== LISTENING PARLOUR PLAYER MODAL ========== */

.lp-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.lp-modal.is-open { display: block; }

.lp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}

.lp-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: min(860px, 92vw);
  min-height: 420px;

  background: #000 url("images/background_audio_player.jpg") center / cover no-repeat;
  border-radius: 16px;
  overflow: hidden;
}

.lp-modal__panel::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.70));
  pointer-events:none;
}

.lp-modal__content{
  position: relative;
  padding: clamp(18px, 3vw, 34px);
  color: #fff;
  text-align: left;
}

.lp-modal__close{
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 2;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
}

.lp-modal__close:hover { opacity: 1; }

.lp-nowplaying__kicker{
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 10px;
}

.lp-nowplaying__title{
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  margin-bottom: 14px;
}

.lp-nowplaying__desc{
  max-width: 62ch;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 24px;
}

.lp-controls{
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 8px 0 18px;
}

.lp-btn{
  appearance: none;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
}

.lp-btn--primary{
  padding: 10px 18px;
}

.lp-progress{
  margin-top: 10px;
}

.lp-seek{
  width: 100%;
}

.lp-time{
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  opacity: 0.85;
  font-size: 0.9em;
}



/* ===== LP: spectral drift + snap-to-solid ===== */

.lp-card { will-change: opacity; }
.lp-card.lp-haunt-phase1 { opacity: 0.55; }
.lp-card.lp-haunt-phase2 {
  opacity: 1;
  transition: opacity 220ms cubic-bezier(.2,.9,.2,1);
}








