/* ============================================================
   FOR SOLIHA — cinematic proposal
   Palette: pure black / ivory white / champagne gold
   ============================================================ */

:root{
  --black: #030303;
  --black-soft: #0a0908;
  --ivory: #f6f2e8;
  --ivory-dim: #cfc9ba;
  --gold: #d4af37;
  --gold-light: #f4e5a1;
  --gold-deep: #9c7a1f;
  --line: rgba(246,242,232,0.14);

  --display: "Iowan Old Style","Palatino Linotype","Book Antiqua","Georgia","Times New Roman",serif;
  --body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --ease-lux: cubic-bezier(.19,1,.22,1);
  --ease-soft: cubic-bezier(.25,.46,.45,.94);
}

*,*::before,*::after{ box-sizing: border-box; }

html{
  background: var(--black);
  scroll-behavior: smooth;
}

body{
  margin:0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

::selection{ background: var(--gold); color:#000; }

/* ---------- ambient layers ---------- */

#particles{
  position: fixed; inset:0;
  width:100%; height:100%;
  z-index: 2;
  pointer-events:none;
  mix-blend-mode: screen;
  opacity: .55;
}

.grain{
  position: fixed; inset:0;
  z-index: 60;
  pointer-events:none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- progress rail ---------- */

.progress-rail{
  position: fixed; top:0; left:0; right:0; height:2px;
  background: rgba(255,255,255,0.06);
  z-index: 70;
}
.progress-fill{
  height:100%; width:0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-light));
  box-shadow: 0 0 12px rgba(212,175,55,.7);
  transition: width .08s linear;
}

/* ---------- music toggle ---------- */

.music-toggle{
  position: fixed;
  top: 22px; right: 22px;
  z-index: 80;
  width: 56px; height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.35);
  background: rgba(15,14,12,0.45);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  color: var(--gold-light);
  box-shadow: 0 8px 30px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,0.03);
  transition: transform .5s var(--ease-lux), box-shadow .5s var(--ease-lux), border-color .5s;
}
.music-toggle:hover{
  transform: scale(1.06);
  border-color: rgba(212,175,55,0.7);
  box-shadow: 0 10px 36px rgba(212,175,55,.25), inset 0 0 0 1px rgba(255,255,255,0.05);
}
.music-toggle:active{ transform: scale(.96); }

.music-toggle__ring{
  position:absolute; inset:-6px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,0.25);
  opacity:0;
  transition: opacity .4s;
}
.music-toggle.playing .music-toggle__ring{
  opacity:1;
  animation: ringPulse 2.6s ease-out infinite;
}
@keyframes ringPulse{
  0%{ transform:scale(.9); opacity:.7; }
  100%{ transform:scale(1.35); opacity:0; }
}

.music-toggle__icon{ width:19px; height:19px; position:relative; z-index:2; }
.icon-play{ display:block; margin-left:2px; }
.icon-pause{ display:none; }
.music-toggle.playing .icon-play{ display:none; }
.music-toggle.playing .icon-pause{ display:block; }

.music-toggle__bars{
  position:absolute; bottom:9px; left:50%;
  transform: translateX(-50%);
  display:none;
  gap:2.5px;
  align-items:flex-end;
  height:8px;
  z-index: 1;
}
.music-toggle.playing .music-toggle__bars{ display:flex; }
.music-toggle__bars span{
  width:2.5px;
  background: var(--gold);
  border-radius: 2px;
  animation: barBounce 1.1s ease-in-out infinite;
  opacity:.55;
}
.music-toggle__bars span:nth-child(1){ height:4px; animation-delay: 0s; }
.music-toggle__bars span:nth-child(2){ height:8px; animation-delay: .15s; }
.music-toggle__bars span:nth-child(3){ height:5px; animation-delay: .3s; }
.music-toggle__bars span:nth-child(4){ height:7px; animation-delay: .45s; }
@keyframes barBounce{
  0%,100%{ transform: scaleY(.5); opacity:.4; }
  50%{ transform: scaleY(1.4); opacity:1; }
}

/* ============================================================
   SCENES — shared
   ============================================================ */

#scroller{ position:relative; z-index: 5; }

