/* -------------------------------------------------------------
   Ash + Bex Staging — landing
   ------------------------------------------------------------- */

@font-face {
  font-family: 'GFS Didot';
  src: url('fonts/GFS_Didot/GFSDidot-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --brown-deep:  #4a2f1f;
  --brown:       #5a3e2b;
  --brown-soft:  #8a6b54;
  --cream:       #f6efe2;
  --cream-warm:  #efe6d4;
  --cream-deep:  #e7dcc6;
  --light-glow:  rgba(232, 188, 122, 0.55);
  --light-warm:  rgba(214, 160, 92, 0.40);

  --serif: 'GFS Didot', 'Didot', 'Bodoni 72', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Avenir Book', 'Avenir Next', 'Avenir', 'Nunito Sans',
           -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: var(--sans);
  color: var(--brown);
  background:
    radial-gradient(ellipse at 20% 10%, #fbf6ea 0%, transparent 55%),
    radial-gradient(ellipse at 85% 90%, #ece0c7 0%, transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll { overflow: hidden; }

/* -------- drifting vintage light -------- */

.lights {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.light {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  mix-blend-mode: multiply;
  will-change: transform, opacity;
}

/* main top-left sunbeam — breathes & drifts */
.light--one {
  width: 78vmax;
  height: 78vmax;
  left: -22vmax;
  top: -28vmax;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(245, 200, 130, 0.95) 0%,
      rgba(235, 185, 115, 0.65) 22%,
      rgba(220, 165, 95, 0.28) 48%,
      transparent 70%);
  animation: sunBreathe 11s ease-in-out infinite alternate;
}

/* warm bottom-right counter-glow */
.light--two {
  width: 55vmax;
  height: 55vmax;
  right: -14vmax;
  bottom: -14vmax;
  background: radial-gradient(circle,
    rgba(220, 170, 100, 0.55) 0%,
    rgba(220, 170, 100, 0.20) 40%,
    transparent 65%);
  opacity: 0.85;
  animation: drift2 20s ease-in-out infinite alternate;
}

/* floating mid-air bloom */
.light--three {
  width: 36vmax;
  height: 36vmax;
  left: 28vw;
  top: 22vh;
  background: radial-gradient(circle, rgba(245, 215, 158, 0.55) 0%, transparent 65%);
  opacity: 0.65;
  animation: drift3 14s ease-in-out infinite alternate;
}

@keyframes sunBreathe {
  0%   { transform: translate3d(0, 0, 0) scale(1);     opacity: 0.8; }
  50%  { transform: translate3d(5vw, 3vh, 0) scale(1.08); opacity: 1; }
  100% { transform: translate3d(10vw, 7vh, 0) scale(1.15); opacity: 0.9; }
}
@keyframes drift2 {
  0%   { transform: translate3d(0, 0, 0) scale(1);        opacity: 0.65; }
  100% { transform: translate3d(-11vw, -8vh, 0) scale(1.18); opacity: 0.95; }
}
@keyframes drift3 {
  0%   { transform: translate3d(0, 0, 0)      scale(1);   opacity: 0.4; }
  50%  { transform: translate3d(-9vw, 5vh, 0) scale(0.95); opacity: 0.95; }
  100% { transform: translate3d(-18vw, 11vh, 0) scale(0.85); opacity: 0.45; }
}

/* volumetric light rays from upper-left, slowly sweeping */
.rays {
  position: absolute;
  top: -30vh;
  left: -20vw;
  width: 130vw;
  height: 160vh;
  background:
    repeating-linear-gradient(
      105deg,
      rgba(235, 195, 130, 0.00) 0px,
      rgba(235, 195, 130, 0.00) 60px,
      rgba(235, 195, 130, 0.16) 90px,
      rgba(235, 195, 130, 0.28) 110px,
      rgba(235, 195, 130, 0.16) 130px,
      rgba(235, 195, 130, 0.00) 175px
    );
  mask-image: radial-gradient(ellipse at 15% 0%,
    rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 32%, transparent 68%);
  -webkit-mask-image: radial-gradient(ellipse at 15% 0%,
    rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 32%, transparent 68%);
  mix-blend-mode: multiply;
  opacity: 1;
  transform-origin: 15% 0%;
  animation: raysSweep 18s ease-in-out infinite alternate,
             raysGlow 4.5s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

@keyframes raysSweep {
  0%   { transform: rotate(-7deg) translateX(0); }
  100% { transform: rotate(9deg)  translateX(-6vw); }
}
@keyframes raysGlow {
  0%   { opacity: 0.5; }
  100% { opacity: 1; }
}

/* tiny drifting dust motes */
.mote {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 235, 195, 0.9) 0%, rgba(255, 235, 195, 0) 70%);
  filter: blur(0.5px);
  opacity: 0;
  animation: moteFloat linear infinite;
}
.mote:nth-child(1) { left: 12%; animation-duration: 22s; animation-delay: -2s;  }
.mote:nth-child(2) { left: 28%; animation-duration: 30s; animation-delay: -8s;  width: 3px; height: 3px; }
.mote:nth-child(3) { left: 41%; animation-duration: 26s; animation-delay: -14s; }
.mote:nth-child(4) { left: 57%; animation-duration: 34s; animation-delay: -4s;  width: 5px; height: 5px; }
.mote:nth-child(5) { left: 70%; animation-duration: 28s; animation-delay: -18s; }
.mote:nth-child(6) { left: 84%; animation-duration: 24s; animation-delay: -10s; width: 3px; height: 3px; }

@keyframes moteFloat {
  0%   { transform: translate3d(0, 105vh, 0); opacity: 0; }
  10%  { opacity: 0.9; }
  50%  { transform: translate3d(6vw, 40vh, 0); opacity: 0.7; }
  90%  { opacity: 0.4; }
  100% { transform: translate3d(-4vw, -10vh, 0); opacity: 0; }
}

/* subtle film grain for vintage feel */
.grain {
  position: absolute;
  inset: -50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.35  0 0 0 0 0.25  0 0 0 0 0.15  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.35;
  mix-blend-mode: multiply;
  animation: grainShift 6s steps(6) infinite;
  pointer-events: none;
}

@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-2%, 1%); }
  40%  { transform: translate(1%, -2%); }
  60%  { transform: translate(-1%, 2%); }
  80%  { transform: translate(2%, 1%); }
  100% { transform: translate(0, 0); }
}

