:root{
  --r:0;
  --g:0;
  --b:0;
  --vis:rgb(max(var(--r),70),max(var(--g),70),max(var(--b),70));
  --line:rgba(max(var(--r),70),max(var(--g),70),max(var(--b),70),.75);
  --bg:#07061a;
  --card:#111032;
  --muted:rgba(255,255,255,.68);
  --page:min(1180px,calc(100vw - 2rem));
}

*{box-sizing:border-box}

body{
  margin:0;
  background:
    radial-gradient(circle at 20% 0%,rgba(var(--r),var(--g),var(--b),.16),transparent 34rem),
    linear-gradient(180deg,#090720,var(--bg) 48%,#050413);
  color:#fff;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:1rem;
  align-items:center;
  padding:.75rem clamp(1rem,4vw,2rem);
  background:rgba(7,6,26,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}

.brand{
  display:flex;
  align-items:center;
  gap:.85rem;
  min-width:0;
}

.logo-badge{
  width:64px;
  height:64px;
  border:1px solid var(--line);
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.03);
  overflow:hidden;
}

.logo-badge img{
  width:56px;
  height:56px;
  object-fit:contain;
}

.logo-fallback{
  display:none;
  width:42px;
  height:42px;
  border:1px solid var(--line);
  border-radius:10px;
  place-items:center;
  font-weight:900;
}

.brand-title{
  margin:0;
  font-size:clamp(1.35rem,2.4vw,2rem);
  line-height:1;
  letter-spacing:-.04em;
}

.tagline{
  margin:.35rem 0 0;
  color:var(--muted);
  font-size:.9rem;
}

.header-nav{
  display:flex;
  justify-content:center;
  gap:.55rem;
  flex-wrap:wrap;
}

button,
.button{
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.035);
  color:#fff;
  padding:.72rem 1rem;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 0 18px rgba(max(var(--r),70),max(var(--g),70),max(var(--b),70),.16);
}

button:hover,
.button:hover,
.nav.active,
.filter-button.active{
  background:rgba(max(var(--r),70),max(var(--g),70),max(var(--b),70),.18);
}

.hero{
  width:var(--page);
  margin:0 auto;
  padding:clamp(2rem,6vw,5rem) 0 2rem;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,430px);
  gap:clamp(2rem,6vw,5rem);
  align-items:center;
}

.hero-copy{
  min-width:0;
}

.hero h2{
  margin:0;
  max-width:860px;
  font-size:clamp(3rem,8vw,6rem);
  line-height:.9;
  letter-spacing:-.075em;
}

.hero p{
  max-width:760px;
  margin:1.35rem 0 0;
  color:var(--muted);
  font-size:clamp(1rem,2vw,1.22rem);
  line-height:1.55;
}

.stats{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:.55rem;
  margin-top:1.5rem;
  max-width:640px;
}

@media(max-width:600px){
  .stats{
    gap:.45rem;
  }
}

.stat{
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:clamp(.55rem,2.5vw,.8rem) clamp(.35rem,2vw,1rem);
  background:rgba(255,255,255,.025);
  min-width:0;
  text-align:center;
}

.stat strong{
  display:block;
  color:#fff;
  font-size:clamp(1rem,5vw,1.35rem);
  line-height:1;
}

.stat span{
  display:block;
  margin-top:.35rem;
  color:#fff;
  font-size:clamp(.58rem,2.7vw,.86rem);
  line-height:1.15;
  white-space:nowrap;
}

.data-status{
  display:none;
}

.view{display:none}
.view.active-view{display:block}

.fade-stage{
  opacity:1;
  transform:translateY(0);
  transition:opacity 420ms ease,transform 420ms ease;
  will-change:opacity,transform;
}

.fade-stage.is-changing{
  opacity:0;
  transform:translateY(14px);
}

/* Spotlight */

.spotlight{
  width:100%;
  margin:0;
  display:none;
  align-self:center;
}

.spotlight.active{
  display:block;
}

.spotlight-shell{
  border:1px solid var(--line);
  border-radius:30px;
  padding:1.2rem;
  background:
    radial-gradient(circle at 80% 20%,rgba(max(var(--r),70),max(var(--g),70),max(var(--b),70),.16),transparent 28rem),
    rgba(255,255,255,.025);
  box-shadow:0 18px 36px rgba(0,0,0,.24);
  height:470px;
  min-height:470px;
  display:grid;
  grid-template-rows:auto minmax(0,1fr) auto;
  overflow:hidden;
}

