:root{
  --yellow:#ffed34;
  --yellow2:#ffed34;
  --navy:#29285f;
  --pink:#de0b66;
  --cream:#ffed34;
  --ink:#29285f;
  --white:#ffffff;

  --radius:18px;
  --outline:3px;
  --shadow:6px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--yellow);
}
img{max-width:100%;height:auto;display:block}
a{color:inherit}

.container{width:min(var(--max), calc(100% - 32px)); margin-inline:auto}

.skip-link{
  position:absolute; left:-999px; top:8px;
  background:var(--white);
  padding:10px 12px;
  border:var(--outline) solid var(--navy);
  border-radius:12px;
  z-index:9999;
}
.skip-link:focus{left:12px}

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--navy);
  backdrop-filter:saturate(180%) blur(8px);
  border-bottom:var(--outline) solid rgba(255,255,255,.18);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:14px;
}

.brand{display:flex;align-items:center;gap:10px;text-decoration:none}
.brand__text{font-weight:800; letter-spacing:.2px; color:var(--white)}
.brand__logo{
  width:auto;
  height:42px;
  max-width:160px;
  object-fit:contain;
}
.brand__mark{
  width:42px;height:42px;
  display:grid;place-items:center;
  font-family:Bangers, cursive;
  font-size:22px;
  background:var(--pink);
  color:var(--white);
  border:var(--outline) solid var(--navy);
  border-radius:14px;
  box-shadow:0 3px 0 var(--navy);
}
@media (max-width:520px){
  .brand__text{display:none}
  .brand__logo{height:38px; max-width:140px}
}

.nav{display:flex; align-items:center; gap:10px}
.nav__link{
  text-decoration:none;
  font-weight:800;
  padding:10px 12px;
  border-radius:14px;
  color:rgba(255,255,255,.92);
}
.nav__link:hover{background:rgba(255,255,255,.10)}
.nav__link--cta{
  background:var(--navy);
  color:var(--white);
  border:var(--outline) solid rgba(255,255,255,.28);
  box-shadow:0 3px 0 rgba(0,0,0,.25);
}

@media (max-width:760px){
  .nav{display:none}
}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  padding:0 0 40px;
  background-color:var(--yellow);
  background-image:url("/assets/img/hero-bg.jpg");
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center top;
}
.hero__bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,.00) 0%, rgba(255,255,255,.12) 100%);
  opacity:1;
}


.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
  padding-top:22px;
}

.ribbon{
  display:inline-grid;
  gap:4px;
  padding:16px 18px 14px;
  background:var(--pink);
  color:var(--white);
  border:var(--outline) solid var(--navy);
  border-radius:20px;
  transform:rotate(-2deg);
  box-shadow:0 10px 0 rgba(27,28,74,.16);
}
.ribbon__small{
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
  font-size:12px;
  opacity:.95;
}
.ribbon__big{
  font-family:Bangers, cursive;
  font-size:42px;
  letter-spacing:1px;
  line-height:1;
}

.hero__content{text-align:center; display:grid; justify-items:center; gap:10px}

.hero__logo{
  width:min(480px, 92vw);
  height:auto;
  filter:none;
}

.hero__banner{
  background:var(--pink);
  color:var(--white);
  border:var(--outline) solid var(--navy);
  border-radius:20px;
  padding:10px 14px;
  box-shadow:none;
  transform:rotate(-1deg);
  max-width:min(720px, 92vw);
}

.hero .btn--primary{
  box-shadow:none;
}

.hero__cta{
  margin-top:-4px;
}

.hero__bannerText{
  display:block;
  font-weight:900;
  letter-spacing:.2px;
}

.h1{
  font-family:Bangers, cursive;
  font-size:64px;
  line-height:1;
  margin:8px 0 8px;
  letter-spacing:1.2px;
  text-shadow:
    -2px -2px 0 var(--navy),
    2px -2px 0 var(--navy),
    -2px 2px 0 var(--navy),
    2px 2px 0 var(--navy);
  color:var(--white);
}
.h1__city{color:var(--navy); text-shadow:none; background:var(--yellow); padding:0 10px; border-radius:14px; border:var(--outline) solid var(--navy)}

