:root{
  --ink:#fff;
  --ink-dim:#cfc7ba;
  --overlay-dark: rgba(10,8,6,0.42);
  --overlay-grad: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.25) 70%, rgba(0,0,0,0.6) 100%);
  --ease: cubic-bezier(.16,.84,.44,1);
}

/* ===== WordPress theme conflicts fix (double scroll / squished video) ===== */
html, body{
  margin:0 !important;
  padding:0 !important;
  height:auto !important;
  overflow-x:hidden !important;
  overflow-y:visible !important;
  background: #000;
}

#page, #content, #main, main,
.site, .site-content, .site-main,
.hfeed, .container, .content-area{
  height:auto !important;
  min-height:0 !important;
  overflow:visible !important;
}

html{
  scroll-behavior: smooth;
}

/* ================= SLIDER ================= */
.lm-slider{
  position:relative;
  cursor:none;
  z-index: 99;
}

.lm-slide{
  position:relative;
  height:100vh;
  width:100%;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  box-sizing:border-box;
}
.lm-slider  .lm-slide .img,
.lm-slider video.lm-slide__video{
  position:absolute;
  top:-8%;
  left:0;
  max-width:none !important;
  width:100% !important;
  height:116% !important;
  object-fit:cover !important;
  filter:saturate(1.05);
  will-change:transform, opacity;
}
.lm-slide .img {
    width: 100%;
    height: 100%;
}
img.lm-slide__video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}
.lm-slide__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.3);
/*  background:var(--overlay-grad), var(--overlay-dark);*/
  will-change:opacity;
}

/* ---- Content ---- */
.lm-slide__content{
  position:relative;
  z-index:2;
  text-align:center;
  color:var(--ink);
  padding:0 24px;
  max-width:900px;
  will-change:transform;
}

.lm-eyebrow,
.lm-title,
.lm-subtitle,
.lm-cta{
  opacity:0;
  transform:translateY(34px);
  transition:opacity 1.5s var(--ease), transform 1.5s var(--ease), letter-spacing 1.5s var(--ease);
}

.lm-eyebrow {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 12px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
    transition-delay: .05s;
}

.lm-title{
  font-weight:100;
  font-size:58px;
  letter-spacing:.14em;
  text-transform:uppercase;
  line-height:1.05;
  margin-bottom:14px;
  transition-delay:.18s;
}

.lm-subtitle{
  font-weight: bold;
  font-size: clamp(16px, 2vw, 24px);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 40px;
  transition-delay: .3s;
  line-height: 1.4em;
}

.lm-cta{
  display:inline-block;
  background:var(--ink);
  color:#141210;
  text-decoration:none;
  font-size:12px;
  font-weight:600;
  letter-spacing:3px;
  text-transform:uppercase;
  padding:17px 60px;
  border-radius:999px;
  transition-delay:.5s, .5s, 0s;
  transition-property:opacity, transform, background;
  transition-duration:1.5s, 1.5s, .3s;
}
.lm-cta:hover{ background:#fff; }

.lm-slide.is-active .lm-eyebrow,
.lm-slide.is-active .lm-title,
.lm-slide.is-active .lm-subtitle,
.lm-slide.is-active .lm-cta{
  opacity:1;
  transform:translateY(0);
}

/* ---- Dot navigation ---- */
.lm-dots{
  position:fixed;
  left:34px;
  top:50%;
  transform:translateY(-50%);
  z-index:20;
  display:flex;
  flex-direction:column;
  gap:22px;
  opacity:0;
  transition:opacity .5s ease;
  pointer-events:none;
}
.lm-dots.is-visible{ opacity:1; pointer-events:auto; z-index: 123; }

.lm-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:rgba(245,240,232,.4);
  border:1px solid transparent;
  cursor:pointer;
  padding:0;
  transition:all .35s var(--ease);
}
.lm-dot.is-active{
  background:transparent;
  border-color:var(--ink);
  width:13px;
  height:13px;
  box-shadow:0 0 0 3px rgba(245,240,232,.15) inset;
}

/* ---- Custom circle cursor ---- */
.lm-cursor{
  position:fixed;
  top:0;
  left:0;
  width:15px;
  height:15px;
  border-radius:50%;
  border:1px solid rgba(245,240,232,.9);
  pointer-events:none;
  z-index:9999;
  opacity:0;
  transform:translate(-50%,-50%) scale(.4);
  transition:opacity .45s var(--ease), border-color .35s ease, background-color .35s ease;
  mix-blend-mode:difference;
}
.lm-cursor.is-visible{ opacity:1; }
.lm-cursor.is-hover{
  background-color:rgba(245,240,232,.15);
}

