/* ============================================================
   KENANGAN KELUARGA — Style Sheet
   Palet: Cream/Gold/Coklat (siang) — Biru malam/Ungu (Ayah&Bunda) — Sunset (Keluarga)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Marcellus&family=Jost:wght@300;400;500;600&display=swap');

:root{
  --cream:#f6efe2;
  --cream-2:#fbf7ef;
  --gold:#c8a45e;
  --gold-soft:#e6cd9b;
  --brown:#5a4632;
  --brown-deep:#332619;
  --night:#181530;
  --night-2:#241e44;
  --purple:#4b2e6b;
  --sunset:#e8814a;
  --ink:#2c2418;
  --line: rgba(90,70,50,.18);
  --radius: 18px;
  --shadow: 0 20px 60px rgba(50,35,15,.18);
  --ease: cubic-bezier(.22,.8,.25,1);
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Jost', sans-serif;
  background:var(--cream);
  color:var(--ink);
  overflow-x:hidden;
  min-height:100vh;
}
body.dark{
  --cream:#15121d;
  --cream-2:#1b1828;
  --ink:#ecdfc6;
  --line: rgba(230,205,155,.16);
}
h1,h2,h3,.display{font-family:'Cormorant Garamond', serif;}
.eyebrow{font-family:'Marcellus', serif; letter-spacing:.18em; text-transform:uppercase; font-size:.72rem; color:var(--gold);}
a{color:inherit; text-decoration:none;}
img{display:block; max-width:100%;}
button{font-family:inherit; cursor:pointer; border:none; background:none; color:inherit;}
::selection{background:var(--gold-soft); color:var(--brown-deep);}

/* Scrollbar */
::-webkit-scrollbar{width:9px;}
::-webkit-scrollbar-track{background:transparent;}
::-webkit-scrollbar-thumb{background:var(--gold); border-radius:10px;}

/* ============== UTIL ============== */
.glass{
  background:rgba(255,251,243,.55);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  border:1px solid rgba(255,255,255,.4);
}
body.dark .glass{
  background:rgba(30,25,45,.45);
  border:1px solid rgba(255,255,255,.08);
}
.btn{
  display:inline-flex; align-items:center; gap:.5em;
  padding:.85em 1.8em;
  border-radius:999px;
  background:linear-gradient(135deg,var(--gold),var(--sunset));
  color:#fff7e8;
  font-size:.92rem; letter-spacing:.03em;
  box-shadow:0 10px 30px rgba(200,164,94,.35);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.btn:hover{transform:translateY(-3px); box-shadow:0 16px 40px rgba(200,164,94,.45);}
.btn.ghost{background:transparent; border:1px solid var(--gold); color:var(--gold); box-shadow:none;}

.section-title{font-size:clamp(1.8rem,4vw,2.8rem); font-weight:600; margin-bottom:.3em;}
.section-sub{color:var(--brown); opacity:.75; max-width:640px; margin-bottom:2.2em; font-size:1.02rem;}
body.dark .section-sub{color:#cbb98f;}

.container{max-width:1180px; margin:0 auto; padding:0 6vw;}
.page{display:none; min-height:100vh; padding:7rem 0 5rem;}
.page.active{display:block; animation:pageIn .7s var(--ease);}
@keyframes pageIn{from{opacity:0; transform:translateY(18px);} to{opacity:1; transform:translateY(0);}}

/* ============== EFFECT CANVASES ============== */
#fx-canvas, #cursor-glow{position:fixed; inset:0; pointer-events:none; z-index:2;}
#cursor-glow{
  width:340px; height:340px; border-radius:50%;
  background:radial-gradient(circle, rgba(232,129,74,.16), transparent 70%);
  transform:translate(-50%,-50%);
  z-index:1; transition:opacity .4s;
}
.scroll-progress{position:fixed; top:0; left:0; height:3px; background:linear-gradient(90deg,var(--gold),var(--sunset)); z-index:9999; width:0%;}

/* ============== LOADING SCREEN ============== */
#loading{
  position:fixed; inset:0; z-index:10000;
  background:radial-gradient(ellipse at 50% 30%, var(--night-2), var(--night) 80%);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1.6rem;
  color:#f3e6c8;
  transition:opacity .9s var(--ease), visibility .9s;
}
#loading.hide{opacity:0; visibility:hidden; pointer-events:none;}
.logo-ring{width:96px; height:96px; border-radius:50%; border:1.5px solid var(--gold-soft); display:flex; align-items:center; justify-content:center; font-size:2.1rem; position:relative; animation:floaty 4s ease-in-out infinite;}
.logo-ring::before{content:''; position:absolute; inset:-10px; border-radius:50%; border:1px dashed rgba(230,205,155,.4); animation:spin 14s linear infinite;}
@keyframes spin{to{transform:rotate(360deg);}}
@keyframes floaty{0%,100%{transform:translateY(0);}50%{transform:translateY(-8px);}}
.loadbar{width:260px; height:3px; background:rgba(255,255,255,.12); border-radius:10px; overflow:hidden;}
.loadbar > div{height:100%; width:0%; background:linear-gradient(90deg,var(--gold),var(--sunset)); transition:width .25s;}
#loadQuote{font-family:'Cormorant Garamond', serif; font-style:italic; font-size:1.05rem; max-width:380px; text-align:center; min-height:2.4em; opacity:.9;}