.hero__meta{margin:0 auto 10px; font-weight:800; max-width:52ch}
.mono{font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}
.sep{padding:0 8px}

.hero__lede{margin:0 auto 18px; max-width:60ch; font-size:16px; font-weight:600}

.hero__cta{display:flex; gap:12px; justify-content:center; flex-wrap:wrap}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:var(--outline) solid var(--navy);
  font-weight:900;
  text-decoration:none;
  cursor:pointer;
  user-select:none;
  position:relative;
  transform:translateY(0);
  transition:transform .08s ease;
}
.btn:active{transform:translateY(2px)}
.btn--primary{
  background:var(--navy);
  color:var(--white);
  box-shadow:0 var(--shadow) 0 rgba(0,0,0,.22);
}
.btn--secondary{
  background:var(--white);
  color:var(--navy);
  box-shadow:0 var(--shadow) 0 rgba(27,28,74,.22);
}

.hero__chips{display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin-top:16px}
.chip{
  background:rgba(255,255,255,.75);
  border:var(--outline) solid var(--navy);
  border-radius:999px;
  padding:8px 12px;
  font-weight:800;
}

/* Decorations */
.deco{
  position:absolute;
  width:220px;
  height:auto;
  opacity:.95;
  filter:drop-shadow(0 8px 0 rgba(27,28,74,.18));
}
.deco--left{left:-70px; top:120px; transform:rotate(-10deg)}
.deco--right{right:-64px; top:90px; transform:rotate(12deg)}
.deco--bottom{left:20px; bottom:-80px; width:260px; transform:rotate(6deg)}

.floaty{animation:floaty 4.2s ease-in-out infinite}
@keyframes floaty{
  0%,100%{transform:translateY(0) rotate(var(--rot, 0deg))}
  50%{transform:translateY(3px) rotate(var(--rot, 0deg))}
}

@media (max-width:760px){
  .deco{display:none}
  .hero{padding:44px 0 34px}
  .hero__logo{width:min(360px, 92vw)}
}

/* Sections */
.section{padding:56px 0}
.section--navy{background:var(--navy); color:var(--white)}
.section--cream{background:var(--cream)}
.section--signup{background:linear-gradient(180deg, var(--yellow2), var(--yellow))}

.section__head{max-width:72ch; margin:0 auto 22px; text-align:center}

.h2{
  font-family:Bangers, cursive;
  font-size:44px;
  line-height:1;
  letter-spacing:1px;
  margin:0 0 10px;
}
.h2--light{color:var(--white)}
.lead{margin:0 auto; font-weight:600}
.lead--light{color:rgba(255,255,255,.88)}

#about .section__head{
  max-width:92ch;
  text-align:center;
}

#about .section__head .lead{
  font-size:16px;
  line-height:1.55;
  opacity:.92;
  max-width:70ch;
  margin-left:auto;
  margin-right:auto;
}

#about h3.h2{font-size:34px}

/* Tiles */
.tiles{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:14px;
}
.tile{
  background:var(--white);
  border:var(--outline) solid var(--navy);
  border-radius:var(--radius);
  padding:14px;
  box-shadow:0 10px 0 rgba(27,28,74,.18);
}
.tile__icon{
  width:42px;height:42px;
  display:grid; place-items:center;
  border:var(--outline) solid var(--navy);
  border-radius:14px;
  font-weight:900;
  background:var(--yellow);
  margin-bottom:10px;
}
.tile__icon img{
  width:26px;
  height:26px;
  display:block;
  object-fit:contain;
}
.tile__title{margin:0 0 6px; font-weight:900}
.tile__text{margin:0; opacity:.85; font-weight:600}