.scene{
  position: relative;
  width: 100vw;
  min-height: 100svh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.eyebrow{
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin: 0 0 18px;
  opacity: .9;
}

/* ============================================================
   0. ENTRANCE
   ============================================================ */

.scene--entrance{
  background: radial-gradient(ellipse at 50% 30%, #14110a 0%, #030303 62%);
  flex-direction: column;
  text-align:center;
}

.entrance__stars{
  position:absolute; inset:0;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(255,255,255,.55), transparent),
    radial-gradient(1px 1px at 78% 14%, rgba(255,255,255,.4), transparent),
    radial-gradient(1.5px 1.5px at 33% 68%, rgba(212,175,55,.55), transparent),
    radial-gradient(1px 1px at 60% 80%, rgba(255,255,255,.4), transparent),
    radial-gradient(1px 1px at 88% 55%, rgba(255,255,255,.35), transparent),
    radial-gradient(1.5px 1.5px at 20% 88%, rgba(212,175,55,.4), transparent),
    radial-gradient(1px 1px at 50% 45%, rgba(255,255,255,.3), transparent);
  background-repeat: no-repeat;
  animation: twinkle 6s ease-in-out infinite;
}
@keyframes twinkle{ 0%,100%{ opacity:.6; } 50%{ opacity:1; } }

.entrance__content{ position: relative; z-index: 2; padding: 0 24px; }

.eyebrow--fade{
  opacity: 0;
  animation: fadeUp 1.4s var(--ease-lux) .3s forwards;
}

.entrance__title{
  margin: 0 0 56px;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1;
}
.entrance__title .line{
  display:block;
  opacity:0;
  transform: translateY(28px);
  filter: blur(6px);
}
.entrance__title .line:nth-child(1){
  font-size: clamp(28px, 6vw, 46px);
  letter-spacing: 0.5em;
  color: var(--ivory-dim);
  animation: revealLine 1.3s var(--ease-lux) .6s forwards;
  padding-left: .5em; /* optical centering for tracked caps */
}
.entrance__title .line--gold{
  font-size: clamp(64px, 15vw, 150px);
  color: var(--ivory);
  margin-top: 6px;
  background: linear-gradient(180deg, var(--ivory) 30%, var(--gold-light) 65%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: revealLine 1.5s var(--ease-lux) 1s forwards;
  text-shadow: 0 0 60px rgba(212,175,55,.25);
}
.entrance__heart{
  font-size: clamp(20px, 3.4vw, 30px);
  margin-top: 18px;
  color: var(--gold);
  animation: revealLine 1.2s var(--ease-lux) 1.6s forwards, heartbeat 2.4s ease-in-out 2.8s infinite;
}
@keyframes revealLine{
  to{ opacity:1; transform: translateY(0); filter: blur(0); }
}
@keyframes heartbeat{
  0%,100%{ transform: scale(1); }
  15%{ transform: scale(1.18); }
  30%{ transform: scale(1); }
  45%{ transform: scale(1.12); }
  60%{ transform: scale(1); }
}

.begin-btn{
  position: relative;
  display:inline-flex;
  align-items:center;
  gap: 12px;
  padding: 16px 34px;
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,175,55,.4);
  color: var(--gold-light);
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor:pointer;
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: fadeUp 1.4s var(--ease-lux) 2.2s forwards;
  transition: border-color .4s, background .4s, transform .4s var(--ease-lux), box-shadow .4s;
}
.begin-btn svg{ width:15px; height:15px; animation: bob 1.8s ease-in-out infinite; }
.begin-btn:hover{
  border-color: var(--gold);
  background: rgba(212,175,55,.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(212,175,55,.18);
}
@keyframes bob{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(4px);} }
@keyframes fadeUp{ from{ opacity:0; transform: translateY(16px);} to{ opacity:1; transform: translateY(0);} }

body.began .scene--entrance{ pointer-events:none; }

/* ============================================================
   PHOTO SCENES
   ============================================================ */

.scene--photo{ background: var(--black); }

.scene__media{
  position:absolute; inset:0;
  overflow:hidden;
}

.kb{
  position:absolute; inset: -6%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.kb--drift{ animation: kbDrift 22s ease-in-out infinite alternate; }
.kb--zoom{ animation: kbZoom 24s ease-in-out infinite alternate; }
.kb--parallax{ animation: kbParallax 26s ease-in-out infinite alternate; }
.kb--slow{ animation: kbSlow 30s ease-in-out infinite alternate; }

@keyframes kbDrift{
  0%{ transform: scale(1.08) translate(0,0); }
  100%{ transform: scale(1.16) translate(-2%, -2.4%); }
}
@keyframes kbZoom{
  0%{ transform: scale(1.02); }
  100%{ transform: scale(1.18); }
}
@keyframes kbParallax{
  0%{ transform: scale(1.1) translate(1.5%, 0%); }
  100%{ transform: scale(1.2) translate(-1.5%, -1.8%); }
}
@keyframes kbSlow{
  0%{ transform: scale(1.05) translateY(0); }
  100%{ transform: scale(1.14) translateY(-2%); }
}

.scene__vignette{
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 45%, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 78%, rgba(0,0,0,.82) 100%);
}
.scene__vignette--soft{
  background: radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0) 40%, rgba(0,0,0,.45) 80%, rgba(0,0,0,.72) 100%);
}

