/* ══════════════════════════════════════
   TOKENS
══════════════════════════════════════ */
:root {
  --y:  #FFC567;
  --pk: #FB7DA8;
  --r:  #FD5A46;
  --pu: #552CB7;
  --g:  #00995E;
  --b:  #058CD7;
  --cr: #FFF8F0;
  --dk: #1A1A2E;
}

/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cr);
  color: var(--dk);
  overflow-x: hidden;
  cursor: none;
}

/* ══════════════════════════════════════
   CURSOR
══════════════════════════════════════ */
#cur {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--r);
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
  transition: transform .12s;
}
#cur2 {
  width: 34px; height: 34px;
  border: 2.5px solid var(--pu);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: all .15s;
  transform: translate(-50%, -50%);
}
.ct {
  position: fixed;
  width: 12px; height: 12px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9990;
  transition: transform .4s, opacity .4s;
}

/* ══════════════════════════════════════
   SCROLL PROGRESS BAR
══════════════════════════════════════ */
#sb {
  position: fixed; top: 0; left: 0;
  height: 4px; z-index: 1200;
  background: linear-gradient(90deg, var(--y), var(--r), var(--pk), var(--pu));
  transition: width .08s;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  z-index: 800;
  display: flex; align-items: center; gap: 8px;
  background: var(--dk);
  border: 3px solid var(--y);
  border-radius: 999px;
  padding: 8px 20px;
  box-shadow: 4px 4px 0 var(--y);
  max-width: 96vw;
}
.nlogo {
  font-family: 'Boogaloo', cursive;
  font-size: 1.1rem;
  color: var(--pk);
  margin-right: 4px;
  flex-shrink: 0;
}
.navlinks { display: flex; gap: 6px; list-style: none; }
.navlinks a {
  text-decoration: none;
  color: var(--dk);
  font-family: 'Fredoka One', cursive;
  font-size: .76rem;
  padding: 5px 13px;
  border: 2.5px solid var(--dk);
  border-radius: 50px;
  background: var(--y);
  transition: all .15s;
  box-shadow: 2px 2px 0 var(--dk);
  cursor: none;
}
.navlinks a:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--dk);
  background: var(--pk);
}
@media (max-width: 640px) { .navlinks { display: none; } }

/* ══════════════════════════════════════
   DECO FLOATING SHAPES
══════════════════════════════════════ */
.deco {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: .06;
  animation: fl 22s infinite ease-in-out;
}
.d1 { top: 6%;    left: 3%;  width: 130px; animation-delay: 0s;   }
.d2 { top: 55%;   right: 4%; width: 100px; animation-delay: -8s;  }
.d3 { bottom: 12%; left: 8%; width: 90px;  animation-delay: -16s; }
@keyframes fl {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33%     { transform: translate(20px,-28px) rotate(9deg); }
  66%     { transform: translate(-10px,16px) rotate(-5deg); }
}

/* ══════════════════════════════════════
   CHECKER STRIP
══════════════════════════════════════ */
.ck {
  height: 28px;
  background-image: repeating-conic-gradient(var(--dk) 0% 25%, transparent 0% 50%);
  background-size: 28px 28px;
  border-top: 3px solid var(--dk);
  border-bottom: 3px solid var(--dk);
}
.ck.y {
  background-image: repeating-conic-gradient(var(--y) 0% 25%, var(--r) 0% 50%);
}

/* ══════════════════════════════════════
   SPINNING STARS
══════════════════════════════════════ */
.dstar {
  position: absolute;
  animation: spin 10s linear infinite;
  z-index: 1;
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  background: var(--b);
  position: relative;
  overflow: hidden;
  padding: 110px 40px 72px;
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .22;
  pointer-events: none;
}
.b1 { width: 500px; height: 500px; background: var(--pk); top: -180px;  right: -120px; }
.b2 { width: 300px; height: 300px; background: var(--y);  bottom: -100px; left: -50px; }
.b3 { width: 200px; height: 200px; background: var(--pu); top: 45%;     left: 28%;    }