.spotlight-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:1rem;
  margin-bottom:2.35rem;
  min-height:2rem;
}

.spotlight-title{
  margin:0;
  font-size:clamp(1.85rem,3.7vw,3.1rem);
  line-height:.9;
  letter-spacing:-.04em;
}

.spotlight-count{
  color:var(--muted);
  font-size:.85rem;
  line-height:1.1;
  padding-top:.2rem;
  flex:0 0 auto;
}

.spotlight-card{
  display:grid;
  grid-template-columns:130px minmax(0,1fr);
  gap:1rem;
  align-items:start;
  opacity:1;
  transform:translateX(0);
  transition:opacity 380ms ease,transform 380ms ease;
  min-height:0;
  overflow:hidden;
}

.spotlight-card.is-changing{
  opacity:0;
  transform:translateX(18px);
}

.spotlight-thumb{
  width:100%;
  height:130px;
  min-height:0;
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  background:#111032;
  background-size:cover;
  background-position:center;
}

.spotlight-body{
  display:flex;
  flex-direction:column;
  min-width:0;
  min-height:0;
  height:100%;
  overflow:hidden;
  padding:.05rem .05rem .1rem;
}

.spotlight-section{
  display:inline-flex;
  width:fit-content;
  border:1px solid var(--line);
  border-radius:999px;
  padding:.2rem .5rem;
  margin-bottom:.55rem;
  background:rgba(255,255,255,.04);
  text-transform:uppercase;
  font-size:.62rem;
  font-weight:900;
  letter-spacing:.06em;
  flex:0 0 auto;
}

.spotlight-body h3{
  margin:0 0 .4rem;
  font-size:clamp(1.1rem,1.55vw,1.55rem);
  line-height:1.1;
  letter-spacing:-.04em;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  overflow-wrap:anywhere;
}

.spotlight-body p{
  margin:0;
  color:var(--muted);
  font-size:.9rem;
  line-height:1.4;
  min-height:3.8em;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.spotlight-tags{
  display:flex;
  flex-wrap:wrap;
  gap:.3rem;
  max-height:2rem;
  overflow:hidden;
  margin-top:.6rem;
  flex:0 0 auto;
}

.spotlight-dots{
  display:flex;
  gap:.35rem;
  margin-top:.7rem;
  padding-top:.3rem;
  flex:0 0 auto;
}

.spotlight-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:rgba(255,255,255,.25);
}

.spotlight-dot.active{
  background:var(--vis);
  box-shadow:0 0 10px var(--vis);
}

/* Carousels */

.carousel-section{
  margin:clamp(2.5rem,6vw,4.5rem) 0;
}

.section-top{
  width:var(--page);
  margin:0 auto 1rem;
}

.section-title{
  margin:0;
  font-size:clamp(2rem,4vw,3rem);
  line-height:1;
  letter-spacing:-.05em;
}

.viewport{
  width:100%;
  overflow:hidden;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.02);
  cursor:grab;
  touch-action:pan-y;
  user-select:none;
}

.viewport.dragging{cursor:grabbing}

.track{
  display:flex;
  will-change:transform;
  transform:translate3d(0,0,0);
}

.panel{
  width:100%;
  flex:0 0 100%;
  padding:1.1rem clamp(1rem,4vw,2rem);
  overflow:hidden;
}