/* Artists in tile style */
#artists .container{width:min(1288px, calc(100% - 32px)); margin-inline:auto}
#artists .tiles{grid-template-columns:repeat(auto-fit, minmax(280px, 360px)); justify-content:center}
.tile--artistSingle{grid-column:auto}
.tile--artist{
  display:flex;
  flex-direction:column;
  padding:14px;
  gap:10px;
  aspect-ratio:1/1;
}
.tile--artist .tile__media{
  aspect-ratio:1/1;
  height:70%;
  width:auto;
  max-width:100%;
  align-self:center;
  border-radius:18px;
  object-fit:cover;
  display:block;
  background:rgba(27,28,74,.06);
}
.tile--artist .tile__media--png{
  object-fit:contain;
  padding:15px;
  background:var(--white);
}
.tile--artist .tile__body{
  display:flex;
  flex-direction:column;
  gap:16px;
  align-content:start;
  align-items:center;
  text-align:center;
  flex:1;
  min-height:0;
  -webkit-font-smoothing:auto;
  -moz-osx-font-smoothing:auto;
}
.tile--artist .tile__kicker{margin:0; padding:2px 0; font-weight:900; letter-spacing:.35px; text-transform:uppercase; font-size:13px; line-height:1.35; opacity:1; max-width:100%; color:var(--navy)}
.tile--artist .tile__kicker a{color:inherit; text-decoration:none}
.tile--artist .tile__kicker a:hover{text-decoration:underline}
.tile--artist .tile__title{margin:0; padding:2px 0; font-size:16px; line-height:1.3}
.tile--artist .tile__text{margin:0; padding:1px 0; opacity:.85; font-weight:600; line-height:1.45}
.tile--artist .tile__links{display:flex; gap:8px; flex-wrap:wrap; justify-content:center; margin-top:auto; padding-bottom:2px}
.tile--artist .tile__link{
  display:inline-block;
  font-weight:900;
  text-decoration:none;
  border:2px solid var(--navy);
  border-radius:999px;
  padding:8px 14px;
  font-size:13px;
  line-height:1;
  background:var(--yellow);
  color:var(--navy);
}
.tile--artist .tile__link:hover{background:var(--pink); color:var(--white)}

@media (max-width:620px){
  #artists .tiles{grid-template-columns:1fr}
  .tile--artistSingle{grid-column:auto; justify-self:center}
  .tile--artist{
    aspect-ratio:1/1;
    justify-self:center;
    width:min(360px, 92vw);
    padding:12px;
    display:grid;
    grid-template-rows:60% 40%;
    gap:10px;
    overflow:hidden;
  }
  .tile--artist .tile__media{
    height:100%;
    width:auto;
    max-width:100%;
    justify-self:center;
    align-self:stretch;
  }
  .tile--artist .tile__media--png{padding:8px}
  .tile--artist .tile__body{gap:6px; min-height:0}
  .tile--artist .tile__kicker{font-size:12px}
  .tile--artist .tile__title{font-size:18px}
  .tile--artist .tile__links{gap:10px; margin-top:0}
  .tile--artist .tile__link{padding:10px 16px; font-size:14px}
  .tile--artist .tile__title{-webkit-line-clamp:1; line-clamp:1}
}

#about .tiles{
  grid-template-columns:repeat(4, 1fr);
  align-items:stretch;
  justify-items:stretch;
}
#about .tile{
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
#about .tile__icon{
  width:auto;
  height:auto;
  border:none;
  border-radius:0;
  background:transparent;
  align-self:center;
  margin-inline:auto;
  margin-bottom:12px;
}
#about .tile__icon img{
  width:100px;
  height:100px;
}
#about .tile__icon{margin-bottom:12px}
#about .tile__text{flex:1}
#about .tile__text{line-height:1.45; opacity:.92}

@media (max-width:980px){
  .tiles{grid-template-columns:repeat(2, 1fr)}
}
@media (max-width:480px){
  .tiles{grid-template-columns:1fr}
}

