:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-00996d1 *//* ==================================================
   NOVA ABOUT HERO — LUXO INSPIRED
================================================== */
.nova-luxo-hero{
  position:relative;
  width:100vw;
  min-height:clamp(700px, 88vh, 920px);
  margin-left:calc(50% - 50vw);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:var(--nova-primary);
  isolation:isolate;

  border-bottom-left-radius:120px;
  border-bottom-right-radius:120px;
}

/* ==================================================
   BACKGROUND IMAGE
================================================== */

.nova-luxo-image{
  position:absolute;
  z-index:-3;
  inset:0;
}

.nova-luxo-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 40%;
  transform:scale(1.025);
  animation:novaLuxoImage 1.6s
    cubic-bezier(.22,.61,.36,1) both;
}

.nova-luxo-overlay{
  position:absolute;
  z-index:-2;
  inset:0;
  background:
    linear-gradient(
      180deg,
      rgba(13,18,35,.42) 0%,
      rgba(13,18,35,.24) 38%,
      rgba(13,18,35,.58) 100%
    );
}

.nova-luxo-overlay::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(
      circle at center,
      transparent 10%,
      rgba(13,18,35,.18) 100%
    );
}


/* ==================================================
   TOP DETAILS
================================================== */

.nova-luxo-top{
  position:absolute;
  top:clamp(105px, 12vw, 185px);
  left:var(--nova-page-padding);
  right:var(--nova-page-padding);
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:rgba(255,255,255,.72);
  font-family:var(--nova-font-body);
  font-size:9px;
  font-weight:500;
  line-height:1;
  letter-spacing:.22em;
  text-transform:uppercase;
}

.nova-luxo-top span:last-child{
  display:flex;
  align-items:center;
  gap:12px;
}

.nova-luxo-top span:last-child::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--nova-accent-light);
}


/* ==================================================
   HERO CONTENT
================================================== */

.nova-luxo-content{
  width:min(1050px, calc(100% - 48px));
  margin:auto;
  padding:170px 20px 145px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  color:var(--nova-text-light);
  animation:novaLuxoContent 1s .15s ease both;
}

.nova-luxo-label{
  margin-bottom:27px;
  color:rgba(255,255,255,.74);
  font-family:var(--nova-font-body);
  font-size:9px;
  font-weight:600;
  letter-spacing:.27em;
  line-height:1;
  text-transform:uppercase;
}

.nova-luxo-content h1{
  max-width:1050px;
  margin:0;
  color:var(--nova-text-light);
  font-family:var(--nova-font-heading);
  font-size:clamp(62px, 8vw, 90px);
  font-weight:400;
  line-height:.82;
  letter-spacing:-.045em;
  text-wrap:balance;
}

.nova-luxo-content h1 em{
  display:block;
  margin-top:17px;
  color:var(--nova-accent-light);
  font-weight:400;
  line-height:.9;
}

.nova-luxo-content > p{
  max-width:630px;
  margin:38px auto 0;
  color:rgba(255,255,255,.77);
  font-family:var(--nova-font-body);
  font-size:14px;
  font-weight:400;
  line-height:1.85;
}


/* ==================================================
   BUTTON
================================================== */

.nova-luxo-button{
  min-height:52px;
  margin-top:38px;
  padding:0 9px 0 25px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  border:1px solid rgba(255,255,255,.55);
  border-radius:var(--nova-radius-round);
  background:rgba(255,255,255,.08);
  color:var(--nova-text-light) !important;
  font-family:var(--nova-font-body);
  font-size:9px;
  font-weight:600;
  letter-spacing:.16em;
  text-decoration:none !important;
  text-transform:uppercase;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  transition:
    background var(--nova-transition),
    color var(--nova-transition),
    border-color var(--nova-transition),
    transform var(--nova-transition);
}

.nova-luxo-button svg{
  width:36px;
  height:36px;
  padding:10px;
  border-radius:50%;
  background:var(--nova-background);
  fill:none;
  stroke:var(--nova-primary);
  stroke-width:1.4;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:
    background var(--nova-transition),
    stroke var(--nova-transition),
    transform var(--nova-transition);
}

.nova-luxo-button:hover{
  border-color:var(--nova-background);
  background:var(--nova-background);
  color:var(--nova-primary) !important;
  transform:translateY(-3px);
}

.nova-luxo-button:hover svg{
  background:var(--nova-accent);
  stroke:var(--nova-text-light);
  transform:rotate(-35deg);
}


/* ==================================================
   VERTICAL SIDE TEXT
================================================== */

.nova-luxo-side-text{
  position:absolute;
  top:50%;
  right:clamp(22px, 3vw, 52px);
  display:flex;
  align-items:center;
  gap:15px;
  color:rgba(255,255,255,.55);
  font-family:var(--nova-font-body);
  font-size:7px;
  font-weight:600;
  letter-spacing:.2em;
  text-transform:uppercase;
  transform:translateY(-50%) rotate(90deg);
  transform-origin:center;
  white-space:nowrap;
}

.nova-luxo-side-text i{
  width:4px;
  height:4px;
  border-radius:50%;
  background:var(--nova-accent-light);
}


/* ==================================================
   SCROLL INDICATOR
================================================== */

.nova-luxo-scroll{
  position:absolute;
  bottom:80px;
  left:clamp(22px, 3vw, 52px);
  display:flex;
  align-items:center;
  gap:14px;
  color:rgba(255,255,255,.67) !important;
  font-family:var(--nova-font-body);
  font-size:7px;
  font-weight:600;
  letter-spacing:.2em;
  text-decoration:none !important;
  text-transform:uppercase;
}

.nova-luxo-scroll-line{
  position:relative;
  width:52px;
  height:1px;
  overflow:hidden;
  background:rgba(255,255,255,.28);
}

.nova-luxo-scroll-line i{
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:1px;
  background:var(--nova-accent-light);
  animation:novaLuxoScroll 2s ease-in-out infinite;
}


/* ==================================================
   INTRO BELOW HERO
================================================== */

.nova-luxo-intro{
  width:100vw;
  margin-left:calc(50% - 50vw);
  padding:clamp(80px, 9vw, 145px) 0;
  background:var(--nova-background);
}

.nova-luxo-intro-inner{
  display:grid;
  grid-template-columns:80px minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items:start;
  gap:clamp(35px, 6vw, 100px);
}

.nova-luxo-intro-number{
  padding-top:8px;
  color:var(--nova-accent);
  font-family:var(--nova-font-body);
  font-size:9px;
  font-weight:600;
  letter-spacing:.14em;
}

.nova-luxo-intro-title > span{
  display:block;
  margin-bottom:20px;
  color:var(--nova-accent);
  font-family:var(--nova-font-body);
  font-size:9px;
  font-weight:600;
  letter-spacing:.22em;
}

.nova-luxo-intro-title h2{
  max-width:760px;
  margin:0;
  color:var(--nova-primary);
  font-family:var(--nova-font-heading);
  font-size:clamp(48px, 5vw, 82px);
  font-weight:400;
  line-height:.96;
  letter-spacing:-.035em;
}

.nova-luxo-intro-title h2 em{
  display:block;
  color:var(--nova-accent);
  font-weight:400;
}

.nova-luxo-intro-text{
  padding-top:34px;
}

.nova-luxo-intro-text p{
  margin:0;
  color:var(--nova-text-soft);
  font-family:var(--nova-font-body);
  font-size:14px;
  line-height:1.85;
}

.nova-luxo-intro-text a{
  position:relative;
  margin-top:29px;
  padding-bottom:7px;
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:var(--nova-primary) !important;
  font-family:var(--nova-font-body);
  font-size:9px;
  font-weight:600;
  letter-spacing:.17em;
  text-decoration:none !important;
  text-transform:uppercase;
}

.nova-luxo-intro-text a::after{
  content:"";
  position:absolute;
  right:0;
  bottom:0;
  left:0;
  height:1px;
  background:var(--nova-primary);
  transform-origin:left;
  transition:transform var(--nova-transition);
}

.nova-luxo-intro-text a:hover::after{
  transform:scaleX(.35);
}

.nova-luxo-intro-text a span{
  color:var(--nova-accent);
  font-size:15px;
  transition:transform var(--nova-transition);
}

.nova-luxo-intro-text a:hover span{
  transform:translate(3px,-3px);
}