.panel-label{
  display:flex;
  align-items:center;
  gap:.65rem;
  margin:0 0 .9rem;
  color:var(--muted);
  font-size:.9rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.panel-label:before{
  content:"";
  width:32px;
  height:2px;
  background:var(--vis);
  box-shadow:0 0 12px var(--vis);
}

.card-row{
  display:grid;
  grid-template-columns:repeat(8,minmax(0,1fr));
  gap:clamp(.45rem,1vw,.9rem);
}

.card{
  min-height:250px;
  border:1px solid var(--line);
  border-radius:22px;
  padding:.72rem;
  background:
    linear-gradient(145deg,rgba(max(var(--r),70),max(var(--g),70),max(var(--b),70),.08),transparent 50%),
    var(--card);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  overflow:hidden;
  box-shadow:0 18px 32px rgba(0,0,0,.28);
}

.card:hover{
  transform:translateY(-4px);
  border-color:var(--vis);
}

.thumb{
  height:82px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  background-size:cover;
  background-position:center;
  margin-bottom:.7rem;
}

.tag-list{
  display:flex;
  flex-wrap:wrap;
  gap:.3rem;
  margin-bottom:.55rem;
}

.tag{
  border:1px solid var(--line);
  border-radius:999px;
  padding:.2rem .42rem;
  background:rgba(255,255,255,.04);
  font-size:.62rem;
  font-weight:900;
  text-transform:uppercase;
}

.card h4{
  margin:0 0 .42rem;
  font-size:1rem;
  line-height:1.12;
}

.meta{
  margin:0;
  color:var(--muted);
  font-size:.78rem;
  line-height:1.35;
}

.price{
  margin-top:.9rem;
  color:#fff;
  font-size:1.12rem;
  font-weight:900;
}

.controls{
  width:var(--page);
  margin:1rem auto 0;
  display:grid;
  grid-template-columns:1fr minmax(230px,340px);
  gap:1rem;
  align-items:center;
}

.progress{
  height:10px;
  background:rgba(255,255,255,.16);
  border-radius:999px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
}

.progress span{
  display:block;
  height:100%;
  width:0;
  background:var(--vis);
  box-shadow:0 0 14px var(--vis);
}

.slider-wrap{
  display:grid;
  grid-template-columns:28px 1fr 42px;
  gap:.75rem;
  align-items:center;
  color:#fff;
  font-weight:900;
}

input[type=range]{
  -webkit-appearance:none;
  appearance:none;
  width:100%;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.2);
  outline:none;
}

input[type=range]::-webkit-slider-runnable-track{
  height:10px;
  border-radius:999px;
}

input[type=range]::-webkit-slider-thumb{
  -webkit-appearance:none;
  appearance:none;
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--vis);
  border:3px solid #fff;
  box-shadow:0 0 14px var(--vis);
  cursor:pointer;
  margin-top:-6px;
}

input[type=range]::-moz-range-thumb{
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--vis);
  border:3px solid #fff;
  box-shadow:0 0 14px var(--vis);
  cursor:pointer;
}

.value{
  color:#fff;
  text-align:right;
  font-variant-numeric:tabular-nums;
}

/* Grid view */

.grid-view{
  width:var(--page);
  margin:clamp(2.5rem,6vw,4.5rem) auto;
}

.filter-panel{
  border:1px solid rgba(255,255,255,.12);
  border-radius:26px;
  padding:1rem;
  background:rgba(255,255,255,.025);
  display:grid;
  grid-template-columns:minmax(220px,360px) 1fr;
  gap:1rem;
  align-items:center;
  margin:1rem 0;
}

#search{
  width:100%;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(7,6,26,.72);
  color:#fff;
  padding:.85rem 1rem;
}

.filter-bar{
  display:flex;
  justify-content:flex-end;
  gap:.55rem;
  flex-wrap:wrap;
}

.result-meta{
  color:var(--muted);
  font-size:.9rem;
  margin:.4rem 0 1rem;
}

.grid-results{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
  gap:.9rem;
}

.hex-readout{
  width:var(--page);
  margin:2.5rem auto 4rem;
  border:1px solid rgba(255,255,255,.12);
  border-radius:26px;
  padding:1rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  background:rgba(255,255,255,.025);
}

.hex-readout span,
.hex-readout strong{
  color:#fff;
}

@media(max-width:900px){
  .spotlight-shell{height:auto;min-height:0}
  .spotlight-card{grid-template-columns:1fr;grid-template-rows:140px auto}
  .spotlight-thumb{height:140px}

  .hero{grid-template-columns:1fr}
  .spotlight{margin-top:1rem}
  .spotlight-shell{height:auto;min-height:0}
  .spotlight-card{grid-template-rows:180px auto}
  .site-header{grid-template-columns:1fr}
  .header-nav{justify-content:flex-start}
  .spotlight-card{grid-template-columns:1fr}
  .controls,.filter-panel{grid-template-columns:1fr}
  .filter-bar{justify-content:flex-start}
  .card-row{grid-template-columns:repeat(4,minmax(0,1fr))}
}

@media(max-width:600px){
  .card-row{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid-results{grid-template-columns:repeat(auto-fit,minmax(145px,1fr))}
}

.spotlight-controls{
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top:.75rem;
  flex:0 0 auto;
}

.spotlight-toggle{
  width:38px;
  height:38px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.055);
  color:#fff;
  border-radius:999px;
  padding:0;
  font-size:1rem;
  line-height:1;
  font-weight:900;
  cursor:pointer;
  display:grid;
  place-items:center;
  box-shadow:0 0 14px rgba(max(var(--r),70),max(var(--g),70),max(var(--b),70),.14);
}

