html, body{
  margin: 0;
  padding: 0;
  border: 0;
  
}
body {
  position: relative;
  transition: 0.25s cubic-bezier(0, 1, 0.25, 1) right;
  right: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
  margin:0px;
}

html.featured-open,
body.featured-open {
  overflow: hidden;
  height: 100%;
}


main.home {
  padding-bottom: 0;
  max-width: 100vw;
  overflow-x: hidden;
}

@media screen and (min-width: 640px) {
  main.home {
    margin-top: 0;
    padding-bottom: 102px;
    max-width: none;
  }
}

main.home .featured {
  display: none;
  position: relative;
  height: 540px;
  max-height: 85vh;
  margin-bottom: 50px;
  overflow: hidden;
  background-color: black;
}

main.home .featured .play-video {
  top: 40%;
}

main.home .featured .arrow-svg {
  display: none;
  position: absolute;
  bottom: 54px;
  right: 0px;
  width: 45px;
  height: 17px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  z-index: 1;
}

main.home .featured .arrow-svg svg path,
main.home .featured .arrow-svg svg rect,
main.home .featured .arrow-svg svg circle,
main.home .featured .arrow-svg svg polygon {
  fill: white;
  stroke: white;
}

@media screen and (min-width: 640px) {
  main.home .featured {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 560px;
  }
  main.home .featured .arrow-svg {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  main.home .featured {
    height: 698px;
    margin-bottom: 62px;
  }
}

@media screen and (min-width: 1300px) {
  main.home .featured {
    height: 860px;
  }
}

@media screen and (max-height: 1600px) {
  main.home .featured {
    max-height: 100vh;
  }
  main.home .featured .featured-item,
  main.home .featured .image,
  main.home .featured figure {
    height: 100vh;
  }
  main.home .featured img {
    min-height: 100vh;
    width: auto;
    max-width: none;
  }
}

main.home .featured-item {
  margin-bottom: 12px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

main.home .featured-item:before, main.home .featured-item:after {
  box-sizing: inherit;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  width: 0;
  height: 0;
  z-index: 1;
  transition: border 300ms ease-out;
}

main.home .featured-item:before {
  top: 0;
  left: 0;
}

main.home .featured-item:after {
  bottom: 0;
  right: 0;
}

main.home .featured-item.loading:before, main.home .featured-item.loading:after {
  width: 100%;
  height: 100%;
}



@media screen and (min-width: 1024px) {
  main.home .featured-item.small {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (min-width: 1024px) {
  main.home .featured-item.small .image {
    padding-bottom: 55%;
  }
}

main.home .featured-item .image {
  padding-bottom: 55%;
  position: relative;
  overflow: hidden;
}

main.home .featured-item .image img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
}

@media screen and (min-width: 640px) {
  main.home .featured-item .image {
    background-color: black;
  }
}

@media screen and (min-width: 1024px) {
  main.home .featured-item .image {
    padding-bottom: 35%;
  }
}

main.home .featured-item .image img {
  transition: 150ms linear opacity;
  opacity: 0;
}

main.home .featured-item .image img.loaded {
  opacity: 1;
}

/* Option 1: Elegant fade-in with subtle scale (recommended) */
@keyframes elegant-fade-in {
  from {
    opacity: 0;
    transform: scale(0.98) translateY(0);
    filter: blur(1px);
    -webkit-filter: blur(1px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0px);
    -webkit-filter: blur(0px);
  }
}

/* Option 2: Professional slide-fade from bottom */
@keyframes slide-fade-up {
  from {
    opacity: 0;
    transform: translateY(5px);
    filter: blur(1px);
    -webkit-filter: blur(1px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
    -webkit-filter: blur(0px);
  }
}

/* Option 3: Sophisticated reveal with gentle blur */
@keyframes reveal-blur {
  from {
    opacity: 0;
    filter: blur(8px) brightness(1.1);
    -webkit-filter: blur(8px) brightness(1.1);
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    filter: blur(0px) brightness(1);
    -webkit-filter: blur(0px) brightness(1);
    transform: scale(1);
  }
}

/* Option 4: Premium magazine-style entrance */
@keyframes premium-entrance {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(20px);
    filter: blur(3px) saturate(0.8);
    -webkit-filter: blur(3px) saturate(0.8);
  }
  60% {
    opacity: 0.8;
    transform: scale(1.01) translateY(-2px);
    filter: blur(1px) saturate(1.1);
    -webkit-filter: blur(1px) saturate(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0px) saturate(1);
    -webkit-filter: blur(0px) saturate(1);
  }
}

main.home .featured-item figure {
  position: relative;
  transition: -webkit-filter 0.6s easeInOutCubic, -webkit-transform 0.6s easeInOutCubic;
  transition: filter 0.6s easeInOutCubic, transform 0.6s easeInOutCubic;
  transition: filter 0.6s easeInOutCubic, transform 0.6s easeInOutCubic, -webkit-filter 0.6s easeInOutCubic, -webkit-transform 0.6s easeInOutCubic;
}

/* Use the elegant fade-in animation (change to any of the options above) */
main.home .featured-item figure.loading:not(.isFF) {
  animation: none;
}

main.home .featured-item figure.loading:not(.isFF) img {
  opacity: 1 !important;
}

main.home .featured-item figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 12px;
}

@media screen and (min-width: 640px) {
  main.home .featured-item figcaption {
    padding: 24px;
  }
}

main.home .featured-mobile {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  min-width: 100vw;
  height: 100vh;
  margin-bottom: 0;
  z-index: 2;
  transition: -webkit-transform 600ms ease-out;
  transition: transform 600ms ease-out;
  transition: transform 600ms ease-out, -webkit-transform 600ms ease-out;
}

@media screen and (min-width: 640px) {
  main.home .featured-mobile {
    display: none;
  }
}

main.home .featured-mobile.hide {
  -webkit-transform: translate3d(0, -160%, 0);
  transform: translate3d(0, -160%, 0);
}

main.home .featured-mobile .featured-item {
  position: absolute;
  height: 100vh;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  background-color: #646464;
}

main.home .featured-mobile .featured-item figure .image {
  opacity: 0.9;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: opacity 150ms ease-in-out, -webkit-transform 250ms ease-out;
  transition: transform 250ms ease-out, opacity 150ms ease-in-out;
  transition: transform 250ms ease-out, opacity 150ms ease-in-out, -webkit-transform 250ms ease-out;
}

main.home .featured-mobile .featured-item.active {
  opacity: 1;
  visibility: visible;
}

main.home .featured-mobile .featured-item.active figure .image {
  opacity: 1;
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

main.home .featured-mobile figure {
  height: 100vh;
}

main.home .featured-mobile .mobile-image {
  height: 100vh;
}

main.home .featured-mobile .mobile-image img {
  width: auto;
}

main.home .featured-mobile .titles-wrapper {
  color: white;
  bottom: 105px;
}

main.home .featured-mobile .titles-wrapper figcaption {
  width: 350px;
  padding: 12px 18px;
}

main.home .featured-mobile .titles-wrapper h1 {
  font-weight: 500;
  font-size: 48px;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

@media screen and (min-width: 1024px) {
  main.home .featured-mobile .titles-wrapper h1 {
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 500;
  }
}

@media screen and (min-width: 1300px) {
  main.home .featured-mobile .titles-wrapper h1 {
    font-size: 74px;
    line-height: 0.92;
    letter-spacing: -0.04em;
  }
}

main.home .featured-mobile time {
  position: relative;
  vertical-align: super;
  font-family: "NB International Mono Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.065em;
  margin-left: 2px;
}

@media screen and (min-width: 1024px) {
  main.home .featured-mobile time {
    margin-left: -7.2px;
    top: -10px;
  }
}

@media screen and (min-width: 1300px) {
  main.home .featured-mobile time {
    margin-left: -12px;
    top: -14px;
  }
}

main.home .featured-mobile .indicator-wrapper {
  position: absolute;
  bottom: 105px;
  padding: 12px 24px;
  right: 0;
  color: white;
  z-index: 1;
  text-align: center;
}

main.home .featured-mobile .indicator-wrapper span {
  display: block;
}

main.home .featured-mobile .indicator-wrapper .indicator-line {
  width: 1px;
  height: 80px;
  margin: 8px auto;
  background-color: white;
  transition: height 275ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

main.home .featured-mobile .indicator-wrapper .indicator-total.arrow:after {
  content: '';
  display: block;
  position: relative;
  width: 18px;
  height: 18px;
  right: 0;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIxLjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAyMS40IDEyLjQiIHN0eWxlPSJmaWxsOndoaXRlOyIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjEuNCAxMi40IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8cG9seWdvbiBwb2ludHM9IjEwLjcsMTIuNCAwLDEuNCAxLjQsMCAxMC43LDkuNSAyMCwwIDIxLjQsMS40IAkiLz4KPC9nPgo8L3N2Zz4K");
  background-position: center;
  background-size: 18px 18px;
  background-repeat: no-repeat;
}

main.home .titles-wrapper {
  position: absolute;
  bottom: 40px;
  padding: 0;
  z-index: 9;
  opacity: 0;
  transition: opacity 120ms ease-out;
}

main.home .titles-wrapper.loaded {
  opacity: 1;
}

@media screen and (min-width: 640px) {
  main.home .titles-wrapper {
    bottom: 11px;
  }
}

@media screen and (min-width: 1024px) {
  main.home .titles-wrapper {
    width: 100%;
  }
}

main.home .featured-item-title {
  display: table;
  transition: opacity 200ms ease-in-out;
  /* max-width: 1900px; */
  /* margin: auto; */
  padding: 0 20px;
}
main.home .title-wrap {
    max-width: 1900px;
    margin: auto;
}
main.home .featured-item-title .hero-title span {
  display: inline-block;
  white-space: nowrap;
}

main.home .featured-item-title ul, main.home .featured-item-title li {
  display: inline-block;
  list-style: none;
}


main.home #hero-section h1 {
	color: #FFF;
font-family: "Trade Gothic LT Pro";
font-size: 48px;
font-style: normal;
font-weight: 400;
line-height: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  margin-bottom: 8px;
  margin-top:0;
  text-transform:uppercase;
   opacity: 0.6;
}
main.home .featured-item-title.active h1 {
  opacity: 1!important;
}

.ex-date {
    color: #FFF;
    font-family: "Helvetica";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}




@media screen and (min-width: 640px) {
  main.home h1 {
    margin-bottom: 0;
  }
}

main.home h1 a:hover {
  opacity: 0.8;
}


/* ────────────────────────────────────────────────────────────────────────── */
/* VERTICAL RECTANGULAR WIPE (Bottom → Top / Top → Bottom) — slow & smooth   */
/* Works with .reveal-layer + dir classes added by your JS                   */
/* ────────────────────────────────────────────────────────────────────────── */

:root{
  --control-size: 60px; /* not used by rect wipe, kept for parity */
  --slide-duration: 1.7s;                 /* slower reveal */
  --slide-ease: cubic-bezier(.25,1,.30,1);/* same premium easing */
}

/* Ensure positioning context for overlay */
.featured .image { position: relative; overflow: hidden; }

/* Overlay that reveals incoming slide */
.featured .image .reveal-layer {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  will-change: clip-path, opacity, transform;
}

/* Bottom → Top sweep (next/forward) */
@keyframes wipe-rect-up {
  from {
    clip-path: inset(100% 0 0 0);
    -webkit-clip-path: inset(100% 0 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}

/* Top → Bottom sweep (prev/back) */
@keyframes wipe-rect-down {
  from {
    clip-path: inset(0 0 100% 0);
    -webkit-clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}

/* Trigger animation based on direction */
.featured .image .reveal-layer.reveal.from-bottom {
  animation: wipe-rect-up var(--slide-duration) var(--slide-ease) both;
}
.featured .image .reveal-layer.reveal.from-top {
  animation: wipe-rect-down var(--slide-duration) var(--slide-ease) both;
}

/* Polished easing while the wipe happens */
.featured .image .reveal-layer.reveal {
  transform: translateY(0) scale(1);
  transition:
    transform .9s cubic-bezier(0.65, 0, 0.35, 1),
    opacity  .9s cubic-bezier(0.65, 0, 0.35, 1);
}
.featured .image .reveal-layer.reveal.done {
  transform: none;
  opacity: 0; /* fades away cleanly after the base img swaps */
}

/* Optional: slow the base image fade/transform a touch to match the vibe */
main.home .featured-item .image img {
  transition:
    opacity .9s cubic-bezier(0.65, 0, 0.35, 1),
    transform .9s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Reduced motion fallback */
@media (prefers-reduced-motion: reduce) {
  .featured .image .reveal-layer.reveal.from-bottom,
  .featured .image .reveal-layer.reveal.from-top { animation: none !important; }
  .featured .image .reveal-layer.reveal,
  main.home .featured-item .image img {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
/* ── Info-Follow tooltip (cursor follower) ─────────────────────────────── */
.info-follow {
  position: fixed;                 /* follows the cursor across viewport */
  left: 0; top: 50px;
  transform: translate(-9999px, -9999px); /* off-screen until first move */
  z-index: 100;                    /* above slider overlays */
  pointer-events: none;            /* never blocks hover on the image */
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: opacity .25s ease;
  align-items: flex-start;
  will-change: transform, opacity;
}
.info-follow.show { opacity: 1; }

.info-follow .badge {
  display: inline-block;
  padding: 4px;
  background: #fff!important;
  color: #000!important;
  font-family: "Trade Gothic LT Pro", Helvetica, Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
   text-shadow: none;
}
/* Hard reset: kill any inherited shadows/filters/blends inside the tooltip */
.info-follow,
.info-follow * {
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
  box-shadow: none !important;
}
/* Ensure crisp text against the white chip */
.info-follow .badge {
  background: #fff !important;
  color: #000 !important;
  /* keep AA consistent on all platforms */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* prevent background bleeding on scaled transforms */
  background-clip: padding-box;
}

span.badge.badge-cta {
    font-size: 16px;
}
/* Optional: flip to dark badges if slide is very light (JS toggles .dark) */
.info-follow.dark .badge { background:#000; color:#fff; }
/* make these areas feel clickable */
.featured .image,
.titles-wrapper,
header, #header {
  cursor: pointer;
}

/* Disable on touch devices */
@media (hover: none) { .info-follow { display: none; } }