/* ============== LOGIN ============== */
#login-page{position:fixed; inset:0; z-index:9000; display:flex; align-items:center; justify-content:center; overflow:hidden;}
.login-bg{position:absolute; inset:0; background:
  radial-gradient(circle at 20% 20%, rgba(75,46,107,.55), transparent 50%),
  radial-gradient(circle at 80% 70%, rgba(232,129,74,.35), transparent 55%),
  linear-gradient(160deg, var(--night), var(--night-2) 60%, var(--purple));
  background-size:200% 200%;
  animation:gradMove 14s ease-in-out infinite;
}
@keyframes gradMove{0%,100%{background-position:0% 0%;}50%{background-position:100% 100%;}}
#login-page::after{content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(20,15,30,.25), rgba(20,15,30,.7)); }
.login-card{position:relative; z-index:2; width:min(380px,88vw); padding:2.6rem 2.2rem; border-radius:22px; text-align:center; color:#fbf3e3;}
.login-card .heart{font-size:2rem; margin-bottom:.6rem;}
.login-card h2{font-size:1.7rem; margin-bottom:.3rem;}
.login-card p{font-size:.85rem; opacity:.75; margin-bottom:1.6rem;}
#pinDots{display:flex; justify-content:center; gap:.6rem; margin-bottom:1.4rem;}
#pinDots span{width:13px; height:13px; border-radius:50%; border:1px solid var(--gold-soft);}
#pinDots span.filled{background:var(--gold-soft);}
.keypad{display:grid; grid-template-columns:repeat(3,1fr); gap:.7rem;}
.keypad button{padding:.9rem 0; border-radius:14px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15); font-size:1.1rem; color:#fff; transition:.25s;}
.keypad button:hover{background:rgba(230,205,155,.22);}
#loginMsg{margin-top:1rem; font-size:.85rem; min-height:1.2em; color:#ff9d9d;}
.door-flash{position:fixed; inset:0; background:#fff8e8; opacity:0; pointer-events:none; z-index:9500; transition:opacity .5s;}
.door-flash.go{opacity:1;}

/* ============== NAV ============== */
#topnav{position:fixed; top:0; left:0; right:0; z-index:500; display:flex; align-items:center; justify-content:space-between; padding:1.1rem 6vw; transition:background .4s;}
#topnav.scrolled{background:rgba(246,239,226,.85); backdrop-filter:blur(14px); box-shadow:0 4px 20px rgba(0,0,0,.06);}
body.dark #topnav.scrolled{background:rgba(20,17,30,.85);}
.brand{display:flex; align-items:center; gap:.6rem; font-family:'Cormorant Garamond',serif; font-size:1.25rem; font-weight:600; cursor:pointer;}
.brand .mark{width:34px; height:34px; border-radius:50%; background:linear-gradient(135deg,var(--gold),var(--sunset)); display:flex; align-items:center; justify-content:center; color:#fff;}
.navtoggle{display:none; font-size:1.4rem;}
#menu-panel{position:fixed; top:0; right:-100%; width:min(340px,86vw); height:100vh; z-index:600; padding:6rem 1.8rem 2rem; overflow-y:auto; transition:right .5s var(--ease); box-shadow:-20px 0 50px rgba(0,0,0,.15);}
#menu-panel.open{right:0;}
#menu-panel a{display:flex; align-items:center; gap:.7rem; padding:.75rem .4rem; border-radius:10px; font-size:.98rem; transition:.25s; border-bottom:1px solid var(--line);}
#menu-panel a:hover{background:rgba(200,164,94,.12); padding-left:.8rem;}
#menuClose{position:absolute; top:1.4rem; right:1.6rem; font-size:1.5rem;}
#overlay{position:fixed; inset:0; background:rgba(20,15,10,.4); z-index:550; opacity:0; pointer-events:none; transition:.4s;}
#overlay.show{opacity:1; pointer-events:auto;}

/* ============== HERO / HOME ============== */
.hero{min-height:100vh; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; position:relative; padding-top:5rem;}
.hero .heart-big{font-size:2.4rem; margin-bottom:.8rem; animation:beat 2.4s ease-in-out infinite;}
@keyframes beat{0%,100%{transform:scale(1);}50%{transform:scale(1.15);}}
.hero h1{font-size:clamp(2.2rem,6vw,3.6rem); font-weight:600; line-height:1.15;}
.hero .typed{font-family:'Marcellus',serif; color:var(--gold); font-size:clamp(1rem,2vw,1.3rem); margin:.6rem 0 1rem; min-height:1.6em;}
.hero .names{font-family:'Cormorant Garamond',serif; font-style:italic; font-size:clamp(1.3rem,3vw,1.8rem); margin-bottom:1rem; color:var(--brown);}
body.dark .hero .names{color:var(--gold-soft);}
.hero p.tagline{max-width:560px; opacity:.8; line-height:1.7; margin-bottom:2.2rem;}
.menu-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:1rem; max-width:920px; margin:0 auto;}
.menu-grid a{padding:1.2rem .8rem; border-radius:16px; text-align:center; font-size:.85rem; display:flex; flex-direction:column; align-items:center; gap:.5rem; transition:transform .35s var(--ease), box-shadow .35s var(--ease);}
.menu-grid a span.ic{font-size:1.5rem;}
.menu-grid a:hover{transform:translateY(-6px); box-shadow:var(--shadow);}

/* ============== STORY PAGES ============== */
.story-hero{display:flex; gap:3rem; align-items:center; flex-wrap:wrap; margin-bottom:3rem;}
.story-hero .photo{flex:0 0 280px; height:340px; border-radius:24px; overflow:hidden; box-shadow:var(--shadow); position:relative;}
.story-hero .photo img{width:100%; height:100%; object-fit:cover;}
.story-hero .info{flex:1; min-width:260px;}
.story-hero .info h1{font-size:clamp(2rem,4vw,3rem); margin-bottom:.3rem;}
.story-hero .info .meta{display:flex; flex-wrap:wrap; gap:.6rem; margin:1rem 0;}
.story-hero .info .meta span{padding:.4rem .9rem; border-radius:999px; font-size:.78rem; border:1px solid var(--line);}
.prose{max-width:760px; font-size:1.04rem; line-height:1.95; color:var(--ink);}
.prose p{margin-bottom:1.3rem;}
.prose h3{font-family:'Cormorant Garamond',serif; font-size:1.5rem; margin:2rem 0 .8rem; color:var(--gold);}
.pull-quote{font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1.4rem; border-left:3px solid var(--gold); padding-left:1.2rem; margin:2rem 0; color:var(--brown);}
body.dark .pull-quote{color:var(--gold-soft);}

/* ============== TIMELINE ============== */
.timeline{position:relative; max-width:760px; margin:0 auto; padding-left:2.2rem;}
.timeline::before{content:''; position:absolute; left:8px; top:0; bottom:0; width:2px; background:linear-gradient(var(--gold),var(--sunset));}
.t-item{position:relative; padding-bottom:2.6rem; opacity:0; transform:translateX(-20px); transition:.8s var(--ease);}
.t-item.show{opacity:1; transform:translateX(0);}
.t-item::before{content:''; position:absolute; left:-2.2rem; top:4px; width:14px; height:14px; border-radius:50%; background:var(--gold); box-shadow:0 0 0 4px rgba(200,164,94,.2);}
.t-item .yr{font-family:'Cormorant Garamond',serif; font-size:1.5rem; color:var(--gold); font-weight:600;}
.t-item p{opacity:.85; margin-top:.3rem; line-height:1.7;}

/* ============== COUNTDOWN ============== */
.cd-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(270px,1fr)); gap:1.4rem;}
.cd-card{padding:1.6rem; border-radius:20px; box-shadow:var(--shadow);}
.cd-card h3{font-family:'Cormorant Garamond',serif; font-size:1.3rem; margin-bottom:.3rem;}
.cd-card .sub{font-size:.78rem; opacity:.6; margin-bottom:1rem;}
.cd-nums{display:grid; grid-template-columns:repeat(4,1fr); gap:.5rem; margin-bottom:.8rem;}
.cd-nums div{text-align:center;}
.cd-nums .num{font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:600; color:var(--gold);}
.cd-nums .lbl{font-size:.62rem; text-transform:uppercase; letter-spacing:.06em; opacity:.55;}
.cd-extra{font-size:.78rem; opacity:.7; line-height:1.6; border-top:1px solid var(--line); padding-top:.7rem;}