.spotlight-toggle:hover{
  background:rgba(255,255,255,.13);
}




/* MOBILE CAROUSEL FIX – show every card in one continuous horizontal strip */
@media(max-width:900px){
  .viewport{
    overflow:hidden;
    width:100%;
    touch-action:pan-y;
  }

  .track{
    display:flex !important;
    flex-wrap:nowrap !important;
    align-items:stretch;
    width:max-content !important;
    min-width:max-content !important;
  }

  .panel{
    flex:0 0 auto !important;
    width:max-content !important;
    max-width:none !important;
    overflow:visible !important;
    padding:1.1rem 1rem !important;
  }

  .carousel-section .card-row{
    display:flex !important;
    flex-wrap:nowrap !important;
    grid-template-columns:none !important;
    gap:.8rem !important;
    width:max-content !important;
    min-width:max-content !important;
  }

  .carousel-section .card{
    flex:0 0 175px !important;
    width:175px !important;
    min-width:175px !important;
    max-width:175px !important;
  }
}

@media(max-width:600px){
  .track{
    width:max-content !important;
    min-width:max-content !important;
  }

  .panel{
    flex:0 0 auto !important;
    width:max-content !important;
    max-width:none !important;
    overflow:visible !important;
  }

  .carousel-section .card-row{
    display:flex !important;
    flex-wrap:nowrap !important;
    grid-template-columns:none !important;
    width:max-content !important;
    min-width:max-content !important;
  }

  .carousel-section .card{
    flex:0 0 175px !important;
    width:175px !important;
    min-width:175px !important;
    max-width:175px !important;
  }
}


.site-footer{
  margin-top:4rem;
  padding:1.5rem 1rem;
  border-top:1px solid rgba(255,255,255,0.08);
  background:rgba(0,0,0,0.2);
}

.footer-inner{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
  font-size:0.9rem;
  color:rgba(255,255,255,0.6);
}


.header-nav .contact-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  padding:.72rem 1rem;
  line-height:1;
}


.card[href],
.spotlight-link:hover h3,
.card[href]:hover h4{
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:3px;
}

@media(max-width:900px){
  }


.card.clickable-card{
  color:inherit;
  text-decoration:none;
}

.card.clickable-card:hover h4{
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:3px;
}

@media(max-width:900px){
  }


.card.clickable-card{
  color:inherit;
  text-decoration:none;
  cursor:pointer;
}

.card.clickable-card:hover h4,
.spotlight-card.clickable-spotlight:hover h3{
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:3px;
}

.spotlight-card{
  display:grid;
  grid-template-columns:130px minmax(0,1fr);
  gap:1rem;
  align-items:start;
  opacity:1;
  transform:translateX(0);
  transition:opacity 380ms ease,transform 380ms ease;
  min-height:0;
  overflow:hidden;
}

.spotlight-card.clickable-spotlight{
  cursor:pointer;
}

.spotlight-body{
  display:flex;
  flex-direction:column;
  min-width:0;
  min-height:0;
  height:100%;
  overflow:hidden;
  padding:.05rem .05rem .1rem;
}

@media(max-width:900px){
  .spotlight-card{
    grid-template-columns:1fr;
    grid-template-rows:180px auto;
  }
}


a.card.clickable-card,
a.spotlight-card-inner{
  color:inherit;
  text-decoration:none;
}

a.card.clickable-card{
  cursor:pointer;
}

.spotlight-card-inner{
  display:grid;
  grid-template-columns:130px minmax(0,1fr);
  gap:1rem;
  align-items:start;
  min-height:0;
  overflow:hidden;
  color:inherit;
  text-decoration:none;
}

a.card.clickable-card:hover h4,
a.spotlight-card-inner:hover h3{
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:3px;
}

@media(max-width:900px){
  .spotlight-card-inner{
    grid-template-columns:1fr;
    grid-template-rows:180px auto;
  }
}


/* Final Spotlight/link fixes */
.spotlight-card{
  display:block !important;
  min-height:0;
  overflow:hidden;
}

.spotlight-card-inner{
  display:grid !important;
  grid-template-columns:130px minmax(0,1fr) !important;
  gap:1rem !important;
  align-items:start !important;
  width:100% !important;
  min-width:0 !important;
  min-height:0 !important;
  overflow:visible !important;
  color:inherit !important;
  text-decoration:none !important;
}