@media (max-width:640px){
  .lm-dots{ left:16px; gap:16px; }
  .lm-title{ letter-spacing:.08em; }
  .lm-subtitle{ letter-spacing:.2em; }
}

@media (hover:none), (pointer:coarse){
  .lm-slider{ cursor:auto; }
  .lm-cursor{ display:none; }
}


/* ================= EXPLORE FURTHER ================= */
section.lm-next-section {
  padding: 80px 0px 80px;
  background: #000;
  z-index: 99;
}
.explore-further__head{
  text-align:center;
  margin-bottom:55px;
}

.explore-further__eyebrow {
    font-weight: 500;
    font-size: 26px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 14px;
}

.explore-further__title {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.explore-slider{
  max-width:1560px;
  margin:0 auto;
}

.explore-slide{
  padding:0 12px;
}

.explore-slide__img{
  height:400px;
  overflow:hidden;
}

.explore-slide__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .6s var(--ease);
}
.explore-slide:hover .explore-slide__img img{
  transform:scale(1.05);
}

.explore-slide__body{
  border-left:1px solid rgba(245,240,232,.25);
  padding:26px 24px 10px;
  min-height:130px;
  background: #000;
}

.explore-slide__body h3{
  font-weight:500;
  font-size:15px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--ink);
  margin-bottom:12px;
  line-height:1.4;
}

.explore-slide__body p {
    font-size: 15px;
    line-height: 1.55;
    color: #fff;
    font-weight: 100;
}

/* ---- Slick arrows override (dark theme) ---- */
.explore-slider .slick-prev,
.explore-slider .slick-next{
  width:44px;
  height:44px;
  z-index:5;
}
.explore-slider .slick-prev{ left:-10px; }
.explore-slider .slick-next{ right:-10px; }

.explore-slider .slick-prev:before,
.explore-slider .slick-next:before{
  font-size:28px;
  color:var(--ink);
  opacity:.85;
}
.explore-slider .slick-prev:hover:before,
.explore-slider .slick-next:hover:before{
  opacity:1;
}

.explore-slider .slick-dots{
  bottom:-40px;
}
.explore-slider .slick-dots li button:before{
  color:var(--ink-dim);
  opacity:.5;
}
.explore-slider .slick-dots li.slick-active button:before{
  color:var(--ink);
  opacity:1;
}
.explore-slide a {
  text-decoration: none;
}
@media (max-width:768px){
  .explore-slide__img{ height:280px; }
}

div.lm-slide[data-index="1"] {
  justify-content: start;
}
div.lm-slide[data-index="1"] .lm-slide__content {
  margin-left: 8%;
}
div.lm-slide[data-index="2"] {
  justify-content: end;
}
div.lm-slide[data-index="2"] .lm-slide__content {
  margin-right: 5%;
}
.lm-slider .lm-slide .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.scroll-indicator {
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: migAboutFadeIn 1s ease 1s forwards;
    position: relative;
    top: 80px;
}
@keyframes migAboutFadeIn {
    to { opacity: 1; }
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.8);
  animation: migAboutScrollDrop 1.8s ease-in-out infinite;
}
@keyframes migAboutScrollDrop {
    0%   { top: -100%; }
    50%  { top: 100%; }
    100% { top: 100%; }
}
.lm-slider .lm-slide[data-index="2"] .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center;
}



@media only screen and (min-width :1920px) {
	
}
@media only screen and (max-width :1800px) {
    
}
@media only screen and (max-width :1690px) {
	
}
@media only screen and (max-width :1450px) {
	
}
@media only screen and (max-width :1380px) {
   
}
@media only screen and (max-width :1290px) {
   	
}
@media only screen and (max-width :1120px) {
    
}
@media only screen and (max-width :1023px) {
   
}
@media only screen and (max-width :979px) {
  
}
@media only screen and (max-width :840px) {
	
}
@media only screen and (max-width :767px) {
	
}
@media only screen and (max-width :599px) {
    
}
@media only screen and (max-width :479px) {

}
@media only screen and (max-width :420px) {
	
}
@media only screen and (max-width :390px) {

}