.scene__grad{ position:absolute; left:0; right:0; height:46%; pointer-events:none; }
.scene__grad--bottom{ bottom:0; background: linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,0)); }
.scene__grad--top{ top:0; height:30%; background: linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,0)); }

.scene__rays{
  position:absolute; inset:0;
  background: conic-gradient(from 200deg at 30% 25%, rgba(255,236,180,0) 0deg, rgba(255,236,180,.18) 8deg, rgba(255,236,180,0) 20deg, rgba(255,236,180,0) 340deg, rgba(255,236,180,.1) 352deg, rgba(255,236,180,0) 360deg);
  mix-blend-mode: screen;
  animation: raysDrift 14s linear infinite;
  opacity: .8;
}
@keyframes raysDrift{
  0%{ transform: rotate(0deg); }
  100%{ transform: rotate(8deg); }
}

.scene__particles-local{
  position:absolute; inset:0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(212,175,55,.5), transparent),
    radial-gradient(1.5px 1.5px at 70% 20%, rgba(255,255,255,.4), transparent),
    radial-gradient(2px 2px at 85% 70%, rgba(212,175,55,.4), transparent),
    radial-gradient(1.5px 1.5px at 40% 80%, rgba(255,255,255,.3), transparent),
    radial-gradient(1.5px 1.5px at 55% 50%, rgba(212,175,55,.3), transparent);
  animation: floatUp 9s ease-in-out infinite;
}
@keyframes floatUp{
  0%,100%{ transform: translateY(0); opacity:.7; }
  50%{ transform: translateY(-14px); opacity:1; }
}

.scene__content{
  position: relative;
  z-index: 3;
  max-width: 640px;
  padding: 0 8vw;
}
.scene__content--bottom-left{ align-self:flex-end; margin: 0 auto 11vh 0; text-align:left; }
.scene__content--bottom-right{ align-self:flex-end; margin: 0 0 11vh auto; text-align:right; }
.scene__content--bottom-center{ align-self:flex-end; margin: 0 auto 11vh; text-align:center; max-width: 580px; }
.scene__content--center{ margin: 0 auto; text-align:center; max-width: 560px; }

.scene__content--bottom-right .eyebrow{ text-align:right; }

.scene__title{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.18;
  margin: 0 0 20px;
  color: var(--ivory);
}
.scene__title span{
  display:block;
  overflow:hidden;
}
.scene__title span > .inner{
  display:block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-lux);
}
.scene__title span:nth-child(2) > .inner{ transition-delay: .12s; }

.scene__text{
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--ivory-dim);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1.1s var(--ease-soft), transform 1.1s var(--ease-soft);
  transition-delay: .5s;
  max-width: 46ch;
}
.scene__content--bottom-right .scene__text{ margin-left:auto; }
.scene__content--bottom-center .scene__text{ margin: 0 auto; }

.reveal-word{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .9s var(--ease-soft), transform .9s var(--ease-soft);
}

/* revealed state, toggled via JS with .is-visible on the .scene */
.scene.is-visible .reveal-word{ opacity: .9; transform: translateY(0); }
.scene.is-visible .scene__title span > .inner{ transform: translateY(0); }
.scene.is-visible .scene__text{ opacity: 1; transform: translateY(0); }

/* ============================================================
   BRIDGE
   ============================================================ */

