/* =============== FONTS ====================*/

@font-face {
  font-family: 'horizon';
  src: url('../fonts/horizon.otf') format('opentype');
}

@font-face {
  font-family: 'horizonoutlined';
  src: url('../fonts/horizon_outlined.otf') format('opentype');
}

@font-face {
  font-family: 'sf';
  src: url('../fonts/sf.otf') format('opentype');
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay.ttf') format('opentype');
}

/* =============== PC ====================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'sf', sans-serif;
}

body {
  padding-top: 60px;
  background: #fff;
}

/*================ VIDEO ============= */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  margin-top: -80px;
  pointer-events: none;
}

.hero-title {
  font-family: 'horizon';
  font-size: 46px;
}

.hero-subtitle {
  font-family: 'horizonoutlined';
  font-size: 46px;
  margin-top: 60px;
}

.hero-cta {
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: 5px;
  text-decoration: none;
  color: #fff;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

.hero-cta:hover {
  opacity: 0.7;
}

.media-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.media-wrapper img,
.media-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========================== SLIDE ============================= */

.stack-2 {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.slide-slogan {
  font-family: 'sf';
  font-weight: bolder;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.1;
  margin-bottom: 0;
  font-size: 25px;
  color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide.is-visible .slide-slogan {
  opacity: 1;
  transform: translateY(0);
}

.slide-subtitle {
  margin-top: 10px;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.lux-btn {
  margin-top: 36px;
  padding: 15px 35px;
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.25);
  pointer-events: auto;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.lux-btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.lux-btn1 {
  margin-top: 36px;
  padding: 15px 35px;
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.25);
  pointer-events: auto;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.lux-btn1:hover {
   background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.banner-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.banner-slider .slides {
  display: flex;
  height: 100%;
  transition: transform 1.1s cubic-bezier(0.77, 0, 0.175, 1);
}

.banner-slider .slide {
  position: relative;
  min-width: 100%;
  height: 100%;
}

.banner-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-slider .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: #ffffff;
  font-size: 2.2rem;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.banner-slider .nav:hover {
  background: rgba(0, 0, 0, 0.55);
}

.banner-slider .prev {
  left: 18px;
}

.banner-slider .next {
  right: 18px;
}

/* =========== EDITORIAL ICON ==============*/

.editorial-stack {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.editorial-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.editorial-strip {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: clamp(40px, 5vw, 80px);
  z-index: 2;
}

.editorial-strip img {
  width: clamp(220px, 22vw, 320px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  background: none;
  padding: 0;
  box-shadow: none;
}

.editorial-text {
  position: absolute;
  top: 0;
  margin-top: calc(30% + 100px);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.editorial-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem); 
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.editorial-text a {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 10px 28px;
}

.home-redirect {
  width: 100%;
  padding: 70px 0;
  background: #f7f7f7;
  text-align: center;
}

.home-redirect-link {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  color: #111;
  padding: 18px 60px;
  border: 2px solid rgba(0,0,0,0.25);
  transition: background 0.35s ease, color 0.35s ease;
}

.home-redirect-link:hover {
  background: #111;
  color: #fff;
}

  /*================ POP UP ============= */

.sp-toast {
  position: fixed;
  right: 24px;
  bottom: 28px;
  max-width: 420px;

  background: rgba(0, 0, 0, 0.88);
  color: #ffffff;

  padding: 18px 48px 18px 22px;
  border-radius: 14px;

  font-size: 14.5px;
  line-height: 1.7;
  letter-spacing: 0.5px;
  font-family: inherit;

  z-index: 99999;
  cursor: pointer;

  box-shadow: 0 14px 40px rgba(0,0,0,0.45);

  transition: opacity 0.35s ease, transform 0.35s ease;
}

.sp-hidden {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.sp-show {
  opacity: 1;
  transform: translateY(0);
}

.sp-close {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  user-select: none;
}

.sp-close:hover {
  color: #ffffff;
}

/* =================== PHONE ========================= */

@media 
  (hover: none) and (pointer: coarse),
  (max-width: 768px) {


  /*================ VIDEO ============= */

.hero {
  position: relative;
  width: 100%;
  height: 95vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: black;
  margin-top: -100px;
  pointer-events: none;
}

.hero-title {
  font-family: 'horizon';
  font-size: 15px;
}

.hero-subtitle {
  font-family: 'horizonoutlined';
  font-size: 15px;
  color: black;
  margin-top: 60px;
}

.hero-cta {
  margin-top: 70px;
  font-size: 8px;
  letter-spacing: 5px;
  text-decoration: none;
  color: black;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

.hero-cta:hover {
  opacity: 0.7;
}

.media-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.media-wrapper img,
.media-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========================== SLIDE ============================= */

  .slide-content {
    justify-content: center;
    gap: 220px;                 
    padding: 0 70px;           
  }

  .slide-slogan {
    font-size: 35px;
    letter-spacing: 3px;
    text-align: left;
    transform: translateY(0); 
  }

  .lux-btn {
    margin-top: 0;            
    padding: 15px 25px;
    font-size: 0.5rem;
    letter-spacing: 4px;
  }

.lux-btn1 {
  margin-top: 36px;
  padding: 11px 31px;
  font-size: 0.5rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: #000;
  border: 1px solid #000;
}


  .banner-slider .nav {
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    padding: 8px 12px;
  }

  .banner-slider .prev {
    left: 10px;
  }

  .banner-slider .next {
    right: 10px;
  }

/* =========== EDITORIAL ICON ==============*/

  .editorial-strip img:nth-child(1),
  .editorial-strip img:nth-child(6) {
    display: none;
  }

  .editorial-stack {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .editorial-strip {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;

    padding: 0 18px;
    margin-bottom: 28px;
  }

  .editorial-strip img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
  }

  .editorial-text {
    position: relative;
    margin: 0;
    left: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .editorial-text h2 {
    font-size: 0.95rem;
    letter-spacing: 3px;
    margin-bottom: 0;
  }

 .editorial-text a {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.55rem;
  letter-spacing: 3px;
  padding: 10px 22px;
}

  .home-redirect {
    padding: 48px 0;
  }

  .home-redirect-link {
    font-size: 0.6rem;
    letter-spacing: 3px;
    padding: 14px 36px;
    border-width: 1px;
  }

  .home-redirect-link:hover {
    background: #111;
    color: #fff;
  }

    .sp-toast {
    left: 80px;
    right: 17px;
    bottom: 18px;
    max-width: 300px;
    text-align: left;
    font-size: 8px;
  }

}


