/* ==================================================
   ANIMATIONS
================================================== */

@keyframes novaLuxoImage{
  from{
    opacity:0;
    transform:scale(1.1);
  }

  to{
    opacity:1;
    transform:scale(1.025);
  }
}

@keyframes novaLuxoContent{
  from{
    opacity:0;
    transform:translateY(35px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes novaLuxoScroll{
  0%{
    left:-100%;
  }

  50%{
    left:0;
  }

  100%{
    left:100%;
  }
}


/* ==================================================
   TABLET
================================================== */

@media(max-width:1024px){

  .nova-luxo-hero{
    -webkit-clip-path:ellipse(105% 100% at 50% 0%);
    clip-path:ellipse(105% 100% at 50% 0%);
  }

  .nova-luxo-content h1{
    font-size:clamp(65px, 10vw, 105px);
  }

  .nova-luxo-side-text{
    display:none;
  }

  .nova-luxo-intro-inner{
    grid-template-columns:50px minmax(0, 1.2fr) minmax(250px, .8fr);
    gap:40px;
  }

}


/* ==================================================
   MOBILE
================================================== */

@media(max-width:767px){

  .nova-luxo-hero{
    min-height:720px;
    -webkit-clip-path:ellipse(145% 100% at 50% 0%);
    clip-path:ellipse(145% 100% at 50% 0%);
  }

  .nova-luxo-image img{
    object-position:center;
  }

  .nova-luxo-top{
    top:95px;
    left:20px;
    right:20px;
    font-size:7px;
    letter-spacing:.16em;
  }

  .nova-luxo-top span:last-child{
    display:none;
  }

  .nova-luxo-content{
    width:100%;
    padding:150px 22px 135px;
  }

  .nova-luxo-label{
    margin-bottom:20px;
    font-size:7px;
    letter-spacing:.22em;
  }

  .nova-luxo-content h1{
    max-width:500px;
    font-size:clamp(55px, 17vw, 78px);
    line-height:.87;
  }

  .nova-luxo-content h1 em{
    margin-top:13px;
  }

  .nova-luxo-content > p{
    max-width:430px;
    margin-top:28px;
    font-size:13px;
    line-height:1.7;
  }

  .nova-luxo-button{
    margin-top:30px;
  }

  .nova-luxo-scroll{
    bottom:64px;
    left:22px;
  }

  .nova-luxo-scroll span{
    display:none;
  }

  .nova-luxo-scroll-line{
    width:42px;
  }

  .nova-luxo-intro{
    padding:75px 0;
  }

  .nova-luxo-intro-inner{
    display:flex;
    flex-direction:column;
    gap:27px;
  }

  .nova-luxo-intro-number{
    padding:0;
  }

  .nova-luxo-intro-title > span{
    margin-bottom:17px;
    font-size:8px;
  }

  .nova-luxo-intro-title h2{
    font-size:clamp(45px, 13vw, 64px);
  }

  .nova-luxo-intro-text{
    padding-top:5px;
  }

}


/* ==================================================
   FALLBACK
================================================== */

@supports not (clip-path:ellipse(100% 100% at 50% 0%)){

  .nova-luxo-hero{
    border-radius:0 0 50px 50px;
  }

}


/* ==================================================
   REDUCED MOTION
================================================== */

@media(prefers-reduced-motion:reduce){

  .nova-luxo-image img,
  .nova-luxo-content,
  .nova-luxo-scroll-line i{
    animation:none;
  }

}

/* =========================================
   NOVA ABOUT HERO — READABILITY FIX
========================================= */

/* Top labels */
.nova-luxo-top{
  font-size:13px;
  font-weight:600;
  letter-spacing:.16em;
}

/* Small label above main title */
.nova-luxo-label{
  font-size:11px;
  font-weight:600;
  letter-spacing:.2em;
}

/* Hero description */
.nova-luxo-content > p{
  max-width:700px;
  font-size:16px;
  line-height:1.75;
}

/* Hero button */
.nova-luxo-button{
  min-height:56px;
  padding-left:28px;
  font-size:11px;
  letter-spacing:.12em;
}

/* Right vertical words */
.nova-luxo-side-text{
  font-size:9px;
  letter-spacing:.16em;
}

/* Scroll text */
.nova-luxo-scroll{
  font-size:9px;
  letter-spacing:.15em;
}


/* =========================================
   INTRO SECTION
========================================= */

/* Number 01 */
.nova-luxo-intro-number{
  font-size:11px;
}

/* THE NOVA EXPERIENCE */
.nova-luxo-intro-title > span{
  font-size:11px;
  letter-spacing:.17em;
}

/* Right paragraph */
.nova-luxo-intro-text p{
  font-size:16px;
  line-height:1.75;
}

/* Meet the Nova Team link */
.nova-luxo-intro-text a{
  font-size:11px;
  letter-spacing:.12em;
}


/* =========================================
   TABLET
========================================= */

@media(max-width:1024px){

  .nova-luxo-content > p,
  .nova-luxo-intro-text p{
    font-size:15px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:767px){

  .nova-luxo-top{
    font-size:9px;
  }

  .nova-luxo-label{
    font-size:9px;
  }

  .nova-luxo-content > p{
    font-size:14px;
    line-height:1.7;
  }

  .nova-luxo-button{
    min-height:52px;
    font-size:9px;
  }

  .nova-luxo-intro-number,
  .nova-luxo-intro-title > span{
    font-size:9px;
  }

  .nova-luxo-intro-text p{
    font-size:14px;
  }

  .nova-luxo-intro-text a{
    font-size:9px;
  }

}
/* =========================================
   NOVA HERO — DARKEN ENTIRE IMAGE
========================================= */

.nova-luxo-overlay{
  background:rgba(12, 16, 31, .58) !important;
}

.nova-luxo-overlay::after{
  background:
    linear-gradient(
      180deg,
      rgba(12,16,31,.12) 0%,
      rgba(12,16,31,.05) 45%,
      rgba(12,16,31,.20) 100%
    ) !important;
}

/* Remove the extra dark area behind text */
.nova-luxo-content::before{
  display:none !important;
}

/* Remove strong text shadows from previous CSS */
.nova-luxo-content h1,
.nova-luxo-content h1 em,
.nova-luxo-content > p,
.nova-luxo-label,
.nova-luxo-top,
.nova-luxo-side-text{
  text-shadow:none !important;
}

/* ==================================================
   NOVA — STORY SECTION
================================================== */

.nova-story-section{
  position:relative;
  width:100vw;
  margin-left:calc(50% - 50vw);
  padding:clamp(95px, 10vw, 170px) 0;
  overflow:hidden;
  background:var(--nova-background);
}

.nova-story-section::before{
  content:"NOVA";
  position:absolute;
  top:70px;
  right:-30px;
  color:transparent;
  font-family:var(--nova-font-heading);
  font-size:clamp(140px, 20vw, 360px);
  font-weight:400;
  line-height:.7;
  letter-spacing:-.07em;
  white-space:nowrap;
  pointer-events:none;
  opacity:.5;
  -webkit-text-stroke:1px rgba(21,28,50,.055);
}


/* ==================================================
   LAYOUT
================================================== */

.nova-story-layout{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(360px, .85fr) minmax(480px, 1.15fr);
  align-items:start;
  gap:clamp(70px, 10vw, 165px);
}


/* ==================================================
   LEFT SIDE
================================================== */

.nova-story-heading{
  position:sticky;
  top:130px;
}

.nova-story-index{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:58px;
  color:var(--nova-accent);
  font-family:var(--nova-font-body);
  font-size:10px;
  font-weight:600;
  line-height:1;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.nova-story-index i{
  width:42px;
  height:1px;
  background:var(--nova-accent);
}

.nova-story-title-wrap{
  max-width:610px;
}

.nova-story-eyebrow{
  display:block;
  margin-bottom:24px;
  color:var(--nova-accent);
  font-family:var(--nova-font-body);
  font-size:11px;
  font-weight:600;
  line-height:1;
  letter-spacing:.2em;
}

.nova-story-title-wrap h2{
  margin:0;
  color:var(--nova-primary);
  font-family:var(--nova-font-heading);
  font-size:clamp(66px, 7vw, 112px);
  font-weight:400;
  line-height:.82;
  letter-spacing:-.045em;
}

.nova-story-title-wrap h2 em{
  display:block;
  margin-top:16px;
  color:var(--nova-accent);
  font-weight:400;
  line-height:.9;
}

.nova-story-definition{
  max-width:430px;
  margin-top:70px;
  padding-top:25px;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:24px;
  border-top:1px solid var(--nova-border);
}

.nova-story-definition > span{
  color:var(--nova-primary);
  font-family:var(--nova-font-body);
  font-size:10px;
  font-weight:700;
  line-height:1.5;
  letter-spacing:.17em;
}

.nova-story-definition p{
  margin:0;
  color:var(--nova-text-muted);
  font-family:var(--nova-font-body);
  font-size:12px;
  line-height:1.7;
}


/* ==================================================
   RIGHT CONTENT
================================================== */

.nova-story-content{
  max-width:760px;
  padding-top:85px;
}

.nova-story-lead{
  max-width:680px;
  margin:0 0 48px;
  color:var(--nova-primary);
  font-family:var(--nova-font-heading);
  font-size:clamp(32px, 3.1vw, 48px);
  font-weight:400;
  line-height:1.16;
  letter-spacing:-.025em;
}

.nova-story-copy{
  display:grid;
  gap:27px;
}

.nova-story-copy p{
  margin:0;
  color:var(--nova-text-soft);
  font-family:var(--nova-font-body);
  font-size:16px;
  font-weight:400;
  line-height:1.9;
}


/* ==================================================
   COMMITMENT BLOCK
================================================== */

.nova-story-commitment{
  position:relative;
  margin-top:58px;
  padding:40px 45px 42px;
  border-left:3px solid var(--nova-accent);
  background:var(--nova-background-soft);
}

.nova-story-commitment::after{
  content:"✦";
  position:absolute;
  top:22px;
  right:26px;
  color:var(--nova-accent);
  font-size:19px;
  line-height:1;
}

.nova-story-commitment > span{
  display:block;
  margin-bottom:18px;
  color:var(--nova-accent);
  font-family:var(--nova-font-body);
  font-size:10px;
  font-weight:700;
  line-height:1;
  letter-spacing:.2em;
}

.nova-story-commitment p{
  max-width:620px;
  margin:0;
  color:var(--nova-primary);
  font-family:var(--nova-font-heading);
  font-size:clamp(27px, 2.6vw, 39px);
  font-weight:400;
  line-height:1.2;
  letter-spacing:-.02em;
}


/* ==================================================
   LINK
================================================== */

.nova-story-link{
  margin-top:43px;
  display:inline-flex;
  align-items:center;
  gap:18px;
  color:var(--nova-primary) !important;
  font-family:var(--nova-font-body);
  font-size:11px;
  font-weight:700;
  line-height:1;
  letter-spacing:.15em;
  text-decoration:none !important;
  text-transform:uppercase;
}

.nova-story-link > span{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--nova-primary);
  border-radius:50%;
  transition:
    background var(--nova-transition),
    border-color var(--nova-transition),
    transform var(--nova-transition);
}

.nova-story-link svg{
  width:17px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.5;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:transform var(--nova-transition);
}

.nova-story-link:hover > span{
  border-color:var(--nova-accent);
  background:var(--nova-accent);
  color:var(--nova-text-light);
  transform:rotate(-35deg);
}

.nova-story-link:hover svg{
  transform:translateX(2px);
}


/* ==================================================
   TABLET
================================================== */

@media(max-width:1024px){

  .nova-story-layout{
    grid-template-columns:minmax(300px, .8fr) minmax(400px, 1.2fr);
    gap:60px;
  }

  .nova-story-title-wrap h2{
    font-size:clamp(62px, 7vw, 88px);
  }

  .nova-story-content{
    padding-top:70px;
  }

}


/* ==================================================
   MOBILE
================================================== */

@media(max-width:767px){

  .nova-story-section{
    padding:80px 0;
  }

  .nova-story-section::before{
    top:100px;
    right:-20px;
    font-size:48vw;
  }

  .nova-story-layout{
    display:flex;
    flex-direction:column;
    gap:52px;
  }

  .nova-story-heading{
    position:relative;
    top:auto;
    width:100%;
  }

  .nova-story-index{
    margin-bottom:37px;
    font-size:9px;
  }

  .nova-story-eyebrow{
    margin-bottom:18px;
    font-size:9px;
  }

  .nova-story-title-wrap h2{
    max-width:500px;
    font-size:clamp(58px, 18vw, 80px);
    line-height:.86;
  }

  .nova-story-title-wrap h2 em{
    margin-top:12px;
  }

  .nova-story-definition{
    margin-top:45px;
    padding-top:21px;
    gap:18px;
  }

  .nova-story-content{
    padding-top:0;
  }

  .nova-story-lead{
    margin-bottom:35px;
    font-size:clamp(29px, 9vw, 40px);
  }

  .nova-story-copy{
    gap:23px;
  }

  .nova-story-copy p{
    font-size:14px;
    line-height:1.8;
  }

  .nova-story-commitment{
    margin-top:43px;
    padding:32px 25px 34px;
  }

  .nova-story-commitment::after{
    top:18px;
    right:18px;
    font-size:15px;
  }

  .nova-story-commitment p{
    font-size:clamp(26px, 8vw, 35px);
  }

  .nova-story-link{
    margin-top:35px;
    font-size:9px;
  }

}

/* NOVA STORY — REDUCE TOP SPACE */

.nova-story-section{
  padding-top:55px !important;
  padding-bottom:clamp(95px, 10vw, 100px);
}

.nova-story-content{
  padding-top:35px !important;
}

.nova-story-index{
  margin-bottom:38px !important;
}

@media(max-width:767px){

  .nova-story-section{
    padding-top:35px !important;
    padding-bottom:75px;
  }

  .nova-story-content{
    padding-top:0 !important;
  }

}

@media(max-width:767px){

  .nova-luxo-hero{
    -webkit-clip-path:none !important;
    clip-path:none !important;

    border-bottom-left-radius:50px !important;
    border-bottom-right-radius:50px !important;
  }

}

/* =========================================
   NOVA HERO — TABLET & MOBILE
   ONLY BOTTOM CORNERS ROUNDED
========================================= */

@media(max-width:1024px){

  .nova-luxo-hero{
    -webkit-clip-path:none !important;
    clip-path:none !important;

    border-radius:0 !important;
    border-bottom-left-radius:70px !important;
    border-bottom-right-radius:70px !important;

    overflow:hidden !important;
  }

}


/* MOBILE */

@media(max-width:767px){

  .nova-luxo-hero{
    border-bottom-left-radius:45px !important;
    border-bottom-right-radius:45px !important;
  }

}

/* =========================================
   NOVA HERO — LAPTOP TOP SPACING FIX
========================================= */

@media(min-width:1025px) and (max-width:1440px){

  .nova-luxo-content{
    padding-top:220px !important;
    padding-bottom:135px !important;
  }

  .nova-luxo-top{
    top:125px !important;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-62a683b *//* ==================================================
   NOVA — LUXO HERO
================================================== */

.nova-luxo-hero,
.nova-luxo-hero *{
  box-sizing:border-box;
}

.nova-luxo-hero{
  position:relative;
  isolation:isolate;

  width:100vw;
  min-height:clamp(700px, 88vh, 920px);
  margin-left:calc(50% - 50vw);
  overflow:hidden;

  display:flex;
  align-items:center;
  justify-content:center;

  background:var(--nova-primary);

  border-bottom-left-radius:120px;
  border-bottom-right-radius:120px;
}


/* ==================================================
   HERO IMAGE
================================================== */

.nova-luxo-image{
  position:absolute;
  inset:0;
  z-index:-3;
}

.nova-luxo-image img{
  display:block;
  width:100%;
  height:100%;

  object-fit:cover;
  object-position:center 40%;

  transform:scale(1.025);
  animation:novaLuxoImage 1.6s cubic-bezier(.22,.61,.36,1) both;
}


/* ==================================================
   HERO OVERLAY
================================================== */

.nova-luxo-overlay{
  position:absolute;
  inset:0;
  z-index:-2;

  background:rgba(12,16,31,.58);
  pointer-events:none;
}

.nova-luxo-overlay::after{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    180deg,
    rgba(12,16,31,.12) 0%,
    rgba(12,16,31,.05) 45%,
    rgba(12,16,31,.20) 100%
  );
}


/* ==================================================
   HERO CONTENT
================================================== */

.nova-luxo-content{
  width:min(1050px, calc(100% - 48px));
  margin:auto;
  padding:170px 20px 145px;

  display:flex;
  flex-direction:column;
  align-items:center;

  color:var(--nova-text-light);
  text-align:center;

  animation:novaLuxoContent 1s .15s ease both;
}

.nova-luxo-label{
  margin:0 0 27px;

  color:rgba(255,255,255,.74);

  font-family:var(--nova-font-body);
  font-size:11px;
  font-weight:600;
  line-height:1.4;
  letter-spacing:.2em;
  text-transform:uppercase;
}

.nova-luxo-content h1{
  max-width:1050px;
  margin:0;

  color:var(--nova-text-light);

  font-family:var(--nova-font-heading);
  font-size:clamp(62px, 8vw, 122px);
  font-weight:400;
  line-height:.82;
  letter-spacing:-.045em;
  text-wrap:balance;
}

.nova-luxo-content h1 em{
  display:block;
  margin-top:17px;

  color:var(--nova-accent-light);

  font-weight:400;
  line-height:.9;
}

.nova-luxo-content > p{
  max-width:700px;
  margin:38px auto 0;

  color:rgba(255,255,255,.77);

  font-family:var(--nova-font-body);
  font-size:16px;
  font-weight:400;
  line-height:1.75;
}


/* ==================================================
   HERO BUTTON
================================================== */

.nova-luxo-button,
.nova-luxo-button:link,
.nova-luxo-button:visited{
  min-height:56px;
  margin-top:38px;
  padding:0 9px 0 28px;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:20px;

  border:1px solid rgba(255,255,255,.55);
  border-radius:var(--nova-radius-round);

  background:rgba(255,255,255,.08);
  color:var(--nova-text-light) !important;

  font-family:var(--nova-font-body);
  font-size:11px;
  font-weight:600;
  line-height:1.2;
  letter-spacing:.12em;
  text-decoration:none !important;
  text-transform:none;

  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);

  transition:
    background var(--nova-transition),
    color var(--nova-transition),
    border-color var(--nova-transition),
    transform var(--nova-transition);
}

.nova-luxo-button svg{
  width:36px;
  height:36px;
  padding:10px;

  border-radius:50%;
  background:var(--nova-background);

  fill:none;
  stroke:var(--nova-primary);
  stroke-width:1.4;
  stroke-linecap:round;
  stroke-linejoin:round;

  transition:
    background var(--nova-transition),
    stroke var(--nova-transition),
    transform var(--nova-transition);
}

.nova-luxo-button:hover{
  border-color:var(--nova-background);
  background:var(--nova-background);
  color:var(--nova-primary) !important;
  transform:translateY(-3px);
}

.nova-luxo-button:hover svg{
  background:var(--nova-accent);
  stroke:var(--nova-text-light);
  transform:rotate(-35deg);
}


/* ==================================================
   SCROLL INDICATOR
================================================== */

.nova-luxo-scroll,
.nova-luxo-scroll:link,
.nova-luxo-scroll:visited{
  position:absolute;
  left:clamp(22px, 3vw, 52px);
  bottom:80px;

  display:flex;
  align-items:center;
  gap:14px;

  color:rgba(255,255,255,.67) !important;

  font-family:var(--nova-font-body);
  font-size:9px;
  font-weight:600;
  line-height:1.4;
  letter-spacing:.15em;
  text-decoration:none !important;
  text-transform:uppercase;
}

.nova-luxo-scroll > span{
  font-size:inherit;
}

.nova-luxo-scroll-line{
  position:relative;

  width:52px;
  height:1px;
  overflow:hidden;

  background:rgba(255,255,255,.28);
}

.nova-luxo-scroll-line i{
  position:absolute;
  top:0;
  left:-100%;

  width:100%;
  height:1px;

  background:var(--nova-accent-light);

  animation:novaLuxoScroll 2s ease-in-out infinite;
}


/* ==================================================
   PACKAGES STORY SECTION
================================================== */

.nova-story-section{
  position:relative;

  width:100vw;
  margin-left:calc(50% - 50vw);
  padding:55px 0 100px;
  overflow:hidden;

  background:var(--nova-background);
}

.nova-story-section::before{
  content:"NOVA";
  position:absolute;
  top:70px;
  right:-30px;

  color:transparent;

  font-family:var(--nova-font-heading);
  font-size:clamp(140px, 20vw, 360px);
  font-weight:400;
  line-height:.7;
  letter-spacing:-.07em;
  white-space:nowrap;

  opacity:.5;
  pointer-events:none;

  -webkit-text-stroke:1px rgba(21,28,50,.055);
}


/* ==================================================
   STORY LAYOUT
================================================== */

.nova-story-layout{
  position:relative;
  z-index:2;

  display:grid;
  grid-template-columns:minmax(360px, .85fr) minmax(480px, 1.15fr);
  align-items:start;
  gap:clamp(70px, 10vw, 165px);
}


/* ==================================================
   STORY LEFT COLUMN
================================================== */

.nova-story-heading{
  position:sticky;
  top:130px;
}

.nova-story-title-wrap{
  max-width:610px;
}

.nova-story-eyebrow{
  display:block;
  margin-bottom:24px;

  color:var(--nova-accent);

  font-family:var(--nova-font-body);
  font-size:11px;
  font-weight:600;
  line-height:1.4;
  letter-spacing:.2em;
  text-transform:uppercase;
}

/* H2 — SLIGHTLY SMALLER */
.nova-story-title-wrap h2{
  margin:0;

  color:var(--nova-primary);

  font-family:var(--nova-font-heading);
  font-size:clamp(52px, 5.5vw, 82px);
  font-weight:400;
  line-height:.9;
  letter-spacing:-.035em;
}


/* ==================================================
   STORY RIGHT COLUMN
================================================== */

.nova-story-content{
  max-width:760px;
  padding-top:35px;
}

.nova-story-lead{
  max-width:680px;
  margin:0 0 48px;

  color:var(--nova-primary);

  font-family:var(--nova-font-heading);
  font-size:clamp(32px, 3.1vw, 48px);
  font-weight:400;
  line-height:1.16;
  letter-spacing:-.025em;
}


/* ==================================================
   ANIMATIONS
================================================== */

@keyframes novaLuxoImage{
  from{
    opacity:0;
    transform:scale(1.1);
  }

  to{
    opacity:1;
    transform:scale(1.025);
  }
}

@keyframes novaLuxoContent{
  from{
    opacity:0;
    transform:translateY(35px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes novaLuxoScroll{
  0%{
    left:-100%;
  }

  50%{
    left:0;
  }

  100%{
    left:100%;
  }
}


/* ==================================================
   TABLET
================================================== */

@media (max-width:1024px){

  .nova-luxo-content h1{
    font-size:clamp(65px, 10vw, 105px);
  }

  .nova-story-layout{
    grid-template-columns:minmax(300px, .8fr) minmax(400px, 1.2fr);
    gap:60px;
  }

  .nova-story-title-wrap h2{
    font-size:clamp(48px, 6vw, 70px);
  }

  .nova-story-content{
    padding-top:35px;
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width:767px){

  .nova-luxo-hero{
    min-height:720px;

    border-bottom-left-radius:50px;
    border-bottom-right-radius:50px;
  }

  .nova-luxo-image img{
    object-position:center;
  }

  .nova-luxo-content{
    width:100%;
    padding:150px 22px 135px;
  }

  .nova-luxo-label{
    margin-bottom:20px;
    font-size:9px;
    letter-spacing:.16em;
  }

  .nova-luxo-content h1{
    max-width:500px;
    font-size:clamp(55px, 17vw, 78px);
    line-height:.87;
  }

  .nova-luxo-content h1 em{
    margin-top:13px;
  }

  .nova-luxo-content > p{
    max-width:430px;
    margin-top:28px;
    font-size:14px;
    line-height:1.7;
  }

  .nova-luxo-button{
    min-height:52px;
    margin-top:30px;
    font-size:9px;
  }

  .nova-luxo-scroll{
    left:22px;
    bottom:64px;
    font-size:9px;
  }

  .nova-luxo-scroll span{
    display:none;
  }

  .nova-luxo-scroll-line{
    width:42px;
  }

  .nova-story-section{
    padding:35px 0 75px;
  }

  .nova-story-section::before{
    top:100px;
    right:-20px;
    font-size:48vw;
  }

  .nova-story-layout{
    display:flex;
    flex-direction:column;
    gap:52px;
  }

  .nova-story-heading{
    position:relative;
    top:auto;
    width:100%;
  }

  .nova-story-eyebrow{
    margin-bottom:18px;
    font-size:9px;
  }

  .nova-story-title-wrap h2{
    max-width:500px;
    font-size:clamp(42px, 12vw, 56px);
    line-height:.95;
  }

  .nova-story-content{
    padding-top:0;
  }

  .nova-story-lead{
    margin-bottom:35px;
    font-size:clamp(29px, 9vw, 40px);
  }
}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion:reduce){

  .nova-luxo-image img,
  .nova-luxo-content,
  .nova-luxo-scroll-line i{
    animation:none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c22d735 *//* =========================================
   NOVA — COSMETIC SERVICES
========================================= */

.nova-cosmetic-section,
.nova-cosmetic-section *{
  box-sizing:border-box;
}

.nova-cosmetic-section{
  --cosmetic-navy:#151c32;
  --cosmetic-rose:#b07f73;
  --cosmetic-gold:#b98665;
  --cosmetic-cream:#f4f0eb;
  --cosmetic-text:#565c68;

  width:100vw;
  margin-left:calc(50% - 50vw);
  padding:110px 6%;
  overflow:hidden;
  background:var(--cosmetic-cream);
}

.nova-cosmetic-inner{
  width:min(1440px,100%);
  margin:0 auto;
}


/* HEADER */
.nova-cosmetic-header{
  max-width:900px;
  margin:0 auto 60px;
  text-align:center;
}

.nova-cosmetic-eyebrow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:13px;
  margin-bottom:22px;
  color:var(--cosmetic-rose);
  font-family:Inter,Arial,sans-serif;
  font-size:11px;
  font-weight:600;
  letter-spacing:.2em;
}

.nova-cosmetic-eyebrow span{
  width:42px;
  height:1px;
  background:currentColor;
}

.nova-cosmetic-header h2{
  margin:0;
  color:var(--cosmetic-navy);
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(52px,6vw,82px);
  font-weight:500;
  line-height:.95;
  letter-spacing:-.035em;
}


/* GRID */
.nova-cosmetic-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  align-items:stretch;
  gap:28px;
}


/* CARD */
.nova-cosmetic-card{
  display:flex;
  flex-direction:column;
  min-width:0;
  overflow:hidden;
  border:1px solid rgba(21,28,50,.08);
  border-radius:24px;
  background:#fff;
  box-shadow:0 16px 45px rgba(21,28,50,.06);
  transition:
    transform .4s ease,
    box-shadow .4s ease;
}

.nova-cosmetic-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 55px rgba(21,28,50,.11);
}


/* IMAGE */
.nova-cosmetic-image{
  position:relative;
  height:285px;
  overflow:hidden;
  background:#ddd6d0;
}

.nova-cosmetic-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    transparent 55%,
    rgba(21,28,50,.25) 100%
  );
  pointer-events:none;
}

.nova-cosmetic-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:transform .8s cubic-bezier(.2,.7,.2,1);
}

.nova-cosmetic-card:hover .nova-cosmetic-image img{
  transform:scale(1.045);
}

.nova-cosmetic-number{
  position:absolute;
  z-index:2;
  right:20px;
  bottom:17px;
  color:#fff;
  font-family:Inter,Arial,sans-serif;
  font-size:11px;
  font-weight:600;
  letter-spacing:.16em;
}


/* CONTENT */
.nova-cosmetic-content{
  display:flex;
  flex:1;
  flex-direction:column;
  padding:32px 30px 34px;
}

.nova-cosmetic-content h3{
  margin:0 0 17px;
  color:var(--cosmetic-navy);
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(34px,3vw,44px);
  font-weight:500;
  line-height:1;
  letter-spacing:-.025em;
}

.nova-cosmetic-content p{
  margin:0;
  color:var(--cosmetic-text);
  font-family:Inter,Arial,sans-serif;
  font-size:15px;
  line-height:1.75;
}


/* TABLET */
@media(max-width:1024px){

  .nova-cosmetic-section{
    padding:85px 5%;
  }

  .nova-cosmetic-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .nova-cosmetic-image{
    height:300px;
  }

}


/* MOBILE */
@media(max-width:767px){

  .nova-cosmetic-section{
    padding:65px 17px;
  }

  .nova-cosmetic-header{
    margin-bottom:40px;
  }

  .nova-cosmetic-header h2{
    font-size:46px;
  }

  .nova-cosmetic-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .nova-cosmetic-card{
    border-radius:18px;
  }

  .nova-cosmetic-image{
    height:270px;
  }

  .nova-cosmetic-content{
    padding:27px 23px 30px;
  }

  .nova-cosmetic-content h3{
    font-size:37px;
  }

  .nova-cosmetic-content p{
    font-size:14px;
    line-height:1.7;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b869f7a *//* =========================================
   NOVA — LASER TREATMENT MENU
========================================= */

.nova-laser-section,
.nova-laser-section *{
  box-sizing:border-box;
}

.nova-laser-section{
  --laser-navy:#151c32;
  --laser-rose:#b07f73;
  --laser-card:#f8f5f1;
  --laser-text:#565c68;

  width:100vw;
  margin-left:calc(50% - 50vw);
  padding:110px 6%;

  overflow:hidden;
  background:var(--laser-navy);
}

.nova-laser-inner{
  width:min(1440px,100%);
  margin:0 auto;
}


/* =========================================
   HEADER
========================================= */

.nova-laser-header{
  max-width:900px;
  margin:0 auto 62px;
  text-align:center;
}

.nova-laser-eyebrow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:13px;

  margin-bottom:22px;

  color:#d2a091;
  font-family:Inter,Arial,sans-serif;
  font-size:11px;
  font-weight:600;
  line-height:1;
  letter-spacing:.2em;
  text-transform:uppercase;
}

.nova-laser-eyebrow span{
  display:block;
  width:42px;
  height:1px;

  background:currentColor;
}

.nova-laser-header h2{
  margin:0;

  color:#fff;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(52px,6vw,84px);
  font-weight:500;
  line-height:.95;
  letter-spacing:-.035em;
}


/* =========================================
   GRID
========================================= */

.nova-laser-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  align-items:stretch;
  gap:28px;
}


/* =========================================
   CARD
========================================= */

.nova-laser-card{
  display:flex;
  flex-direction:column;
  min-width:0;
  height:100%;

  overflow:hidden;

  border:1px solid rgba(255,255,255,.1);
  border-radius:24px;

  background:var(--laser-card);

  transition:
    transform .4s ease,
    box-shadow .4s ease;
}

.nova-laser-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 60px rgba(0,0,0,.22);
}


/* =========================================
   IMAGE
========================================= */

.nova-laser-image{
  position:relative;
  height:285px;

  overflow:hidden;
  background:#d9d1ca;
}

.nova-laser-image::after{
  content:"";
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      180deg,
      transparent 48%,
      rgba(21,28,50,.32) 100%
    );

  pointer-events:none;
}

.nova-laser-image img{
  display:block;
  width:100%;
  height:100%;

  object-fit:cover;
  object-position:center;

  transition:transform .8s cubic-bezier(.2,.7,.2,1);
}

.nova-laser-card:hover .nova-laser-image img{
  transform:scale(1.045);
}

.nova-laser-number{
  position:absolute;
  z-index:2;
  right:20px;
  bottom:17px;

  color:#fff;
  font-family:Inter,Arial,sans-serif;
  font-size:11px;
  font-weight:600;
  letter-spacing:.16em;
}


/* =========================================
   CONTENT
========================================= */

.nova-laser-content{
  display:flex;
  flex:1;
  flex-direction:column;

  padding:32px 30px 35px;
}

.nova-laser-content h3{
  min-height:88px;
  margin:0 0 21px;

  color:var(--laser-navy);
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(34px,3vw,44px);
  font-weight:500;
  line-height:1;
  letter-spacing:-.025em;
}

.nova-laser-intro{
  margin:0 0 20px;

  color:var(--laser-text);
  font-family:Inter,Arial,sans-serif;
  font-size:15px;
  line-height:1.75;
}

.nova-laser-content ul{
  display:grid;
  gap:11px;

  margin:0;
  padding:0;

  list-style:none;
}

.nova-laser-content li{
  position:relative;
  margin:0;
  padding-left:23px;

  color:var(--laser-text);
  font-family:Inter,Arial,sans-serif;
  font-size:14px;
  line-height:1.6;
}

.nova-laser-content li::before{
  content:"";
  position:absolute;
  top:.72em;
  left:0;

  width:9px;
  height:1px;

  background:var(--laser-rose);
}


/* =========================================
   BUTTON
========================================= */

.nova-laser-button{
  min-height:48px;
  margin-top:auto;
  padding:26px 0 0;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;

  border-top:1px solid rgba(21,28,50,.12);

  color:var(--laser-navy) !important;
  font-family:Inter,Arial,sans-serif;
  font-size:10px;
  font-weight:700;
  line-height:1;
  letter-spacing:.16em;
  text-decoration:none !important;
  text-transform:uppercase;

  transition:color .3s ease;
}

.nova-laser-button svg{
  width:36px;
  height:36px;
  padding:10px;

  border:1px solid rgba(21,28,50,.22);
  border-radius:50%;

  fill:none;
  stroke:currentColor;
  stroke-width:1.5;
  stroke-linecap:round;
  stroke-linejoin:round;

  transition:
    background .3s ease,
    border-color .3s ease,
    color .3s ease,
    transform .3s ease;
}

.nova-laser-button:hover{
  color:var(--laser-rose) !important;
}

.nova-laser-button:hover svg{
  border-color:var(--laser-rose);
  background:var(--laser-rose);
  color:#fff;

  transform:rotate(-35deg);
}


/* =========================================
   TABLET
========================================= */

@media(max-width:1024px){

  .nova-laser-section{
    padding:85px 5%;
  }

  .nova-laser-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
  }

  .nova-laser-image{
    height:300px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:767px){

  .nova-laser-section{
    padding:65px 17px;
  }

  .nova-laser-header{
    margin-bottom:40px;
  }

  .nova-laser-eyebrow{
    font-size:9px;
    letter-spacing:.17em;
  }

  .nova-laser-header h2{
    font-size:46px;
  }

  .nova-laser-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .nova-laser-card{
    border-radius:18px;
  }

  .nova-laser-image{
    height:270px;
  }

  .nova-laser-content{
    padding:27px 23px 30px;
  }

  .nova-laser-content h3{
    min-height:0;
    font-size:37px;
  }

  .nova-laser-intro,
  .nova-laser-content li{
    font-size:14px;
  }

  .nova-laser-button{
    padding-top:23px;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f616e0c *//* =========================================
   NOVA — SKINSPA LUXURY FACIALS
========================================= */

.nova-skinspa-section,
.nova-skinspa-section *{
  box-sizing:border-box;
}

.nova-skinspa-section{
  --skinspa-navy:#151c32;
  --skinspa-rose:#b07f73;
  --skinspa-gold:#b98665;
  --skinspa-cream:#f4f0eb;
  --skinspa-soft:#ebe5df;
  --skinspa-text:#565c68;

  width:100vw;
  margin-left:calc(50% - 50vw);
  padding:110px 6%;
  overflow:hidden;
  background:var(--skinspa-cream);
}

.nova-skinspa-inner{
  width:min(1440px,100%);
  margin:0 auto;
}


/* =========================================
   HEADER
========================================= */

.nova-skinspa-header{
  margin-bottom:62px;
}

.nova-skinspa-eyebrow{
  display:flex;
  align-items:center;
  gap:13px;
  margin-bottom:24px;
  color:var(--skinspa-rose);
  font-family:Inter,Arial,sans-serif;
  font-size:11px;
  font-weight:600;
  letter-spacing:.2em;
}

.nova-skinspa-eyebrow span{
  width:44px;
  height:1px;
  background:currentColor;
}

.nova-skinspa-heading-row{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
  align-items:end;
  gap:70px;
}

.nova-skinspa-heading-row h2{
  max-width:850px;
  margin:0;
  color:var(--skinspa-navy);
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(54px,6vw,88px);
  font-weight:500;
  line-height:.92;
  letter-spacing:-.04em;
}

.nova-skinspa-heading-row h2 em{
  display:block;
  margin-top:10px;
  color:var(--skinspa-rose);
  font-weight:500;
}

.nova-skinspa-heading-row > p{
  max-width:540px;
  margin:0;
  padding-left:28px;
  border-left:1px solid rgba(21,28,50,.18);
  color:var(--skinspa-text);
  font-family:Inter,Arial,sans-serif;
  font-size:17px;
  line-height:1.75;
}


/* =========================================
   GRID
========================================= */

.nova-skinspa-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  align-items:stretch;
  gap:27px;
}


/* =========================================
   CARD
========================================= */

.nova-skinspa-card{
  display:flex;
  flex-direction:column;
  min-width:0;
  overflow:hidden;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(21,28,50,.08);
  box-shadow:0 16px 45px rgba(21,28,50,.06);
  transition:
    transform .4s ease,
    box-shadow .4s ease;
}

.nova-skinspa-card:hover{
  transform:translateY(-6px);
  box-shadow:0 25px 60px rgba(21,28,50,.11);
}


/* IMAGE */

.nova-skinspa-image{
  position:relative;
  height:300px;
  overflow:hidden;
  background:#d9d1ca;
}

.nova-skinspa-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    transparent 52%,
    rgba(21,28,50,.3) 100%
  );
  pointer-events:none;
}