@media (max-width:980px){
  #about .tiles{grid-template-columns:repeat(2, 1fr)}
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.card{
  background:rgba(255,255,255,.06);
  border:var(--outline) solid rgba(255,255,255,.28);
  border-radius:var(--radius);
  padding:16px;
}
.card__kicker{margin:0 0 8px; font-weight:900; letter-spacing:.3px; text-transform:uppercase; font-size:12px; opacity:.9}
.card__value{margin:0 0 6px; font-size:18px}
.card__sub{margin:0; opacity:.85; font-weight:600}

@media (max-width:980px){
  .cards{grid-template-columns:repeat(2, 1fr)}
}
@media (max-width:620px){
  .cards{grid-template-columns:1fr}
}

/* Artists */
.artistsPanel{
  max-width:980px;
  margin-inline:auto;
  background:rgba(255,255,255,.92);
  border:var(--outline) solid var(--navy);
  border-radius:var(--radius);
  box-shadow:0 12px 0 rgba(27,28,74,.14);
  padding:14px;
}
.artistsGrid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}
.artistItem{
  background:var(--white);
  border:2px solid var(--navy);
  border-radius:16px;
  overflow:hidden;
  display:grid;
  grid-template-rows:auto 1fr;
}
.artistItem__media{background:rgba(27,28,74,.06)}
.artistItem__img{width:100%; aspect-ratio:4/3; height:auto; object-fit:cover; display:block}
.artistItem__body{padding:12px; display:grid; gap:8px; align-content:start}
.artistItem__studio{margin:0; font-weight:900; font-size:12px; letter-spacing:.35px; text-transform:uppercase; opacity:.85}
.artistItem__name{margin:0; font-weight:900; font-size:18px; line-height:1.15}
.artistItem__links{display:flex; gap:8px; flex-wrap:wrap}
.artistItem__link{
  display:inline-block;
  font-weight:900;
  text-decoration:none;
  border:2px solid var(--navy);
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  line-height:1;
}
.artistItem__link:hover{text-decoration:underline}

@media (max-width:980px){
  .artistsGrid{grid-template-columns:repeat(2, 1fr)}
}
@media (max-width:620px){
  .artistsPanel{padding:12px}
  .artistsGrid{grid-template-columns:1fr}
}

/* Artists boxes */
.artistList{display:grid; gap:12px; max-width:980px; margin-inline:auto}
.artistBox{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:12px;
  background:var(--white);
  border:var(--outline) solid var(--navy);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 10px 0 rgba(27,28,74,.12);
}
.artistBox__img{width:160px; height:160px; object-fit:cover; display:block}
.artistBox__body{padding:12px}
.artistBox__studio{margin:0 0 4px; font-weight:900; opacity:.9}
.artistBox__name{margin:0 0 6px; font-weight:900}
.artistBox__meta{margin:0 0 10px; font-weight:600; opacity:.85}
.artistBox__links{display:flex; gap:10px; flex-wrap:wrap}
.artistBox__link{font-weight:900; text-decoration:none}
.artistBox__link:hover{text-decoration:underline}

@media (max-width:760px){
  .artistBox{grid-template-columns:120px 1fr}
  .artistBox__img{width:120px; height:120px}
}
@media (max-width:520px){
  .artistBox{grid-template-columns:1fr}
  .artistBox__img{width:100%; height:240px}
}

/* Schedule */
.schedule{list-style:none; padding:0; margin:0; display:grid; gap:12px; max-width:720px; margin-inline:auto}
.schedule__item{
  display:flex; gap:14px; align-items:center;
  padding:14px 16px;
  background:var(--white);
  border:var(--outline) solid var(--navy);
  border-radius:var(--radius);
  box-shadow:0 10px 0 rgba(27,28,74,.16);
}
.schedule__time{
  font-family:Bangers, cursive;
  font-size:26px;
  color:var(--navy);
  background:var(--yellow);
  border:var(--outline) solid var(--navy);
  border-radius:14px;
  padding:6px 10px;
  min-width:90px;
  text-align:center;
}
.schedule__text{font-weight:800}

/* Artists */
.soon{
  background:var(--white);
  border:var(--outline) dashed var(--navy);
  border-radius:var(--radius);
  padding:16px;
  text-align:center;
  box-shadow:0 10px 0 rgba(27,28,74,.12);
  margin-bottom:16px;
}
.soon__title{margin:0 0 6px; font-weight:900}
.soon__text{margin:0; font-weight:600; opacity:.85}