.hero-wave {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .06; pointer-events: none;
}
.hero-in {
  max-width: 1100px; width: 100%;
  display: flex; align-items: center; gap: 60px;
  position: relative; z-index: 2;
  flex-wrap: wrap;
}
.hl { flex: 1; min-width: 250px; }

.hbadge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--y); color: var(--dk);
  font-family: 'Fredoka One', cursive; font-size: .85rem;
  padding: 6px 20px; border-radius: 999px;
  border: 2.5px solid var(--dk); box-shadow: 3px 3px 0 var(--dk);
  margin-bottom: 22px;
  animation: bob 3s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-7px); }
}

h1.ht {
  font-family: 'Boogaloo', cursive;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  color: var(--cr); line-height: .9;
  text-shadow: 4px 4px 0 rgba(0,0,0,.3);
}
h1.ht .hy {
  color: var(--pk);
  -webkit-text-stroke: 2px var(--dk);
  display: block;
}

.hsub {
  font-size: .88rem; color: rgba(255,248,240,.65);
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  margin: 12px 0 28px;
  background: rgba(255,255,255,.08);
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.18);
}

.htags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; }
.htag {
  background: rgba(255,255,255,.1); color: var(--cr);
  padding: 6px 16px; border-radius: 999px;
  border: 2px solid rgba(255,255,255,.22);
  font-family: 'Fredoka One', cursive; font-size: .82rem;
  transition: all .18s;
}
.htag:hover { background: var(--y); color: var(--dk); border-color: var(--y); }

.hbtns { display: flex; gap: 10px; flex-wrap: wrap; }
.bty {
  background: var(--y); color: var(--dk);
  padding: 13px 30px; border-radius: 999px;
  border: 3px solid var(--dk); box-shadow: 5px 5px 0 var(--dk);
  font-family: 'Fredoka One', cursive; font-size: .95rem;
  text-decoration: none; cursor: none; display: inline-block;
  transition: all .14s;
}
.bty:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--dk); }

/* hero photo */
.hr { flex-shrink: 0; position: relative; }
.hcircle {
  width: 260px; height: 260px;
  border-radius: 50%; overflow: hidden;
  border: 5px solid var(--cr);
  box-shadow: 10px 10px 0 var(--dk);
  position: relative; z-index: 2;
}
.hcircle img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.stk {
  position: absolute;
  font-family: 'Fredoka One', cursive;
  padding: 7px 14px; border-radius: 8px;
  border: 2.5px solid var(--dk); box-shadow: 3px 3px 0 var(--dk);
  font-size: .76rem; z-index: 3; white-space: nowrap;
}
.ska { bottom: 10px; right: -20px; background: var(--y);  color: var(--dk); transform: rotate(6deg);  }
.skb { top: 6px;    left: -16px;  background: var(--pk); color: white;     transform: rotate(-9deg); }

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.mq-wrap {
  background: var(--dk); overflow: hidden;
  padding: 13px 0;
  border-top: 3px solid var(--y);
  border-bottom: 3px solid var(--y);
}
.mq-track {
  display: flex; gap: 44px;
  white-space: nowrap;
  animation: mq 22s linear infinite;
}
.mq-track:hover { animation-play-state: paused; }
.mq-i {
  font-family: 'Boogaloo', cursive; font-size: 1.15rem;
  color: var(--cr); display: flex; align-items: center; gap: 11px; flex-shrink: 0;
}
.mdot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
@keyframes mq {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   SECTION HELPERS
══════════════════════════════════════ */
.sw { max-width: 980px; margin: 0 auto; padding: 0 28px; }

.s-chip {
  display: inline-block;
  padding: 5px 16px;
  border: 2.5px solid var(--dk); border-radius: 50px;
  font-family: 'Fredoka One', cursive; font-size: .75rem;
  letter-spacing: 2px; text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--dk); margin-bottom: 12px;
}
.s-title {
  font-family: 'Boogaloo', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1; color: var(--dk); margin-bottom: 40px;
}
.s-title .acc { color: var(--r); }

/* ══════════════════════════════════════
   ACCORDION LEERJAAR CARD
══════════════════════════════════════ */
#lj-sec { padding: 80px 0; }