/* ============== GALLERY ============== */
.gal-tabs{display:flex; gap:.6rem; flex-wrap:wrap; margin-bottom:1.6rem;}
.gal-tabs button{padding:.5rem 1.1rem; border-radius:999px; border:1px solid var(--line); font-size:.8rem; transition:.25s;}
.gal-tabs button.active{background:var(--gold); color:#fff; border-color:var(--gold);}
.gal-grid{column-count:4; column-gap:.8rem;}
@media(max-width:1000px){.gal-grid{column-count:3;}}
@media(max-width:640px){.gal-grid{column-count:2;}}
.gal-item{break-inside:avoid; margin-bottom:.8rem; border-radius:14px; overflow:hidden; position:relative; cursor:pointer; box-shadow:0 6px 18px rgba(0,0,0,.1);}
.gal-item img{width:100%; transition:transform .6s var(--ease);}
.gal-item:hover img{transform:scale(1.08);}
.gal-item .fav{position:absolute; top:8px; right:8px; background:rgba(0,0,0,.4); color:#fff; width:28px; height:28px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.85rem;}
#lightbox{position:fixed; inset:0; background:rgba(10,8,15,.92); z-index:8000; display:none; align-items:center; justify-content:center; flex-direction:column;}
#lightbox.open{display:flex;}
#lightbox img{max-width:88vw; max-height:78vh; border-radius:10px; box-shadow:0 20px 60px rgba(0,0,0,.5);}
#lightbox .lb-controls{display:flex; gap:1.5rem; margin-top:1.2rem; color:#fff; font-size:1.4rem;}
#lightbox .lb-close{position:absolute; top:1.5rem; right:2rem; font-size:1.8rem; color:#fff;}

/* ============== MUSIC PLAYER ============== */
#musicPlayer{position:fixed; bottom:1rem; left:50%; transform:translateX(-50%); z-index:700; width:min(560px,92vw); padding:.7rem 1.1rem; border-radius:18px; box-shadow:var(--shadow); display:flex; align-items:center; gap:.8rem;}
#musicPlayer .cover{width:42px; height:42px; border-radius:10px; overflow:hidden; flex:none; background:linear-gradient(135deg,var(--gold),var(--sunset)); display:flex; align-items:center; justify-content:center; color:#fff;}
#musicPlayer .info{flex:1; min-width:0;}
#musicPlayer .title{font-size:.8rem; font-weight:500; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
#musicPlayer .bar{height:3px; background:var(--line); border-radius:5px; margin-top:.35rem; cursor:pointer; position:relative;}
#musicPlayer .bar .fill{height:100%; width:0%; background:var(--gold); border-radius:5px;}
#musicPlayer .ctrls{display:flex; align-items:center; gap:.55rem; font-size:1rem;}
#musicPlayer .ctrls button{opacity:.8;}
#musicPlayer .ctrls button:hover{opacity:1;}
#musicPlayer .ctrls .play{font-size:1.3rem;}
#musicPlayer .viz{display:flex; align-items:flex-end; gap:2px; height:18px; width:22px; flex:none;}
#musicPlayer .viz span{width:3px; background:var(--gold); border-radius:2px; animation:vz 1s ease-in-out infinite;}
#musicPlayer .viz span:nth-child(2){animation-delay:.15s;} #musicPlayer .viz span:nth-child(3){animation-delay:.3s;} #musicPlayer .viz span:nth-child(4){animation-delay:.45s;}
@keyframes vz{0%,100%{height:4px;}50%{height:16px;}}
#musicPlayer.paused .viz span{animation-play-state:paused; height:4px;}
#playlistPanel{position:fixed; bottom:5.2rem; left:50%; transform:translateX(-50%); width:min(360px,90vw); max-height:280px; overflow-y:auto; border-radius:16px; padding:.8rem; box-shadow:var(--shadow); display:none; z-index:701;}
#playlistPanel.open{display:block;}
#playlistPanel .pl-item{display:flex; justify-content:space-between; padding:.6rem .5rem; border-radius:10px; font-size:.82rem; cursor:pointer;}
#playlistPanel .pl-item:hover{background:rgba(200,164,94,.12);}
#playlistPanel .pl-item.playing{color:var(--gold); font-weight:600;}

/* ============== GAMES / ACHIEVEMENT ============== */
.game-tabs{display:flex; gap:.8rem; flex-wrap:wrap; margin-bottom:2rem;}
.game-tabs button{padding:.6rem 1.2rem; border-radius:12px; border:1px solid var(--line); font-size:.85rem;}
.game-tabs button.active{background:var(--gold); color:#fff;}
.memory-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:.6rem; max-width:420px;}
.memory-card{aspect-ratio:1; border-radius:12px; background:linear-gradient(135deg,var(--gold),var(--sunset)); display:flex; align-items:center; justify-content:center; font-size:1.6rem; cursor:pointer; transform-style:preserve-3d; transition:transform .4s;}
.memory-card.flip{background:var(--cream-2); border:1px solid var(--line); color:var(--ink);}
.memory-card.matched{opacity:.35; pointer-events:none;}
.quiz-box{max-width:560px; padding:1.6rem; border-radius:18px; box-shadow:var(--shadow);}
.quiz-box .q{font-family:'Cormorant Garamond',serif; font-size:1.3rem; margin-bottom:1rem;}
.quiz-box .opt{display:block; width:100%; text-align:left; padding:.8rem 1rem; border-radius:12px; border:1px solid var(--line); margin-bottom:.6rem;}
.quiz-box .opt.correct{background:#cdeccd; border-color:#7bbf7b;}
.quiz-box .opt.wrong{background:#f5cfcf; border-color:#d98f8f;}
.ach-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1rem;}
.ach-card{padding:1.3rem; border-radius:16px; text-align:center; box-shadow:var(--shadow); opacity:.4; transition:.4s;}
.ach-card.unlocked{opacity:1;}
.ach-card .ic{font-size:1.8rem; margin-bottom:.4rem;}
.ach-card .name{font-size:.85rem; font-weight:600;}
.ach-card .desc{font-size:.72rem; opacity:.6; margin-top:.2rem;}

/* ============== LETTERS / HARAPAN ============== */
.letter{max-width:720px; margin:0 auto; padding:2.6rem clamp(1.5rem,5vw,3.2rem); border-radius:22px; box-shadow:var(--shadow); position:relative; background:var(--cream-2);}
.letter::before{content:'✉';position:absolute; top:-22px; left:50%; transform:translateX(-50%); width:46px; height:46px; border-radius:50%; background:linear-gradient(135deg,var(--gold),var(--sunset)); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.3rem;}
.letter h2{text-align:center; margin-bottom:1.6rem;}
.letter .prose{margin:0 auto;}
.letter .sign{text-align:right; font-family:'Cormorant Garamond',serif; font-style:italic; margin-top:1.6rem; font-size:1.2rem;}

/* ============== FAMILY TREE ============== */
.tree{display:flex; flex-direction:column; align-items:center; gap:2rem;}
.tree .couple{display:flex; gap:1.4rem;}
.tree .node{width:130px; padding:1rem .6rem; border-radius:16px; text-align:center; box-shadow:var(--shadow); cursor:pointer; transition:.35s;}
.tree .node:hover{transform:translateY(-6px);}
.tree .node .ic{font-size:1.6rem;}
.tree .node .nm{font-size:.78rem; font-weight:600; margin-top:.3rem;}
.tree .children{display:flex; gap:1.2rem; flex-wrap:wrap; justify-content:center;}
.tree-line{width:2px; height:28px; background:var(--gold);}

/* ============== MODALS / SURPRISE ============== */
#surpriseOverlay{position:fixed; inset:0; background:#0a0814; z-index:9100; display:none; align-items:center; justify-content:center; text-align:center; padding:2rem;}
#surpriseOverlay.open{display:flex;}
#surpriseOverlay p{font-family:'Cormorant Garamond',serif; font-style:italic; font-size:clamp(1.2rem,3vw,1.8rem); color:#f6e8c8; max-width:680px; line-height:1.8; opacity:0; transition:opacity 2s;}
#surpriseOverlay p.show{opacity:1;}
.easter-modal{position:fixed; inset:0; background:rgba(10,8,15,.7); z-index:9200; display:none; align-items:center; justify-content:center;}
.easter-modal.open{display:flex;}
.easter-modal .box{padding:2rem 2.4rem; border-radius:20px; max-width:380px; text-align:center; box-shadow:var(--shadow); background:var(--cream-2);}

/* ============== GUESTBOOK / NOTES ============== */
.gb-form{display:flex; gap:.6rem; margin-bottom:1.6rem; flex-wrap:wrap;}
.gb-form input, .gb-form textarea{flex:1; min-width:200px; padding:.8rem 1rem; border-radius:12px; border:1px solid var(--line); background:transparent; color:var(--ink); font-family:inherit;}
.gb-list{display:flex; flex-direction:column; gap:.8rem;}
.gb-item{padding:1rem 1.2rem; border-radius:14px; box-shadow:var(--shadow); font-size:.88rem;}
.gb-item .nm{font-weight:600; color:var(--gold); margin-bottom:.2rem;}

/* ============== BACK TO TOP / SETTINGS ============== */
#backTop{position:fixed; bottom:6.5rem; right:1.4rem; width:44px; height:44px; border-radius:50%; box-shadow:var(--shadow); display:flex; align-items:center; justify-content:center; z-index:600; opacity:0; pointer-events:none; transition:.4s;}
#backTop.show{opacity:1; pointer-events:auto;}
.settings-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1.2rem; max-width:760px;}
.set-card{padding:1.3rem; border-radius:16px; box-shadow:var(--shadow);}
.set-card h4{font-size:.9rem; margin-bottom:.7rem;}
.theme-dot{width:26px; height:26px; border-radius:50%; display:inline-block; margin-right:.4rem; cursor:pointer; border:2px solid transparent;}
.theme-dot.active{border-color:var(--ink);}

/* ============== FOOTER ============== */
footer{text-align:center; padding:3rem 1rem 9rem; font-size:.82rem; opacity:.7; line-height:1.8;}
footer .heart{color:var(--gold);}

/* ============== RESPONSIVE ============== */
@media(max-width:780px){
  .navtoggle{display:block;}
  #musicPlayer{bottom:.6rem; padding:.55rem .8rem;}
  .story-hero{flex-direction:column;}
  .story-hero .photo{width:100%; flex:none;}
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001s !important; transition-duration:.001s !important;}
}