.artist-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.artist{
  background:var(--white);
  border:var(--outline) solid var(--navy);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 10px 0 rgba(27,28,74,.12);
  display:grid;
  grid-template-columns:84px 1fr;
  align-items:stretch;
}
.artist__avatar{
  background:linear-gradient(135deg, rgba(255,45,122,.25), rgba(27,28,74,.12));
  border-right:var(--outline) solid var(--navy);
  display:grid;
  place-items:center;
}
.artist__avatarText{font-family:Bangers, cursive; font-size:34px; color:var(--navy)}
.artist__body{padding:12px}
.artist__name{margin:0 0 2px; font-weight:900}
.artist__studio{margin:0 0 10px; font-weight:700; opacity:.72}
.tags{display:flex; flex-wrap:wrap; gap:8px; margin-bottom:10px}
.tag{
  font-weight:900;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background:var(--yellow);
  border:2px solid var(--navy);
}
.artist__ig{font-weight:900; text-decoration:none}
.artist__ig:hover{text-decoration:underline}

@media (max-width:980px){
  .artist-grid{grid-template-columns:repeat(2, 1fr)}
}
@media (max-width:620px){
  .artist-grid{grid-template-columns:1fr}
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
}
.thumb{
  padding:0;
  border:var(--outline) solid var(--navy);
  border-radius:4px;
  background:var(--white);
  cursor:pointer;
  box-shadow:0 8px 0 rgba(27,28,74,.12);
}
.thumb img{width:100%; height:170px; object-fit:cover}

@media (max-width:980px){
  .gallery{grid-template-columns:repeat(3, 1fr)}
  .thumb img{height:170px}
}
@media (max-width:520px){
  .gallery{grid-template-columns:repeat(2, 1fr)}
  .thumb img{height:170px}
}

/* Accordion */
.accordion{max-width:820px; margin-inline:auto; display:grid; gap:10px}
.qa{
  background:rgba(255,255,255,.06);
  border:var(--outline) solid rgba(255,255,255,.22);
  border-radius:var(--radius);
  padding:0;
}
.qa__q{
  position:relative;
  padding:14px 46px 14px 16px;
  list-style:none;
  cursor:pointer;
  font-weight:900;
}
.qa__q::-webkit-details-marker{display:none}
.qa__q::marker{color:currentColor}
.qa__q::after{
  content:"▾";
  position:absolute;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  color:currentColor;
  font-size:18px;
  line-height:1;
}
.qa[open] > .qa__q::after{transform:translateY(-50%) rotate(180deg)}
.qa__a{padding:0 16px 14px; font-weight:600; opacity:.9}

#faq.section--cream .qa{
  background:rgba(255,255,255,.92);
  border:var(--outline) solid var(--navy);
}
#faq.section--cream .qa__a{opacity:.95}

/* Form */
.formWrap{
  max-width:860px;
  margin-inline:auto;
  background:var(--white);
  border:var(--outline) solid var(--navy);
  border-radius:var(--radius);
  box-shadow:0 14px 0 rgba(27,28,74,.18);
  padding:16px;
}
.formNotice{
  margin:0 0 12px;
  padding:12px 12px;
  border:var(--outline) solid var(--navy);
  border-radius:16px;
  font-weight:800;
  background:rgba(255,45,122,.12);
}

.form{display:grid; gap:12px}
.grid2{display:grid; grid-template-columns:1fr 1fr; gap:12px}

.field label{display:block; font-weight:900; margin-bottom:6px}
.field input, .field select, .field textarea{
  width:100%;
  border:var(--outline) solid var(--navy);
  border-radius:16px;
  padding:12px 12px;
  font:inherit;
  font-weight:600;
  outline:none;
}
.field input:focus, .field select:focus, .field textarea:focus{box-shadow:0 0 0 4px rgba(255,45,122,.22)}

.hint{display:block; margin-top:6px; opacity:.72; font-weight:600}
.error{display:block; margin-top:6px; color:var(--pink); font-weight:900; min-height:18px}
.req{color:var(--pink)}

.checks{border:0; padding:0; margin:0}
.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight:700;
}
.check input{margin-top:4px}