.yrc {
  background: white;
  border: 3px solid var(--dk); border-radius: 22px;
  margin-bottom: 20px;
  box-shadow: 6px 6px 0 var(--dk);
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
}
.yrc:hover { transform: translate(-2px,-2px); box-shadow: 9px 9px 0 var(--dk); }

.yrh {
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: none;
  border-bottom: 3px solid transparent;
  transition: background .18s, border-color .2s;
}
.yrc.open .yrh  { border-bottom: 3px solid var(--dk); }
.yrh:hover      { background: rgba(0,0,0,.025); }

.yrhl { display: flex; align-items: center; gap: 16px; }
.yrnum {
  font-family: 'Boogaloo', cursive; font-size: 2.8rem;
  line-height: 1; width: 56px; text-align: center;
}
.yrinfo h3   { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; margin-bottom: 2px; }
.yrrange     { font-size: .85rem; color: #888; font-weight: 600; }
.yrarr       { font-size: 1.4rem; font-weight: 700; transition: transform .3s; color: var(--dk); }
.yrc.open .yrarr { transform: rotate(90deg); }

.yrbody { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.yrc.open .yrbody { max-height: 9999px; }
.yrcontent { padding: 22px 24px 26px; }

/* subject tags */
.subj-row  { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 8px; }
.subj-label {
  font-family: 'Fredoka One', cursive; font-size: .72rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: #aaa; margin-bottom: 10px;
}
.subjtag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border: 2.5px solid var(--dk); border-radius: 50px;
  font-family: 'Fredoka One', cursive; font-size: .82rem;
  box-shadow: 3px 3px 0 var(--dk);
  cursor: none; transition: all .18s;
}
.subjtag:hover,
.subjtag.active { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--dk); }

.vk-av { background: var(--y);  color: var(--dk); }
.vk-gv { background: var(--pk); color: var(--dk); }
.vk-ad { background: var(--r);  color: white; }
.vk-gd { background: var(--b);  color: white; }
.vk-co { background: var(--g);  color: white; }
.vk-bu { background: var(--pu); color: white; }
.vk-be { background: #FF6B35;  color: white; }

/* period panel */
.subj-panel {
  display: none; margin-top: 20px;
  border-top: 2px dashed rgba(26,26,46,.15);
  padding-top: 18px;
}
.subj-panel.show { display: block; }

.per-label {
  font-family: 'Fredoka One', cursive; font-size: .72rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--pu); margin-bottom: 12px;
}
.per-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 500px) { .per-grid { grid-template-columns: repeat(2,1fr); } }

.perbox {
  padding: 14px 10px;
  border: 2.5px solid var(--dk); border-radius: 14px;
  text-align: center; cursor: none;
  transition: all .18s;
  box-shadow: 3px 3px 0 var(--dk);
  background: var(--cr);
  position: relative; overflow: hidden;
}
.perbox:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--dk); }
.perbox .pnum {
  font-family: 'Boogaloo', cursive; font-size: 1.6rem;
  line-height: 1; margin-bottom: 3px;
}
.perbox .pname { font-size: .7rem; font-weight: 700; color: #666; }
.perbox .pbadge {
  position: absolute; top: 5px; right: 7px;
  font-family: 'Fredoka One', cursive; font-size: .58rem;
  background: var(--g); color: white;
  padding: 1px 6px; border-radius: 999px;
  display: none;
}
.perbox.has-werk .pbadge { display: block; }

/* year footer */
.yr-foot {
  margin-top: 18px; padding-top: 14px;
  border-top: 2px dashed rgba(26,26,46,.15);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; font-weight: 700;
}
.yr-status {
  padding: 3px 12px; border: 2px solid var(--dk); border-radius: 50px;
  font-family: 'Fredoka One', cursive; font-size: .72rem;
}
.st-done { background: var(--g);  color: white; }
.st-cur  { background: var(--y); }
.st-soon { background: #ddd; }

/* ══════════════════════════════════════
   STAGES
══════════════════════════════════════ */
#stage-sec {
  background: var(--pk); padding: 80px 0;
  border-top: 3px solid var(--dk);
  border-bottom: 3px solid var(--dk);
}
.stage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 22px;
}
.scard {
  background: white;
  border: 3px solid var(--dk); border-radius: 22px;
  padding: 28px;
  box-shadow: 6px 6px 0 var(--dk);
  transition: all .25s;
}
.scard:hover { transform: translate(-3px,-3px) rotate(-.5deg); box-shadow: 10px 10px 0 var(--dk); }