.scene--bridge{
  background: radial-gradient(ellipse at 50% 50%, #100d08 0%, #030303 70%);
  text-align:center;
}
.bridge__glow{
  position:absolute; width:60vw; height:60vw; max-width:600px; max-height:600px;
  background: radial-gradient(circle, rgba(212,175,55,.14), transparent 70%);
  border-radius: 50%;
  animation: breatheGlow 6s ease-in-out infinite;
}
@keyframes breatheGlow{
  0%,100%{ transform: scale(1); opacity:.7; }
  50%{ transform: scale(1.15); opacity:1; }
}
.bridge__text{
  position:relative; z-index:2;
  font-family: var(--display);
  font-size: clamp(22px, 3.2vw, 34px);
  color: var(--ivory);
  max-width: 700px;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.4s var(--ease-lux), transform 1.4s var(--ease-lux);
}
.scene.is-visible .bridge__text{ opacity:1; transform: translateY(0); }

/* ============================================================
   PROPOSAL
   ============================================================ */

.scene--proposal{
  flex-direction: column;
  text-align:center;
  background: radial-gradient(ellipse at 50% 20%, #171208 0%, #030303 62%);
  padding: 14vh 6vw 10vh;
  min-height: 100svh;
}

.proposal__glow{
  position:absolute; top:8%; left:50%; transform: translateX(-50%);
  width: 70vw; height:70vw; max-width: 720px; max-height:720px;
  background: radial-gradient(circle, rgba(212,175,55,.16), transparent 65%);
  pointer-events:none;
}

.proposal__particles{ position:absolute; inset:0; pointer-events:none; z-index:1; }

.ring-wrap{
  position: relative; z-index:2;
  width: clamp(110px, 16vw, 160px);
  margin: 0 auto 28px;
  opacity:0;
  transform: translateY(30px) scale(.92);
  transition: opacity 1.2s var(--ease-lux), transform 1.2s var(--ease-lux);
}
.scene.is-visible .ring-wrap{ opacity:1; transform: translateY(0) scale(1); }

.ring{ width:100%; height:auto; filter: drop-shadow(0 10px 30px rgba(212,175,55,.35)); }
.ring circle{ animation: ringShine 4s ease-in-out infinite; transform-origin: 100px 140px; }
@keyframes ringShine{
  0%,100%{ filter: drop-shadow(0 0 0px rgba(212,175,55,0)); }
  50%{ filter: drop-shadow(0 0 8px rgba(212,175,55,.7)); }
}
.ring__stone{ animation: stoneFloat 5s ease-in-out infinite; transform-origin: 100px 90px; }
@keyframes stoneFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-2px); }
}
.ring__sparkle{ opacity:0; animation: sparkle 3s ease-in-out infinite; }
.ring__sparkle--1{ animation-delay: .2s; }
.ring__sparkle--2{ animation-delay: 1.2s; }
.ring__sparkle--3{ animation-delay: 2s; }
@keyframes sparkle{
  0%,100%{ opacity:0; transform: scale(.4); }
  50%{ opacity:1; transform: scale(1); }
}

.proposal__eyebrow{ position:relative; z-index:2; }

.proposal__name{
  position:relative; z-index:2;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 13vw, 128px);
  line-height: 1;
  margin: 0 0 22px;
  letter-spacing: .03em;
  background: linear-gradient(180deg, var(--ivory) 20%, var(--gold-light) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 80px rgba(212,175,55,.25);
}
.proposal__name .char{
  display:inline-block;
  opacity:0;
  transform: translateY(24px) rotateX(40deg);
}
.scene.is-visible .proposal__name .char{
  animation: charIn .8s var(--ease-lux) forwards;
}

@keyframes charIn{ to{ opacity:1; transform: translateY(0) rotateX(0); } }