/* -------- stage / hero -------- */

.stage {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 6vh 1.5rem calc(8vh + 30px);
}

.stage__inner {
  text-align: center;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  animation: rise 1.2s ease-out both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.logo {
  width: min(88vw, 820px);
  height: auto;
  display: block;
  margin: 0 auto;
  user-select: none;
  -webkit-user-drag: none;
}

.tagline {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.55vw, 1.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--brown-soft);
  letter-spacing: 0.18em;
  margin: 2rem auto 0;
  line-height: 1.4;
  display: block;
  text-align: center;
}

.mission {
  font-family: var(--sans);
  font-size: clamp(0.82rem, 1.3vw, 0.95rem);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--brown-soft);
  margin: 4.5rem auto 0;
  max-width: 38ch;
  line-height: 1.9;
  position: relative;
}

.mission::before,
.mission::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--brown-soft);
  vertical-align: middle;
  margin: 0 0.9rem;
  opacity: 0.6;
}

.btn {
  display: inline-block;
  margin-top: 3rem;
  padding: 1.05rem 2.6rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--brown);
  background: transparent;
  border: 1px solid var(--brown);
  cursor: pointer;
  transition:
    background 0.4s ease,
    color 0.4s ease,
    letter-spacing 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
  position: relative;
}

.btn span { position: relative; z-index: 1; }

.btn:hover,
.btn:focus-visible {
  background: var(--brown);
  color: var(--cream);
  letter-spacing: 0.42em;
  box-shadow: 0 10px 30px -12px rgba(74, 47, 31, 0.55);
  outline: none;
}

.btn:active { transform: translateY(1px); }

/* -------- contact panel -------- */

.contact[hidden] { display: none; }

.contact {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.contact__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(74, 47, 31, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact__card {
  position: relative;
  width: min(480px, 100%);
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  padding: 2.75rem 2.25rem 2rem;
  text-align: center;
  box-shadow: 0 30px 80px -30px rgba(74, 47, 31, 0.5);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact.is-open .contact__backdrop { opacity: 1; }
.contact.is-open .contact__card     { opacity: 1; transform: translateY(0) scale(1); }

.contact__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: 0;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--brown-soft);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s ease;
}
.contact__close:hover { color: var(--brown); }

.contact__eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--brown-soft);
  margin: 0 0 0.5rem;
}

.contact__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  color: var(--brown);
  margin: 0 0 1.75rem;
  line-height: 1.25;
}