.sc-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.sc-num  { font-family: 'Boogaloo', cursive; font-size: 3.5rem; line-height: 1; color: var(--dk); }
.sc-yr   {
  padding: 4px 12px; border: 2px solid var(--dk); border-radius: 50px;
  font-family: 'Fredoka One', cursive; font-size: .76rem;
  background: var(--y); box-shadow: 2px 2px 0 var(--dk);
}
.scard h3     { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.scard > p    { font-size: .88rem; color: #555; line-height: 1.6; margin-bottom: 20px; }

/* ══════════════════════════════════════
   WERK GRID
══════════════════════════════════════ */
.werk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 16px; margin-top: 14px;
}
.wi {
  background: white;
  border: 3px solid var(--dk); border-radius: 16px;
  box-shadow: 4px 4px 0 var(--dk);
  overflow: hidden; cursor: none; transition: all .2s;
}
.wi:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 var(--dk); }
.wi-thumb {
  width: 100%; height: 170px;
  object-fit: cover; display: block;
  border-bottom: 3px solid var(--dk);
}
.wi-no {
  width: 100%; height: 100px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; background: var(--cr);
  border-bottom: 3px solid var(--dk);
}
.wi-body  { padding: 14px 16px; }
.wi-vak   { font-family: 'Fredoka One', cursive; font-size: .62rem; letter-spacing: 1.5px; text-transform: uppercase; color: #bbb; margin-bottom: 4px; }
.wi-body h4  { font-family: 'Boogaloo', cursive; font-size: 1.1rem; margin-bottom: 5px; }
.wi-body p   { font-size: .8rem; color: #666; line-height: 1.5; margin-bottom: 9px; }
.wi-type {
  font-family: 'Fredoka One', cursive; font-size: .65rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--cr); border: 2px solid var(--dk);
  padding: 2px 9px; border-radius: 999px; display: inline-block;
}

.empty-state {
  border: 3px dashed rgba(26,26,46,.13); border-radius: 16px;
  padding: 44px; text-align: center; color: #bbb;
  font-size: .85rem; margin-top: 14px;
}
.empty-state span { display: block; font-size: 2.2rem; margin-bottom: 8px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--dk); padding: 36px 24px;
  text-align: center; border-top: 3px solid var(--y);
}
footer p    { font-family: 'Fredoka One', cursive; color: rgba(255,248,240,.45); font-size: .88rem; }
footer .sm  { font-size: .78rem; margin-top: 5px; opacity: .5; }

/* ══════════════════════════════════════
   WERK LIGHTBOX MODAL
══════════════════════════════════════ */
.wmod-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.82); z-index: 3000;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.wmod-bg.open { display: flex; }
.wmod {
  background: var(--cr);
  border: 4px solid var(--dk); border-radius: 24px;
  max-width: 720px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: 12px 12px 0 var(--dk);
  animation: popIn .25s ease-out;
}
@keyframes popIn {
  0%   { transform: scale(.86) rotate(-2deg); opacity: 0; }
  100% { transform: scale(1) rotate(0);       opacity: 1; }
}
.wmod-head {
  padding: 18px 22px; border-bottom: 3px solid var(--dk);
  display: flex; justify-content: space-between; align-items: center;
  border-radius: 20px 20px 0 0;
  position: sticky; top: 0; z-index: 2;
  background: var(--cr);
}
.wmod-close {
  width: 40px; height: 40px;
  border: 2.5px solid var(--dk); border-radius: 50%;
  background: var(--r); color: white;
  font-weight: 700; cursor: none; font-size: 1rem;
  box-shadow: 2px 2px 0 var(--dk); transition: all .18s;
}
.wmod-close:hover { transform: scale(1.1); background: var(--pk); }
.wmod-title { font-family: 'Boogaloo', cursive; font-size: 1.5rem; }
.wmod-body  { padding: 22px; }