.spotlight-card-inner .spotlight-body{
  display:flex !important;
  flex-direction:column !important;
  min-width:0 !important;
  overflow:visible !important;
}

a.card.clickable-card,
a.spotlight-card-inner{
  cursor:pointer;
  color:inherit;
  text-decoration:none;
}

a.card.clickable-card:hover h4,
a.spotlight-card-inner:hover h3{
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:3px;
}

@media(max-width:900px){
  .spotlight-card-inner{
    grid-template-columns:1fr !important;
    grid-template-rows:180px auto !important;
  }
}

/* Shared content-page layout */
.page-content{
  width:var(--page);
  margin:0 auto;
  padding:clamp(2.5rem,6vw,5rem) 0;
  min-height:55vh;
}

.page-content h1{
  margin:0 0 1rem;
  font-size:clamp(2.4rem,5vw,4.8rem);
  line-height:.95;
  letter-spacing:-.06em;
}

.page-content p{
  max-width:760px;
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.55;
}

/* Shared header links */
.header-nav a.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

/* Shared YouTube header actions */
.header-actions{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:.6rem;
  flex-wrap:wrap;
}

.header-actions .youtube-watch,
.header-actions .youtube-subscribe{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.7rem;
  white-space:nowrap;
  background:#ff0000 !important;
  color:#ffffff !important;
  border:1px solid #ff0000 !important;
  border-radius:999px;
  padding:.72rem 1rem;
  font-weight:900;
  box-shadow:0 0 18px rgba(255,0,0,.25);
}

.header-actions .youtube-watch:hover,
.header-actions .youtube-subscribe:hover{
  background:#cc0000 !important;
  border-color:#cc0000 !important;
}

.youtube-icon,
.bell-icon{
  display:inline-block;
  margin-right:.4rem;
  font-size:.9em;
  line-height:1;
}

.youtube-text{
  display:inline-block;
}

@media(max-width:900px){
  .header-actions{
    justify-content:flex-start;
  }
}

/* Empty carousel panel state */
.empty-panel{
  margin:0;
  padding:1rem;
  color:var(--muted);
  border:1px dashed rgba(255,255,255,.18);
  border-radius:18px;
  background:rgba(255,255,255,.025);
  min-width:220px;
}

/* Flexible carousel panels – no reserved gaps between card groups */
.carousel-section .track{
  display:flex !important;
  flex-wrap:nowrap !important;
  align-items:stretch;
  width:max-content !important;
  min-width:max-content !important;
}

.carousel-section .panel{
  flex:0 0 auto !important;
  width:auto !important;
  max-width:none !important;
  overflow:visible !important;
  padding:1.1rem clamp(1rem,4vw,2rem) !important;
}

.carousel-section .card-row{
  display:flex !important;
  flex-wrap:nowrap !important;
  grid-template-columns:none !important;
  gap:clamp(.65rem,1vw,.9rem) !important;
  width:max-content !important;
  min-width:max-content !important;
}

.carousel-section .card{
  flex:0 0 175px !important;
  width:175px !important;
  min-width:175px !important;
  max-width:175px !important;
}

.empty-panel{
  margin:0;
  padding:1rem;
  color:var(--muted);
  border:1px dashed rgba(255,255,255,.18);
  border-radius:18px;
  background:rgba(255,255,255,.025);
  width:220px;
  min-width:220px;
}

/* Shared mobile burger menu */
.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  padding:0;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.035);
  color:#fff;
  place-items:center;
  gap:1px;
}

.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  border-radius:999px;
  background:#fff;
}

.site-menu{
  display:contents;
}

@media(max-width:760px){
  .site-header{
    grid-template-columns:1fr auto !important;
  }

  .menu-toggle{
    display:grid;
  }

  .site-menu{
    grid-column:1 / -1;
    display:none;
  }

  .site-header.menu-open .site-menu{
    display:block;
  }

  .header-nav,
  .header-actions{
    justify-content:flex-start;
    padding-top:.9rem;
  }
}