.formActions{display:grid; gap:10px; align-items:center}
.fallback{margin:0; font-weight:700; opacity:.85}

#signup.section--navy .formWrap{
  background:var(--white);
  border:var(--outline) solid var(--navy);
  box-shadow:none;
  color:var(--navy);
}
#signup.section--navy .field label,
#signup.section--navy .hint,
#signup.section--navy .fallback{
  color:var(--navy);
}
#signup.section--navy .field input,
#signup.section--navy .field select,
#signup.section--navy .field textarea{
  background:var(--white);
}
#signup.section--navy .check span{color:var(--navy)}
#signup.section--navy .check a{color:var(--navy); text-decoration:underline}

@media (max-width:760px){
  .grid2{grid-template-columns:1fr}
}

/* Footer */
.footer{
  background:var(--navy);
  color:var(--white);
  border-top:var(--outline) solid rgba(255,255,255,.18);
  padding:36px 0;
}
.footer__inner{display:grid; gap:18px}
.brand--footer .brand__logo{height:18px; max-width:90px}
.brand--footer .brand__text{color:var(--white)}
.topbar .brand__logo{height:18px; max-width:90px}
.footer__small{margin:6px 0 0; opacity:.85; font-weight:700}
.footer__cols{display:grid; grid-template-columns:repeat(3, 1fr); gap:14px}
.footer__title{margin:0 0 8px; font-weight:900}
.footer__link{display:block; text-decoration:none; opacity:.88; font-weight:700; margin:6px 0}
.footer__link:hover{opacity:1; text-decoration:underline}

.footer__partnerCols{display:grid; grid-template-columns:repeat(3, 1fr); gap:18px}

.footer__partners{display:flex; flex-direction:column; align-items:flex-start; gap:10px; opacity:.9}
.footer__partners .footer__title{width:100%; margin:0 0 2px; opacity:.95}
.footer__partners--stack{display:flex !important; flex-direction:column !important; align-items:flex-start !important}
.footer__partners--stack .footer__title{display:block}
.footer__partners--stack .partnerLogo{display:block}
.partner{
  padding:8px 10px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.35);
  font-weight:800;
}
.partnerLogo{
  height:42px;
  width:auto;
  object-fit:contain;
  filter:drop-shadow(0 6px 0 rgba(0,0,0,.22));
}
.footer__note{margin:0; opacity:.75; font-weight:700}

@media (max-width:760px){
  .footer__cols{grid-template-columns:1fr}
  .footer__partnerCols{grid-template-columns:1fr}
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(11,11,28,.82);
  display:none;
  place-items:center;
  padding:18px;
  z-index:80;
}
.lightbox.is-open{display:grid}
.lightbox__img{
  max-width:min(980px, 92vw);
  max-height:82vh;
  border-radius:18px;
  border:var(--outline) solid var(--yellow);
  box-shadow:0 18px 0 rgba(0,0,0,.25);
}
.lightbox__close{
  position:absolute;
  top:16px;
  right:16px;
  width:44px;
  height:44px;
  border-radius:16px;
  border:var(--outline) solid var(--yellow);
  background:var(--pink);
  color:var(--white);
  font-size:26px;
  font-weight:900;
  cursor:pointer;
}
.lightbox__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border-radius:18px;
  border:var(--outline) solid var(--yellow);
  background:rgba(41,40,95,.9);
  color:var(--white);
  font-size:34px;
  line-height:1;
  font-weight:900;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.lightbox__nav--prev{left:16px}
.lightbox__nav--next{right:16px}
.lightbox__nav:hover{background:rgba(222,11,102,.95)}
.lightbox__nav:focus-visible{outline:var(--outline) solid var(--yellow); outline-offset:4px}

@media (max-width:520px){
  .lightbox__nav{
    width:44px;
    height:44px;
    border-radius:16px;
    font-size:30px;
  }
  .lightbox__nav--prev{left:10px}
  .lightbox__nav--next{right:10px}
}

/* Accessibility */
.sr{position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .floaty{animation:none}
  .btn{transition:none}
}