.proposal__question{
  position:relative; z-index:2;
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 4.4vw, 40px);
  color: var(--ivory);
  margin: 0 0 26px;
  min-height: 1.4em;
}
.proposal__question .cursor{
  display:inline-block;
  width: 2px; height: .9em;
  background: var(--gold);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink{ 50%{ opacity:0; } }

.proposal__promise{
  position:relative; z-index:2;
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.8;
  color: var(--ivory-dim);
}

.proposal__buttons{
  position: relative;
  z-index: 2;
  display:flex;
  gap: 26px;
  align-items:center;
  justify-content:center;
  flex-wrap: wrap;
}

.btn{
  font-family: var(--body);
  font-size: 15px;
  letter-spacing: .06em;
  font-weight: 600;
  padding: 17px 40px;
  border-radius: 999px;
  cursor:pointer;
  border: 1px solid transparent;
  transition: transform .35s var(--ease-lux), box-shadow .4s, background .4s, border-color .4s;
}

.btn--yes{
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: #241a04;
  box-shadow: 0 10px 34px rgba(212,175,55,.35);
}
.btn--yes:hover{ transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 44px rgba(212,175,55,.5); }
.btn--yes:active{ transform: translateY(0) scale(.98); }

.btn--no{
  background: rgba(255,255,255,0.03);
  color: var(--ivory-dim);
  border-color: rgba(255,255,255,0.16);
  position: relative;
  z-index: 5;
}
.btn--no:hover{ border-color: rgba(255,255,255,0.3); }

/* fixed positioning applied via JS when it starts escaping */
.btn--no.escaping{
  position: fixed;
  z-index: 90;
  transition: top .35s var(--ease-soft), left .35s var(--ease-soft), transform .35s var(--ease-soft);
}

/* ============================================================
   CELEBRATION
   ============================================================ */

.scene--celebration{
  display:none;
  min-height: 100svh;
  background: radial-gradient(ellipse at 50% 30%, #1a1408 0%, #030303 65%);
  text-align:center;
  flex-direction: column;
  padding: 10vh 6vw;
}
.scene--celebration.active{ display:flex; }

#confetti{ position:absolute; inset:0; z-index:1; pointer-events:none; }

.celebration__hearts{
  position:absolute; inset:0; z-index:1; pointer-events:none;
  overflow:hidden;
}
.floating-heart{
  position:absolute;
  bottom: -40px;
  font-size: 22px;
  opacity: .9;
  animation: heartRise linear forwards;
  filter: drop-shadow(0 0 6px rgba(212,175,55,.4));
}
@keyframes heartRise{
  0%{ transform: translateY(0) translateX(0) rotate(0deg); opacity:0; }
  10%{ opacity:1; }
  100%{ transform: translateY(-115vh) translateX(var(--drift, 40px)) rotate(360deg); opacity:0; }
}

.celebration__glow{
  position:absolute; top:20%; left:50%; transform: translateX(-50%);
  width: 80vw; height: 80vw; max-width: 800px; max-height:800px;
  background: radial-gradient(circle, rgba(212,175,55,.2), transparent 65%);
  animation: breatheGlow 5s ease-in-out infinite;
}

.celebration__content{
  position:relative; z-index: 3;
  margin: auto;
  max-width: 620px;
}

.celebration__title{
  font-family: var(--display);
  font-size: clamp(30px, 6vw, 56px);
  color: var(--gold-light);
  margin: 0 0 42px;
  opacity:0;
  transform: translateY(20px) scale(.94);
  animation: fadeUp .9s var(--ease-lux) .15s forwards;
  text-shadow: 0 0 50px rgba(212,175,55,.5);
}

.celebration__message{ margin-bottom: 46px; }
.cel-line{
  font-family: var(--display);
  font-size: clamp(18px, 2.6vw, 26px);
  color: var(--ivory);
  margin: 0 0 10px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .9s var(--ease-soft), transform .9s var(--ease-soft);
}
.cel-line.show{ opacity: 1; transform: translateY(0); }

.celebration__forever{
  font-family: var(--body);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--gold);
  opacity: 0;
  transition: opacity 1.2s var(--ease-lux);
}
.celebration__forever.show{ opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 720px){
  .scene__content{ padding: 0 7vw; max-width: 100%; }
  .scene__content--bottom-left,
  .scene__content--bottom-right{ text-align:center; margin: 0 auto 9vh; }
  .scene__content--bottom-right .eyebrow{ text-align:center; }
  .scene__content--bottom-right .scene__text{ margin: 0 auto; }
  .proposal__buttons{ gap: 16px; }
  .btn{ padding: 15px 30px; font-size: 14px; }
  .music-toggle{ top: 16px; right: 16px; width: 50px; height: 50px; }
}

@media (max-width: 420px){
  .entrance__title .line:nth-child(1){ letter-spacing: .32em; padding-left: .32em; }
}

/* focus visibility for keyboard users */
button:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