.nova-skinspa-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:transform .8s cubic-bezier(.2,.7,.2,1);
}

.nova-skinspa-card:hover .nova-skinspa-image img{
  transform:scale(1.045);
}

.nova-skinspa-number{
  position:absolute;
  z-index:2;
  right:20px;
  bottom:17px;
  color:#fff;
  font-family:Inter,Arial,sans-serif;
  font-size:11px;
  font-weight:600;
  letter-spacing:.16em;
}


/* CONTENT */

.nova-skinspa-content{
  display:flex;
  flex:1;
  flex-direction:column;
  padding:33px 30px 36px;
}

.nova-skinspa-category{
  margin-bottom:17px;
  color:var(--skinspa-rose);
  font-family:Inter,Arial,sans-serif;
  font-size:10px;
  font-weight:700;
  line-height:1.3;
  letter-spacing:.17em;
  text-transform:uppercase;
}

.nova-skinspa-content h3{
  margin:0 0 13px;
  color:var(--skinspa-navy);
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(34px,3vw,45px);
  font-weight:500;
  line-height:1;
  letter-spacing:-.025em;
}

.nova-skinspa-subtitle{
  margin-bottom:20px;
  color:var(--skinspa-gold);
  font-family:Inter,Arial,sans-serif;
  font-size:11px;
  font-weight:600;
  line-height:1.5;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.nova-skinspa-content p{
  margin:0;
  color:var(--skinspa-text);
  font-family:Inter,Arial,sans-serif;
  font-size:15px;
  line-height:1.75;
}


/* =========================================
   ADD-ONS
========================================= */

.nova-skinspa-addons{
  display:grid;
  grid-template-columns:minmax(280px,.7fr) minmax(0,1.3fr);
  gap:65px;
  margin-top:30px;
  padding:48px 52px;
  border-radius:24px;
  background:var(--skinspa-navy);
}

.nova-skinspa-addons-heading{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.nova-skinspa-addons-heading .nova-skinspa-category{
  color:#d2a091;
}

.nova-skinspa-addons-heading h3{
  margin:0;
  color:#fff;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(43px,4vw,62px);
  font-weight:500;
  line-height:1;
  letter-spacing:-.03em;
}

.nova-skinspa-addons-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.nova-skinspa-addon{
  display:flex;
  align-items:center;
  gap:17px;
  min-height:78px;
  padding:18px 21px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:16px;
  background:rgba(255,255,255,.045);
}

.nova-skinspa-addon span{
  color:#d2a091;
  font-family:Inter,Arial,sans-serif;
  font-size:10px;
  font-weight:600;
  letter-spacing:.13em;
}

.nova-skinspa-addon strong{
  color:rgba(255,255,255,.83);
  font-family:Inter,Arial,sans-serif;
  font-size:14px;
  font-weight:500;
  line-height:1.5;
}


/* =========================================
   TABLET
========================================= */

@media(max-width:1024px){

  .nova-skinspa-section{
    padding:85px 5%;
  }

  .nova-skinspa-heading-row{
    grid-template-columns:1fr;
    gap:28px;
  }

  .nova-skinspa-heading-row > p{
    max-width:720px;
  }

  .nova-skinspa-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .nova-skinspa-card:last-child{
    grid-column:1 / -1;
  }

  .nova-skinspa-card:last-child .nova-skinspa-image{
    height:380px;
  }

  .nova-skinspa-addons{
    grid-template-columns:1fr;
    gap:35px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:767px){

  .nova-skinspa-section{
    padding:65px 17px;
  }

  .nova-skinspa-header{
    margin-bottom:42px;
  }

  .nova-skinspa-heading-row h2{
    font-size:47px;
  }

  .nova-skinspa-heading-row > p{
    padding-left:19px;
    font-size:16px;
    line-height:1.7;
  }

  .nova-skinspa-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .nova-skinspa-card:last-child{
    grid-column:auto;
  }

  .nova-skinspa-card{
    border-radius:18px;
  }

  .nova-skinspa-image,
  .nova-skinspa-card:last-child .nova-skinspa-image{
    height:270px;
  }

  .nova-skinspa-content{
    padding:28px 23px 31px;
  }

  .nova-skinspa-content h3{
    font-size:38px;
  }

  .nova-skinspa-content p{
    font-size:14px;
    line-height:1.7;
  }

  .nova-skinspa-addons{
    margin-top:20px;
    padding:35px 23px;
    border-radius:18px;
  }

  .nova-skinspa-addons-heading h3{
    font-size:42px;
  }

  .nova-skinspa-addons-list{
    grid-template-columns:1fr;
  }

  .nova-skinspa-addon{
    min-height:70px;
  }

}

/* =========================================
   SKINSPA — HEADER CONTENT
========================================= */

.nova-skinspa-heading-content{
  max-width:520px;
  padding-left:38px;
  border-left:1px solid var(--nova-border);
}

.nova-skinspa-heading-content p{
  margin:0;

  color:var(--nova-text-soft);
  font-family:var(--nova-font-body);
  font-size:17px;
  line-height:1.8;
}


/* BOOK BUTTON */

.nova-skinspa-book-button{
  min-height:54px;
  margin-top:28px;
  padding:0 9px 0 25px;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:20px;

  border:1px solid var(--nova-primary);
  border-radius:999px;

  background:var(--nova-primary);
  color:var(--nova-text-light) !important;

  font-family:var(--nova-font-body);
  font-size:10px;
  font-weight:700;
  line-height:1;
  letter-spacing:.15em;
  text-decoration:none !important;
  text-transform:uppercase;

  transition:
    background .3s ease,
    border-color .3s ease,
    color .3s ease,
    transform .3s ease;
}

.nova-skinspa-book-button svg{
  width:36px;
  height:36px;
  padding:10px;

  border-radius:50%;
  background:var(--nova-background);

  fill:none;
  stroke:var(--nova-primary);
  stroke-width:1.5;
  stroke-linecap:round;
  stroke-linejoin:round;

  transition:
    background .3s ease,
    stroke .3s ease,
    transform .3s ease;
}

.nova-skinspa-book-button:hover{
  border-color:var(--nova-accent);
  background:var(--nova-accent);
  color:var(--nova-text-light) !important;

  transform:translateY(-2px);
}

.nova-skinspa-book-button:hover svg{
  background:var(--nova-text-light);
  stroke:var(--nova-accent);
  transform:rotate(-35deg);
}


/* TABLET + MOBILE */

@media(max-width:1024px){

  .nova-skinspa-heading-content{
    max-width:100%;
    padding-left:0;
    padding-top:28px;

    border-left:0;
    border-top:1px solid var(--nova-border);
  }

}

@media(max-width:767px){

  .nova-skinspa-heading-content p{
    font-size:15px;
    line-height:1.75;
  }

  .nova-skinspa-book-button{
    width:100%;
    justify-content:space-between;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-81bbb11 *//* =========================================
   NOVA — BEFORE & AFTER SLIDER
========================================= */

.nova-ba-section,
.nova-ba-section *{
  box-sizing:border-box;
}

.nova-ba-section{
  --ba-navy:#151c32;
  --ba-rose:#b07f73;
  --ba-gold:#b98665;
  --ba-cream:#f4f0eb;
  --ba-soft:#ebe5df;
  --ba-text:#575d69;

  width:100vw;
  margin-left:calc(50% - 50vw);
  padding:110px 6%;
  overflow:hidden;
  background:var(--ba-navy);
}

.nova-ba-inner{
  width:min(1440px,100%);
  margin:0 auto;
}


/* =========================================
   HEADER
========================================= */

.nova-ba-header{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,.7fr);
  align-items:end;
  gap:70px;
  margin-bottom:58px;
}

.nova-ba-eyebrow{
  display:flex;
  align-items:center;
  gap:13px;
  margin-bottom:22px;
  color:#d2a091;
  font-family:Inter,Arial,sans-serif;
  font-size:10px;
  font-weight:600;
  line-height:1;
  letter-spacing:.2em;
}

.nova-ba-eyebrow span{
  display:block;
  width:42px;
  height:1px;
  background:currentColor;
}

.nova-ba-heading h2{
  margin:0;
  color:#fff;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(55px,6vw,88px);
  font-weight:500;
  line-height:.9;
  letter-spacing:-.04em;
}

.nova-ba-heading h2 em{
  color:#d2a091;
  font-weight:500;
}

.nova-ba-header-right{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:25px;
}

.nova-ba-header-right p{
  max-width:520px;
  margin:0;
  padding-left:25px;
  border-left:1px solid rgba(255,255,255,.2);
  color:rgba(255,255,255,.7);
  font-family:Inter,Arial,sans-serif;
  font-size:16px;
  line-height:1.75;
}


/* =========================================
   CONTROLS
========================================= */

.nova-ba-controls{
  display:flex;
  align-items:center;
  gap:10px;
}

.nova-ba-arrow{
  display:flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  padding:0;
  border:1px solid rgba(255,255,255,.35);
  border-radius:50%;
  background:transparent;
  color:#fff;
  cursor:pointer;
  transition:
    background .3s ease,
    border-color .3s ease,
    color .3s ease,
    transform .3s ease;
}

.nova-ba-arrow svg{
  width:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.nova-ba-arrow:hover{
  border-color:var(--ba-rose);
  background:var(--ba-rose);
  color:#fff;
  transform:translateY(-2px);
}

.nova-ba-arrow:disabled{
  opacity:.35;
  cursor:not-allowed;
  transform:none;
}


/* =========================================
   SLIDER
========================================= */

.nova-ba-viewport{
  width:100%;
  overflow:hidden;
}

.nova-ba-track{
  display:flex;
  align-items:stretch;
  gap:24px;
  transition:transform .65s cubic-bezier(.22,.61,.36,1);
  will-change:transform;
}

.nova-ba-slide{
  flex:0 0 calc((100% - 48px) / 3);
  min-width:0;
  overflow:hidden;
  border-radius:22px;
  background:var(--ba-cream);
}


/* =========================================
   IMAGE
========================================= */

.nova-ba-image{
  position:relative;
  aspect-ratio:4 / 4.5;
  overflow:hidden;
  background:#ddd5cf;
}

.nova-ba-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    transparent 60%,
    rgba(21,28,50,.22) 100%
  );
  pointer-events:none;
}

.nova-ba-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:transform .8s cubic-bezier(.2,.7,.2,1);
}

.nova-ba-slide:hover .nova-ba-image img{
  transform:scale(1.035);
}

.nova-ba-number{
  position:absolute;
  z-index:2;
  right:19px;
  bottom:17px;
  color:#fff;
  font-family:Inter,Arial,sans-serif;
  font-size:10px;
  font-weight:600;
  letter-spacing:.16em;
}


/* =========================================
   CAPTION
========================================= */

.nova-ba-caption{
  padding:24px 25px 27px;
}

.nova-ba-caption span{
  display:block;
  margin-bottom:9px;
  color:var(--ba-rose);
  font-family:Inter,Arial,sans-serif;
  font-size:9px;
  font-weight:700;
  line-height:1.4;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.nova-ba-caption strong{
  display:block;
  color:var(--ba-navy);
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:29px;
  font-weight:500;
  line-height:1;
}


/* =========================================
   DOTS
========================================= */

.nova-ba-dots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:35px;
}

.nova-ba-dot{
  width:7px;
  height:7px;
  padding:0;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.3);
  cursor:pointer;
  transition:
    width .3s ease,
    border-radius .3s ease,
    background .3s ease;
}

.nova-ba-dot.is-active{
  width:30px;
  border-radius:999px;
  background:var(--ba-rose);
}


/* =========================================
   TABLET
========================================= */

@media(max-width:1024px){

  .nova-ba-section{
    padding:85px 5%;
  }

  .nova-ba-header{
    grid-template-columns:1fr;
    gap:30px;
  }

  .nova-ba-header-right p{
    max-width:720px;
  }

  .nova-ba-slide{
    flex-basis:calc((100% - 20px) / 2);
  }

  .nova-ba-track{
    gap:20px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:767px){

  .nova-ba-section{
    padding:65px 17px;
  }

  .nova-ba-header{
    margin-bottom:38px;
  }

  .nova-ba-heading h2{
    font-size:48px;
  }

  .nova-ba-header-right p{
    padding-left:18px;
    font-size:15px;
    line-height:1.7;
  }

  .nova-ba-arrow{
    width:44px;
    height:44px;
  }

  .nova-ba-track{
    gap:16px;
  }

  .nova-ba-slide{
    flex-basis:100%;
    border-radius:18px;
  }

  .nova-ba-image{
    aspect-ratio:4 / 4.2;
  }

  .nova-ba-caption{
    padding:22px 21px 24px;
  }

  .nova-ba-caption strong{
    font-size:27px;
  }

}
/* =========================================
   FORCE WHITE SLIDER ARROWS
========================================= */

.nova-ba-arrow svg{
  display:none !important;
}

.nova-ba-arrow::before{
  display:block !important;
  color:#ffffff !important;
  -webkit-text-fill-color:#ffffff !important;
  font-family:Arial, sans-serif !important;
  font-size:22px !important;
  font-weight:400 !important;
  line-height:1 !important;
  opacity:1 !important;
}

.nova-ba-prev::before{
  content:"←" !important;
}

.nova-ba-next::before{
  content:"→" !important;
}

.nova-ba-arrow,
.nova-ba-arrow:hover,
.nova-ba-arrow:focus,
.nova-ba-arrow:active{
  color:#ffffff !important;
  -webkit-text-fill-color:#ffffff !important;
}

.nova-ba-arrow:hover::before,
.nova-ba-arrow:focus::before,
.nova-ba-arrow:active::before{
  color:#ffffff !important;
  -webkit-text-fill-color:#ffffff !important;
}

.nova-ba-arrow:disabled{
  opacity:.55 !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4121778 *//* =========================================
   NOVA — COSMETIC SERVICES PRE-FOOTER
========================================= */

.nova-prefooter,
.nova-prefooter *{
  box-sizing:border-box;
}

.nova-prefooter{
  width:100vw;
  margin-left:calc(50% - 50vw);
  padding:42px 6%;
  overflow:hidden;
  background:#ebe5df;
}


/* =========================================
   MAIN BOX
========================================= */

.nova-prefooter-inner{
  position:relative;
  isolation:isolate;

  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:26px;

  width:min(1400px,100%);
  min-height:330px;
  margin:0 auto;
  padding:55px 64px;

  overflow:hidden;
  border-radius:26px;

  background-color:#151c32;
  background-image:
    linear-gradient(
      90deg,
      rgba(21,28,50,.92) 0%,
      rgba(21,28,50,.78) 34%,
      rgba(21,28,50,.46) 60%,
      rgba(21,28,50,.14) 100%
    ),
    url("/wp-content/uploads/2026/07/ChatGPT-Image-Jul-10-2026-01_46_09-PM-6.jpg");

  background-size:cover;
  background-position:center right;
  background-repeat:no-repeat;
}


/* DECORATIVE CIRCLE */

.nova-prefooter-inner::after{
  content:"";
  position:absolute;
  z-index:-1;
  top:-115px;
  right:-75px;

  width:340px;
  height:340px;

  border:1px solid rgba(255,255,255,.12);
  border-radius:50%;
  pointer-events:none;
}


/* =========================================
   CONTENT
========================================= */

.nova-prefooter-content{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1050px;
}

.nova-prefooter-label{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 0 15px;

  color:#d2a091;
  font-family:Inter,Arial,sans-serif;
  font-size:10px;
  font-weight:600;
  line-height:1.4;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.nova-prefooter-label span{
  display:block;
  flex:0 0 36px;
  width:36px;
  height:1px;
  background:currentColor;
}


/* TITLE */

.nova-prefooter h2{
  width:100%;
  max-width:none;
  margin:0 0 15px;

  color:#fff;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(43px,3.9vw,64px);
  font-weight:500;
  line-height:1;
  letter-spacing:-.03em;
  white-space:nowrap;
}


/* PARAGRAPH */

.nova-prefooter p{
  max-width:720px;
  margin:0;

  color:rgba(255,255,255,.78);
  font-family:Inter,Arial,sans-serif;
  font-size:16px;
  line-height:1.75;
}


/* =========================================
   BUTTON
========================================= */

.nova-prefooter-button{
  position:relative;
  z-index:2;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  align-self:flex-start;
  flex-shrink:0;
  gap:13px;

  min-height:52px;
  margin:0;
  padding:12px 24px;

  border:1px solid #b07f73;
  border-radius:999px;
  background:#b07f73;
  color:#fff !important;

  font-family:Inter,Arial,sans-serif;
  font-size:12px;
  font-weight:600;
  line-height:1;
  letter-spacing:.07em;
  text-decoration:none !important;
  white-space:nowrap;

  box-shadow:0 10px 30px rgba(0,0,0,.12);

  transition:
    background .3s ease,
    border-color .3s ease,
    color .3s ease,
    transform .3s ease,
    box-shadow .3s ease;
}

.nova-prefooter-button span{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  color:#fff;
  font-family:Arial,sans-serif;
  font-size:19px;
  line-height:1;

  transition:transform .3s ease;
}

.nova-prefooter-button:hover{
  border-color:#9f7167;
  background:#9f7167;
  color:#fff !important;
  transform:translateY(-2px);
  box-shadow:0 15px 34px rgba(0,0,0,.18);
}

.nova-prefooter-button:hover span{
  transform:translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media(max-width:1100px){

  .nova-prefooter{
    padding:36px 5%;
  }

  .nova-prefooter-inner{
    min-height:320px;
    padding:50px 44px;

    background-image:
      linear-gradient(
        90deg,
        rgba(21,28,50,.92) 0%,
        rgba(21,28,50,.78) 50%,
        rgba(21,28,50,.35) 100%
      ),
      url("/wp-content/uploads/2026/07/your-cosmetic-prefooter-image.jpg");

    background-position:center right;
  }

  .nova-prefooter-content{
    max-width:850px;
  }

  .nova-prefooter h2{
    font-size:clamp(39px,5vw,55px);
    white-space:normal;
  }

  .nova-prefooter p{
    max-width:650px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:767px){

  .nova-prefooter{
    padding:28px 16px;
  }

  .nova-prefooter-inner{
    gap:24px;
    min-height:0;
    padding:40px 24px;
    border-radius:19px;

    background-image:
      linear-gradient(
        90deg,
        rgba(21,28,50,.88) 0%,
        rgba(21,28,50,.73) 64%,
        rgba(21,28,50,.50) 100%
      ),
      url("/wp-content/uploads/2026/07/your-cosmetic-prefooter-image.jpg");

    background-size:cover;
    background-position:62% center;
  }

  .nova-prefooter-inner::after{
    top:-80px;
    right:-130px;
    width:270px;
    height:270px;
  }

  .nova-prefooter-label{
    margin-bottom:13px;
    font-size:9px;
    letter-spacing:.15em;
  }

  .nova-prefooter-label span{
    flex-basis:30px;
    width:30px;
  }

  .nova-prefooter h2{
    margin-bottom:13px;
    font-size:39px;
    line-height:1.03;
    white-space:normal;
  }

  .nova-prefooter p{
    font-size:15px;
    line-height:1.7;
  }

  .nova-prefooter-button{
    min-height:49px;
    padding:11px 20px;
    font-size:11px;
  }

}/* End custom CSS */