.contact__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.95rem 0.25rem;
  border-top: 1px solid var(--cream-deep);
  color: var(--brown);
  text-decoration: none;
  transition: background 0.25s ease, padding 0.25s ease;
}
.contact__row:last-child { border-bottom: 1px solid var(--cream-deep); }

.contact__row:hover {
  background: var(--cream-warm);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.contact__label {
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--brown-soft);
}

.contact__value {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--brown);
}

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

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  max-width: 520px;
  margin: 2.25rem auto 0;
}

.gallery__item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--cream-deep);
  background: var(--cream-warm);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: saturate(0.92) contrast(1.02);
}

.gallery__item:hover,
.gallery__item:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -20px rgba(74, 47, 31, 0.45);
  border-color: var(--brown-soft);
  outline: none;
}
.gallery__item:hover img,
.gallery__item:focus-visible img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.04);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(74, 47, 31, 0) 60%,
    rgba(74, 47, 31, 0.18) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery__item:hover::after { opacity: 1; }

/* -------- lightbox -------- */

.lightbox[hidden] { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 2.5rem 1.25rem;
  background: rgba(40, 25, 15, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.is-open { opacity: 1; }

.lightbox__stage {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  transform: scale(0.97);
  transition: transform 0.3s ease;
}
.lightbox.is-open .lightbox__stage { transform: scale(1); }

.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}

.lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(246, 239, 226, 0.92);
  border: 1px solid rgba(74, 47, 31, 0.2);
  color: var(--brown);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.lightbox__close:hover {
  background: var(--cream);
  transform: scale(1.05);
}

/* -------- instagram button -------- */

.ig {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 40;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--brown-soft);
  color: var(--brown);
  background: rgba(246, 239, 226, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease,
              box-shadow 0.3s ease, border-color 0.3s ease;
}
.ig:hover,
.ig:focus-visible {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(74, 47, 31, 0.6);
  outline: none;
}
.ig svg { display: block; }

/* -------- place stamp under button -------- */

.place {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 2.25rem auto 0;
  font-family: var(--sans);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--brown-soft);
  opacity: 0.95;
}

