/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
body{font-family:'Inter',system-ui,-apple-system,sans-serif;background:#fbfbfb;color:#111;overflow-x:hidden;cursor:none;line-height:1.65;font-feature-settings:'ss01','ss02','cv01'}
a{color:inherit;text-decoration:none;cursor:none}
img{max-width:100%;display:block}
button{border:none;background:none;cursor:none;font-family:inherit}

/* ===== CURSOR (refined Palmer) ===== */
.cursor-dot{
  position:fixed;top:0;left:0;width:6px;height:6px;
  background:#111;border-radius:50%;pointer-events:none;z-index:10000;
  transform:translate(-50%,-50%);
  transition:width .3s cubic-bezier(.16,1,.3,1),height .3s cubic-bezier(.16,1,.3,1),background .3s,opacity .3s;
}
.cursor-outline{
  position:fixed;top:0;left:0;width:32px;height:32px;
  border:1px solid rgba(17,17,17,.25);border-radius:50%;
  pointer-events:none;z-index:9999;
  transform:translate(-50%,-50%);
  transition:width .45s cubic-bezier(.16,1,.3,1),height .45s cubic-bezier(.16,1,.3,1),border-color .35s,background .35s,opacity .35s;
}
body.cursor-hover .cursor-dot{width:4px;height:4px;background:#fff;mix-blend-mode:normal}
body.cursor-hover .cursor-outline{
  width:48px;height:48px;
  background:rgba(17,17,17,.88);border-color:transparent;
}
body.cursor-hover .cursor-outline::after{
  content:'KLIK';position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  color:rgba(255,255,255,.85);font-size:7px;font-weight:600;letter-spacing:2px;text-transform:uppercase;
}

@media(max-width:1024px){.cursor-dot,.cursor-outline{display:none!important}body{cursor:auto}a,button{cursor:pointer}}

/* ===== HERO ===== */
.hero{position:relative;height:100vh;min-height:650px;overflow:hidden}
.hero-bg{position:absolute;inset:0;will-change:transform}
.hero-slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transition:opacity 1.8s cubic-bezier(.4,0,.2,1);will-change:opacity;transform:scale(1.04);transition:opacity 1.8s cubic-bezier(.4,0,.2,1),transform 8s cubic-bezier(.4,0,.2,1)}
.hero-slide.active{opacity:1;transform:scale(1)}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(251,251,251,.08) 0%,rgba(251,251,251,.4) 40%,rgba(251,251,251,.85) 75%,rgba(251,251,251,1) 100%)}
.hero-inner{position:relative;z-index:2;height:100%;display:flex;flex-direction:column;justify-content:space-between;padding:2.5rem 4rem}
.hero-top{display:flex;justify-content:space-between;align-items:center}
.hero-logo{font-size:1.1rem;font-weight:700;letter-spacing:-.02em}
.hero-tag{font-size:.68rem;font-weight:400;letter-spacing:.12em;text-transform:uppercase;color:#888}
.hero-center{flex:1;display:flex;align-items:center;justify-content:center}
.hero-title{
  font-size:clamp(3rem,7.5vw,7.5rem);font-weight:200;line-height:1;
  letter-spacing:-.05em;text-align:center;color:#111;
}
.hero-bottom{display:flex;justify-content:space-between;align-items:flex-end}
.hero-scroll{display:flex;flex-direction:column;align-items:center;gap:.5rem}
.scroll-line{width:1px;height:48px;background:linear-gradient(180deg,transparent,#111);display:block;animation:scrollPulse 2.5s ease-in-out infinite}
.scroll-text{font-size:.6rem;letter-spacing:.15em;text-transform:uppercase;font-weight:500;color:#999}
@keyframes scrollPulse{0%,100%{opacity:.2;transform:scaleY(.6)}50%{opacity:.8;transform:scaleY(1)}}
.hero-status{display:flex;align-items:center;gap:.5rem;font-size:.68rem;letter-spacing:.08em;text-transform:uppercase;font-weight:500;color:#666}
.status-dot{width:6px;height:6px;border-radius:50%;background:#FF4500;animation:blink 2.5s ease infinite}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.2}}
.accent{color:#FF4500}

/* ===== NAV ===== */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;padding:0 4rem;height:52px;
  display:flex;align-items:center;
  background:rgba(251,251,251,.82);backdrop-filter:blur(24px) saturate(180%);-webkit-backdrop-filter:blur(24px) saturate(180%);
  border-bottom:1px solid rgba(0,0,0,.04);
  transform:translateY(-100%);opacity:0;
  transition:transform .55s cubic-bezier(.16,1,.3,1),opacity .55s cubic-bezier(.16,1,.3,1);
}
.nav.visible{transform:translateY(0);opacity:1}
.nav-inner{width:100%;display:flex;align-items:center;justify-content:space-between}
.nav-logo{font-size:.9rem;font-weight:700;letter-spacing:-.02em}
.nav-links{display:flex;gap:2.5rem}
.nav-links a{
  font-size:.72rem;font-weight:500;letter-spacing:.06em;text-transform:uppercase;color:#999;
  transition:color .35s cubic-bezier(.16,1,.3,1);
  position:relative;
}
.nav-links a::after{
  content:'';position:absolute;bottom:-2px;left:0;width:0;height:1px;background:#111;
  transition:width .35s cubic-bezier(.16,1,.3,1);
}
.nav-links a:hover{color:#111}
.nav-links a:hover::after{width:100%}
.nav-status{display:flex;align-items:center;gap:.4rem;font-size:.65rem;letter-spacing:.08em;text-transform:uppercase;font-weight:500;color:#aaa}
.nav-burger{display:none;width:26px;height:18px;position:relative}
.nav-burger span{display:block;width:100%;height:1px;background:#111;position:absolute;left:0;transition:all .35s cubic-bezier(.16,1,.3,1)}
.nav-burger span:first-child{top:0}
.nav-burger span:last-child{bottom:0}
.nav-burger.open span:first-child{top:50%;transform:translateY(-50%) rotate(45deg)}
.nav-burger.open span:last-child{bottom:auto;top:50%;transform:translateY(-50%) rotate(-45deg)}

@media(max-width:768px){
  .nav{padding:0 1.5rem}
  .nav-links,.nav-status{display:none}
  .nav-burger{display:block}
}

/* ===== MOBILE NAV ===== */
.mobile-nav{
  position:fixed;top:0;left:0;right:0;bottom:0;z-index:99;
  background:rgba(251,251,251,.96);backdrop-filter:blur(30px);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2.5rem;
  opacity:0;pointer-events:none;transition:opacity .4s cubic-bezier(.16,1,.3,1);
}
.mobile-nav.open{opacity:1;pointer-events:auto}
.mobile-nav a{font-size:2rem;font-weight:200;letter-spacing:-.03em;color:#111;transition:opacity .3s}
.mobile-nav a:hover{opacity:.5}

/* ===== SECTION DIVIDER (Palmer ©) ===== */
.section-divider{
  display:flex;justify-content:space-between;align-items:center;
  padding:.9rem 4rem;
  border-top:1px solid rgba(0,0,0,.06);
  font-size:.62rem;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:#bbb;
}
@media(max-width:768px){.section-divider{padding:.9rem 1.5rem}}

/* ===== SECTIONS ===== */
.section{padding:6rem 0}
.container{max-width:1180px;margin:0 auto;padding:0 4rem}
@media(max-width:768px){.container{padding:0 1.5rem}.section{padding:3.5rem 0}}

/* ===== REVEAL ANIMATION ===== */
.reveal{
  opacity:0;transform:translateY(40px);
  transition:opacity 1s cubic-bezier(.16,1,.3,1),transform 1s cubic-bezier(.16,1,.3,1);
  transition-delay:var(--d,0s);
}
.reveal.visible{opacity:1;transform:translateY(0)}

/* ===== ABOUT ===== */
.big-text{
  font-size:clamp(1.8rem,3.5vw,3.2rem);font-weight:200;line-height:1.3;
  letter-spacing:-.04em;margin-bottom:4rem;color:#111;
}
.big-text em{font-style:italic;font-weight:300}
.about-body{display:flex;flex-direction:column;gap:3.5rem}
.about-desc{max-width:640px;font-size:.95rem;line-height:1.75;color:#666;font-weight:400}
.about-cols{display:grid;grid-template-columns:repeat(3,1fr);gap:3rem}
.about-col{border-top:1px solid rgba(0,0,0,.06);padding-top:1.8rem}
.col-num{font-size:.65rem;font-weight:600;letter-spacing:.1em;color:#ccc;display:block;margin-bottom:1rem}
.about-col h3{font-size:1.05rem;font-weight:600;margin-bottom:.6rem;letter-spacing:-.02em}
.about-col p{font-size:.85rem;line-height:1.7;color:#777}
@media(max-width:768px){.about-cols{grid-template-columns:1fr}}

/* ===== MARQUEE ===== */
.marquee{overflow:hidden;padding:3rem 0;border-top:1px solid rgba(0,0,0,.04);border-bottom:1px solid rgba(0,0,0,.04)}
.marquee-track{
  display:flex;gap:3rem;animation:scroll 25s linear infinite;width:max-content;
  font-size:clamp(2rem,5vw,4.5rem);font-weight:100;letter-spacing:-.04em;color:#e0e0e0;
  white-space:nowrap;
}
@keyframes scroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ===== EDITIONS ===== */
.section-head{font-size:clamp(2.2rem,5vw,4rem);font-weight:200;letter-spacing:-.05em;margin-bottom:4rem}
/* removed .light class */
.edition{padding:4rem 0;border-top:1px solid rgba(0,0,0,.04)}
.edition-row{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:start}
.edition-left{position:relative}
.edition-num{
  font-size:clamp(5rem,12vw,10rem);font-weight:100;letter-spacing:-.06em;
  line-height:.85;display:block;margin-bottom:1.5rem;opacity:.25;
}
.edition-img{overflow:hidden;border-radius:6px}
.edition-img img{
  width:100%;aspect-ratio:4/3;object-fit:cover;
  transition:transform .8s cubic-bezier(.16,1,.3,1);
}
.edition-img:hover img{transform:scale(1.04)}
.edition-thumbs{display:grid;grid-template-columns:repeat(3,1fr);gap:.5rem;margin-top:.5rem}
.edition-thumbs div{overflow:hidden;border-radius:4px}
.edition-thumbs img{
  width:100%;aspect-ratio:1;object-fit:cover;
  transition:transform .6s cubic-bezier(.16,1,.3,1);
}
.edition-thumbs div:hover img{transform:scale(1.06)}
.edition-right h3{font-size:1.8rem;font-weight:600;letter-spacing:-.03em;margin-bottom:.3rem}
.edition-year{font-size:.7rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:#bbb;display:block;margin-bottom:1.5rem}
.edition-lead{font-size:1.15rem;font-weight:400;color:#333;margin-bottom:1rem;line-height:1.5;letter-spacing:-.01em}
.edition-text{font-size:.9rem;line-height:1.75;color:#777;margin-bottom:2rem}
.edition-meta{margin-bottom:1.5rem}
.meta-label{font-size:.62rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:#bbb;display:block;margin-bottom:.4rem}
.meta-val{font-size:.9rem;color:#666;display:block;margin-bottom:.7rem}
.map-btn{
  display:inline-block;font-size:.75rem;font-weight:600;letter-spacing:.04em;
  color:var(--c,#111);position:relative;padding-bottom:3px;
  transition:opacity .35s;
}
.map-btn::after{
  content:'';position:absolute;bottom:0;left:0;width:100%;height:1.5px;
  background:var(--c,#111);transition:transform .35s cubic-bezier(.16,1,.3,1);
  transform-origin:left;
}
.map-btn:hover{opacity:.7}
.map-btn:hover::after{transform:scaleX(.6)}
.badge{
  font-size:.58rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  background:#FF4500;color:#fff;padding:3px 10px;border-radius:20px;vertical-align:middle;
}

@media(max-width:768px){.edition-row{grid-template-columns:1fr;gap:2rem}}

/* ===== ACCORDION ===== */
.accordion{margin-top:.8rem}
.accordion summary{
  font-size:.8rem;font-weight:500;letter-spacing:.03em;cursor:pointer;color:#888;
  list-style:none;display:flex;align-items:center;gap:.5rem;
  padding:.7rem 0;border-top:1px solid rgba(0,0,0,.05);
  transition:color .3s;
}
.accordion summary:hover{color:#555}
.accordion summary::-webkit-details-marker{display:none}
.accordion summary::before{content:'+';font-size:1rem;font-weight:200;color:#ccc;transition:transform .4s cubic-bezier(.16,1,.3,1)}
details[open] summary::before{transform:rotate(45deg)}
.accordion .count{font-size:.62rem;font-weight:500;color:#ccc;margin-left:auto}
.accordion p{font-size:.8rem;line-height:1.85;color:#999;padding:.5rem 0 1rem}

/* ===== SCROLL TEXT REVEAL ===== */
.sr-section{
  position:relative;height:300vh;
}
.sr-sticky{
  position:sticky;top:0;height:100vh;width:100%;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
}
.sr-bg-img{
  position:absolute;inset:0;background-size:cover;background-position:center;
  opacity:0;will-change:opacity;
}
.sr-overlay{
  position:absolute;inset:0;
  background:rgba(251,251,251,.7);
}
.sr-text{
  position:relative;z-index:2;
  font-family:'Inter',sans-serif;
  font-size:clamp(2rem,5vw,4.2rem);
  font-weight:500;
  color:#d0d0d0;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:0 .3em;
  line-height:1.2;
  letter-spacing:-.03em;
  max-width:860px;
  padding:0 2rem;
}
.sr-text .sr-w{
  transition:color .4s cubic-bezier(.16,1,.3,1);
}

/* ===== TEAM ===== */
.team-row{display:grid;grid-template-columns:repeat(3,1fr);gap:2.5rem;margin-bottom:3.5rem}
.team-card{text-align:center}
.team-img{overflow:hidden;border-radius:6px;margin-bottom:1rem}
.team-img img{
  width:100%;aspect-ratio:3/4;object-fit:cover;
  filter:grayscale(.15);
  transition:filter .6s cubic-bezier(.16,1,.3,1),transform .8s cubic-bezier(.16,1,.3,1);
}
.team-card:hover .team-img img{filter:grayscale(0);transform:scale(1.03)}
.team-card h4{font-size:.92rem;font-weight:600;letter-spacing:-.01em;margin-bottom:.15rem}
.team-card span{font-size:.72rem;color:#aaa;font-weight:400}
@media(max-width:768px){.team-row{grid-template-columns:repeat(2,1fr);gap:1.5rem}}

/* ===== PARTNER ===== */
.partner-block{border-top:1px solid rgba(0,0,0,.06);padding-top:2.5rem}
.partner-row{display:flex;align-items:center;gap:2.5rem;margin-top:1rem}
.partner-logo{height:44px;width:auto;opacity:.7;transition:opacity .4s}
.partner-logo:hover{opacity:1}
.partner-row p{font-size:.9rem;line-height:1.7;color:#777;max-width:480px}
@media(max-width:768px){.partner-row{flex-direction:column;align-items:flex-start}}

/* ===== SPONSORS ===== */
.sponsors-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-bottom:3.5rem}
.sponsor-block{
  border:1px solid rgba(0,0,0,.04);border-radius:8px;
  padding:2rem 1.2rem;display:flex;flex-direction:column;
  align-items:center;justify-content:center;gap:.8rem;text-align:center;
  transition:border-color .4s cubic-bezier(.16,1,.3,1),box-shadow .4s cubic-bezier(.16,1,.3,1);
}
.sponsor-block:hover{border-color:rgba(0,0,0,.1);box-shadow:0 4px 20px rgba(0,0,0,.04)}
.sponsor-cat{font-size:.58rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:#ccc}
.sponsor-block img{max-height:40px;width:auto;filter:grayscale(1);opacity:.7;transition:filter .5s,opacity .5s}
.sponsor-block:hover img{filter:grayscale(0);opacity:1}
.sponsor-text{font-size:.95rem;font-weight:600;color:#888;transition:color .4s}
.sponsor-block:hover .sponsor-text{color:#555}
.inst-logos{display:flex;align-items:center;justify-content:center;gap:3.5rem;padding-top:2rem;border-top:1px solid rgba(0,0,0,.04)}
.inst-logos img{height:32px;width:auto;filter:grayscale(1);opacity:.3;transition:filter .5s,opacity .5s}
.inst-logos img:hover{filter:grayscale(0);opacity:.7}
@media(max-width:768px){.sponsors-grid{grid-template-columns:repeat(2,1fr)}.inst-logos{gap:1.5rem;flex-wrap:wrap}.inst-logos img{height:26px}}

/* ===== FOOTER ===== */
.footer{padding:6rem 0 2.5rem;background:#fbfbfb}
.footer-main{text-align:center;margin-bottom:5rem}
.footer-headline{
  font-size:clamp(2.2rem,5.5vw,4.5rem);font-weight:200;
  letter-spacing:-.05em;line-height:1.1;margin-bottom:2rem;
}
.footer-email{
  font-size:clamp(1rem,2vw,1.35rem);font-weight:500;letter-spacing:-.01em;
  position:relative;display:inline-block;padding-bottom:4px;
  transition:opacity .35s;
}
.footer-email::after{
  content:'';position:absolute;bottom:0;left:0;width:100%;height:2px;
  background:#FF4500;transition:transform .4s cubic-bezier(.16,1,.3,1);
  transform-origin:left;
}
.footer-email:hover{opacity:.6}
.footer-email:hover::after{transform:scaleX(.5)}
.footer-bottom{display:flex;justify-content:space-between;align-items:flex-end;padding-top:2rem;border-top:1px solid rgba(0,0,0,.04)}
.footer-brand{font-size:.85rem;font-weight:700;display:block;margin-bottom:.2rem;letter-spacing:-.01em}
.footer-sub{font-size:.68rem;color:#bbb;font-weight:400}
.footer-links a{
  font-size:.72rem;font-weight:500;letter-spacing:.06em;text-transform:uppercase;color:#999;
  transition:color .35s;position:relative;
}
.footer-links a::after{
  content:'';position:absolute;bottom:-2px;left:0;width:0;height:1px;background:#111;
  transition:width .35s cubic-bezier(.16,1,.3,1);
}
.footer-links a:hover{color:#111}
.footer-links a:hover::after{width:100%}
.back-top{font-size:.68rem;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:#bbb;transition:color .35s}
.back-top:hover{color:#111}
@media(max-width:768px){.footer-bottom{flex-direction:column;align-items:flex-start;gap:1.5rem}}

/* ===== LIGHTBOX ===== */
.lightbox{
  position:fixed;inset:0;z-index:1000;
  background:rgba(0,0,0,.94);
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;
  transition:opacity .45s cubic-bezier(.16,1,.3,1);
}
.lightbox.open{opacity:1;pointer-events:auto}
.lightbox img{max-width:88vw;max-height:88vh;object-fit:contain;border-radius:4px;transform:scale(.95);transition:transform .5s cubic-bezier(.16,1,.3,1)}
.lightbox.open img{transform:scale(1)}
.lb-close{
  position:absolute;top:1.8rem;right:1.8rem;color:#fff;font-size:1.2rem;z-index:1001;
  width:36px;height:36px;display:flex;align-items:center;justify-content:center;
  border-radius:50%;background:rgba(255,255,255,.08);
  transition:background .3s,transform .3s cubic-bezier(.16,1,.3,1);
}
.lb-close:hover{background:rgba(255,255,255,.15);transform:rotate(90deg)}

/* ===== SMOOTH SCROLLBAR ===== */
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:transparent}
::-webkit-scrollbar-thumb{background:rgba(0,0,0,.12);border-radius:3px}
::-webkit-scrollbar-thumb:hover{background:rgba(0,0,0,.2)}

/* ===== SELECTION ===== */
::selection{background:rgba(255,69,0,.1);color:#111}