.mod-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
  gap: 10px; margin-bottom: 20px;
}

/* foto wrapper — klikbaar */
.mod-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2.5px solid var(--dk);
  cursor: none;
  aspect-ratio: 4/3;
  background: var(--cr);
}
.mod-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .25s;
}
.mod-img-wrap:hover img { transform: scale(1.04); }

/* hover overlay */
.mod-img-hover {
  position: absolute; inset: 0;
  background: rgba(26,26,46,.55);
  color: white;
  font-family: 'Fredoka One', cursive;
  font-size: .88rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s;
}
.mod-img-wrap:hover .mod-img-hover { opacity: 1; }

/* foto niet gevonden fallback */
.mod-img-fail {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; color: #aaa;
  font-family: 'Fredoka One', cursive;
  background: var(--cr);
  text-align: center; padding: 12px;
}

/* geen foto's state */
.mod-no-imgs {
  border: 3px dashed rgba(26,26,46,.12);
  border-radius: 14px; padding: 36px;
  text-align: center; color: #bbb;
  font-family: 'Fredoka One', cursive;
  font-size: .9rem; margin-bottom: 20px;
}

/* beschrijving box */
.mod-desc-box {
  background: rgba(26,26,46,.04);
  border: 2px solid rgba(26,26,46,.1);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.mod-desc-label {
  font-family: 'Fredoka One', cursive;
  font-size: .7rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--pu);
  margin-bottom: 8px;
}
.mod-desc {
  font-size: .95rem; color: #333;
  line-height: 1.7; margin: 0;
}

/* meta tags row */
.mod-meta-row { display: flex; gap: 8px; flex-wrap: wrap; }
.mod-tag {
  font-family: 'Fredoka One', cursive;
  font-size: .72rem; letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--cr);
  border: 2px solid var(--dk);
  padding: 3px 12px; border-radius: 999px;
  color: var(--dk);
}

/* ══════════════════════════════════════
   PERIOD MODAL
══════════════════════════════════════ */
.pmod-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.8); z-index: 2500;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.pmod-bg.open { display: flex; }
.pmod {
  background: white;
  border: 4px solid var(--dk); border-radius: 24px;
  max-width: 780px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: 12px 12px 0 var(--dk);
  animation: popIn .25s ease-out;
}
.pmod-head {
  padding: 20px 24px; border-bottom: 3px solid var(--dk);
  display: flex; justify-content: space-between; align-items: center;
  border-radius: 20px 20px 0 0;
  position: sticky; top: 0; z-index: 2;
}
.pmod-close {
  width: 40px; height: 40px;
  border: 2.5px solid var(--dk); border-radius: 50%;
  background: var(--r); color: white;
  font-weight: 700; cursor: none; font-size: 1rem;
  box-shadow: 2px 2px 0 var(--dk); transition: all .18s;
}
.pmod-close:hover { transform: scale(1.1); background: var(--pk); }
.pmod-title { font-family: 'Boogaloo', cursive; font-size: 1.4rem; }
.pmod-body  { padding: 22px 24px; }

/* ══════════════════════════════════════
   FULLSCREEN IMAGE
══════════════════════════════════════ */
.fsimg-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92); z-index: 4000;
  display: none; align-items: center; justify-content: center;
  cursor: none;
}
.fsimg-bg.open { display: flex; }
.fsimg-bg img {
  max-width: 92vw; max-height: 90vh;
  border-radius: 12px; border: 4px solid white;
  box-shadow: 0 0 60px rgba(0,0,0,.8);
}
.fs-close {
  position: fixed; top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: var(--r); color: white;
  border: 3px solid white; border-radius: 50%;
  font-size: 1.1rem; font-weight: 700; cursor: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 3px 3px 0 rgba(0,0,0,.4);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 680px) {
  .hero        { padding: 100px 22px 60px; min-height: auto; }
  .hero-in     { flex-direction: column; text-align: center; gap: 24px; }
  .hbtns,.htags{ justify-content: center; }
  .hr          { order: -1; }
  .hcircle     { width: 180px; height: 180px; }
  .sw          { padding: 0 18px; }
}