.place__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brown-soft);
  position: relative;
  flex-shrink: 0;
}
.place__dot::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--brown-soft);
  border-radius: 50%;
  opacity: 0.5;
  animation: placeRing 3.2s ease-out infinite;
}
@keyframes placeRing {
  0%   { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

.place__rule {
  flex: 0 1 56px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, var(--brown-soft) 50%, transparent 100%);
  opacity: 0.55;
}

.place__text {
  white-space: nowrap;
  padding-left: 0.1rem;
}

/* -------- footer (vintage wood plank) -------- */

.foot {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  z-index: 3;
  display: grid;
  place-items: center;
  box-shadow:
    0 -8px 24px -18px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(210, 150, 95, 0.40);
}

.foot__plank {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.foot__text {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #ede0c4;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.70),
    0 0 8px rgba(0, 0, 0, 0.45);
  padding-left: 0.32em;
  pointer-events: none;
  white-space: nowrap;
}

.foot__link {
  font-size: 0.85em;
  letter-spacing: 0.28em;
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
  pointer-events: auto;
  opacity: 0.85;
}
.foot__link:hover,
.foot__link:focus-visible {
  color: #fff5dc;
  opacity: 1;
  outline: none;
}

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

@media (max-width: 720px) {
  /* app-like: pull everything up toward the top */
  .stage {
    place-items: start center;
    padding: 7vh 1.25rem calc(6vh + 30px);
  }

  .logo {
    width: min(96vw, 560px);
    margin-top: 1vh;
  }

  .tagline {
    font-size: 1.05rem;
    letter-spacing: 0.16em;
    margin-top: 1.6rem;
  }

  .mission {
    font-size: 0.78rem;
    letter-spacing: 0.32em;
    margin-top: 3rem;
    line-height: 2;
  }
  .mission::before,
  .mission::after { width: 18px; margin: 0 0.5rem; }

  .btn {
    margin-top: 2.5rem;
    padding: 1rem 2.2rem;
    letter-spacing: 0.32em;
  }

  .place {
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    gap: 0.6rem;
    margin-top: 1.75rem;
  }
  .place__rule { flex-basis: 28px; }

  .contact__card { padding: 2.25rem 1.5rem 1.5rem; }
  .foot { font-size: 0.6rem; letter-spacing: 0.25em; }

  /* gallery + ig on mobile */
  .gallery { gap: 0.55rem; max-width: 100%; margin-top: 1.75rem; }
  .ig {
    top: 0.85rem;
    right: 0.85rem;
    width: 40px;
    height: 40px;
  }

  /* mobile lighting — cranked: bigger, faster, more obvious motion */
  .light--one {
    width: 160vw;
    height: 160vw;
    left: -40vw;
    top: -75vw;
    opacity: 1;
    filter: blur(45px);
    mix-blend-mode: normal;
    background:
      radial-gradient(circle at 50% 50%,
        rgba(250, 200, 120, 0.95) 0%,
        rgba(240, 180, 100, 0.65) 20%,
        rgba(225, 160, 85, 0.30) 42%,
        rgba(225, 160, 85, 0.12) 60%,
        transparent 72%);
    animation: sunBreatheMobile 7s ease-in-out infinite alternate;
  }
  .light--two {
    width: 140vw;
    height: 140vw;
    right: -45vw;
    bottom: -65vw;
    opacity: 0.9;
    filter: blur(55px);
    mix-blend-mode: normal;
    background: radial-gradient(circle,
      rgba(220, 165, 95, 0.55) 0%,
      rgba(220, 165, 95, 0.25) 35%,
      transparent 65%);
    animation: drift2Mobile 9s ease-in-out infinite alternate;
  }
  .light--three {
    width: 90vw;
    height: 90vw;
    left: 5vw;
    top: 30vh;
    opacity: 0.85;
    mix-blend-mode: normal;
    background: radial-gradient(circle,
      rgba(250, 220, 165, 0.5) 0%,
      transparent 60%);
    animation: drift3Mobile 8s ease-in-out infinite alternate;
  }

  .rays {
    top: -15vh;
    left: -15vw;
    width: 150vw;
    height: 150vh;
    opacity: 1;
    mix-blend-mode: multiply;
    background:
      repeating-linear-gradient(
        100deg,
        rgba(230, 175, 100, 0.00) 0px,
        rgba(230, 175, 100, 0.00) 30px,
        rgba(230, 175, 100, 0.22) 50px,
        rgba(230, 175, 100, 0.36) 65px,
        rgba(230, 175, 100, 0.22) 80px,
        rgba(230, 175, 100, 0.00) 115px
      );
    mask-image: radial-gradient(ellipse at 15% 0%,
      rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 35%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 15% 0%,
      rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 35%, transparent 70%);
    animation:
      raysSweepMobile 9s ease-in-out infinite alternate,
      raysGlowMobile 3s ease-in-out infinite alternate;
  }

  .mote { width: 6px; height: 6px; }
  .mote:nth-child(1) { animation-duration: 14s; }
  .mote:nth-child(2) { animation-duration: 18s; }
  .mote:nth-child(3) { animation-duration: 16s; }
  .mote:nth-child(4) { animation-duration: 20s; }
  .mote:nth-child(5) { animation-duration: 17s; }
  .mote:nth-child(6) { animation-duration: 15s; }
}

@keyframes sunBreatheMobile {
  0%   { transform: translate3d(0, 0, 0) scale(1);       opacity: 0.85; }
  50%  { transform: translate3d(8vw, 5vw, 0) scale(1.12); opacity: 1; }
  100% { transform: translate3d(15vw, 9vw, 0) scale(1.2); opacity: 0.9; }
}
@keyframes drift2Mobile {
  0%   { transform: translate3d(0, 0, 0) scale(1);        opacity: 0.6; }
  100% { transform: translate3d(-10vw, -8vw, 0) scale(1.18); opacity: 0.9; }
}
@keyframes drift3Mobile {
  0%   { transform: translate3d(0, 0, 0)    scale(1);   opacity: 0.45; }
  50%  { transform: translate3d(-8vw, 6vw, 0) scale(0.95); opacity: 0.9; }
  100% { transform: translate3d(-16vw, 10vw, 0) scale(0.85); opacity: 0.5; }
}
@keyframes raysSweepMobile {
  0%   { transform: rotate(-10deg) translateX(0); }
  100% { transform: rotate(12deg)  translateX(-8vw); }
}
@keyframes raysGlowMobile {
  0%   { opacity: 0.55; }
  100% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .light, .grain, .rays, .mote, .stage__inner { animation: none !important; }
  .mote { display: none; }
}