/* Final mobile burger override */
@media(max-width:760px){
  .site-header{
    grid-template-columns:minmax(0,1fr) auto !important;
    align-items:center !important;
    gap:.75rem !important;
  }

  .menu-toggle{
    display:grid !important;
    grid-column:2 !important;
    grid-row:1 !important;
    width:48px !important;
    min-width:48px !important;
    max-width:48px !important;
    height:48px !important;
    min-height:48px !important;
    max-height:48px !important;
    padding:0 !important;
    margin:0 !important;
    border:1px solid var(--line) !important;
    border-radius:999px !important;
    background:rgba(255,255,255,.035) !important;
    place-items:center !important;
  }

.menu-toggle span{
  display:block !important;
  width:21px !important;
  height:2px !important;
  border-radius:999px !important;
  background:#fff !important;
  margin:1px 0 !important;
}

  .site-menu{
    grid-column:1 / -1 !important;
    width:100% !important;
  }

  .site-header:not(.menu-open) .site-menu,
  .site-header:not(.menu-open) .header-nav,
  .site-header:not(.menu-open) .header-actions{
    display:none !important;
  }

  .site-header.menu-open .site-menu{
    display:block !important;
  }

  .site-header.menu-open .header-nav,
  .site-header.menu-open .header-actions{
    display:flex !important;
    justify-content:flex-start !important;
    gap:.65rem !important;
    flex-wrap:wrap !important;
    padding-top:.9rem !important;
  }
}

@media(max-width:760px){
  .menu-toggle{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:5px !important;
  }

  .menu-toggle span{
    display:block !important;
    width:21px !important;
    height:2px !important;
    margin:0 !important;
    padding:0 !important;
    flex:0 0 auto !important;
  }
}

/* About page */
.about-page h1{
  margin-bottom:1.5rem;
}

.about-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,460px);
  gap:clamp(1.5rem,4vw,3rem);
  align-items:start;
}

.about-bio{
  position:relative;
  padding-top:90px;
  border:none;
  background:transparent;
}

.about-photo-wrap{
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
}

.about-photo{
  width:180px;
  height:180px;
  object-fit:cover;
  object-position:center;
  border:3px solid #fff;
  border-radius:50%;
  display:block;
}

.about-bio-card{
  border:1px solid var(--line);
  border-radius:28px;
  background:rgba(255,255,255,.025);
  padding:110px clamp(1rem,3vw,1.5rem) clamp(1rem,3vw,1.5rem);
}

.contact-panel{
  border:1px solid var(--line);
  border-radius:28px;
  background:rgba(255,255,255,.025);
  padding:clamp(1rem,3vw,1.5rem);
}

.about-bio h2,
.contact-panel h2{
  margin:0 0 .8rem;
  font-size:clamp(1.7rem,3vw,2.4rem);
  line-height:1;
  letter-spacing:-.04em;
}

.contact-form{
  display:grid;
  gap:.75rem;
  margin-top:1.25rem;
}

.contact-form label{
  font-weight:900;
  font-size:.82rem;
  letter-spacing:.04em;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  background:rgba(7,6,26,.72);
  color:#fff;
  padding:.85rem 1rem;
  font:inherit;
}

.contact-form textarea{
  resize:vertical;
}

.contact-form button{
  width:fit-content;
  margin-top:.5rem;
}

.form-honey{
  position:absolute;
  left:-9999px;
}

@media(max-width:900px){
  .about-layout{
    grid-template-columns:1fr;
  }

  .contact-form button{
    width:100%;
  }
}


/* Carousel control cleanup */
.carousel-section .progress{
  display:none !important;
}

.carousel-section .controls{
  width:80% !important;
  max-width:980px !important;
  margin:1.1rem auto 0 !important;
  display:block !important;
}

.carousel-section .slider-wrap{
  width:100% !important;
  display:grid !important;
  grid-template-columns:28px minmax(0,1fr) 42px !important;
  gap:.9rem !important;
  align-items:center !important;
}

.carousel-section input[type=range]{
  height:14px !important;
  background:rgba(255,255,255,.28) !important;
}

.carousel-section input[type=range]::-webkit-slider-runnable-track{
  height:14px !important;
  border-radius:999px !important;
}

.carousel-section input[type=range]::-webkit-slider-thumb{
  width:28px !important;
  height:28px !important;
  margin-top:-7px !important;
}

.carousel-section input[type=range]::-moz-range-thumb{
  width:28px !important;
  height:28px !important;
}

@media(max-width:600px){
  .hex-readout{
    display:grid;
    grid-template-columns:1fr;
    gap:1rem;
    align-items:start;
  }

  .hex-readout > div{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:1rem;
  }

  .hex-readout .random-colour{
    padding:.65rem 1rem;
  }

  .hex-readout strong{
    font-size:1.15rem;
    line-height:1;
  }
}