    /* ===== NAVBAR ===== */
.navbar{
  background: transparent;
  padding: 18px 0;  /* instead of 20px 40px */
}

.navbar-brand{
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
}
.ddNav{
  max-width: 1200px; /* match your hero-inner */
}

.brandStar{
  display: inline-block;
  font-size: 14px;
  margin: 0 2px;
  transform: translateY(-1px);
  color: #fff;
}

    .nav-link{
      color: rgba(255,255,255,.7) !important;
      font-weight: 600;
      margin-left: 15px;
    }
    .nav-link:hover{
      color: #fff !important;
    }

    /* ===== HERO SECTION ===== */
    .hero{
      min-height: calc(100vh - 90px);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    /* Inner container so hands don't fly away on wide screens */
    .hero-inner{
      position: relative;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      padding: 0 24px;
      will-change: transform;
        z-index: 3; /* above the glow */

    }

    .hero-logo{
      width: min(820px, 85vw);
      max-height: 45vh;
      height: auto;
      object-fit: contain;
      display: block;
      margin: 0 auto 12px;
      transition: transform 120ms ease-out;
      will-change: transform;
    }

    .hand{
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: min(520px, 38vw);   /* BIG but responsive */
      pointer-events: none;
      z-index: 2;
      filter: drop-shadow(0 18px 35px rgba(0,0,0,.55));
      will-change: transform;
}

/* Put them on the EDGE of the SCREEN */
    .hand.left{ left: -40px; }   /* adjust closer/farther */
    .hand.right{ right: -40px; }

/* Optional: if you want them even nearer to the logo, make this -20px */


    .hero-content{ position: relative; z-index: 2; }

    .hero-desc{
      max-width: 640px;
      margin: 10px auto 24px;
      opacity: .75;
      font-size: 15px;
      line-height: 1.6;
    }

    .btn-glow{
      background: linear-gradient(135deg,#ff4fd8,#7c5cff);
      border: none;
      padding: 12px 25px;
      border-radius: 50px;
      font-weight: 800;
      color: #000;
      box-shadow: 0 0 25px rgba(255,79,216,.4);
    }
    .btn-glow:hover{ filter: brightness(1.05); transform: translateY(-1px); }

    .btn-outline-light{
      border-radius: 50px;
      padding: 12px 25px;
      font-weight: 800;
      border-color: rgba(255,255,255,.25);
    }

    @media (max-width: 992px){
      .hand{ width: 220px; }
      .hand.left{ left: -70px; }
      .hand.right{ right: -70px; }
      .hero-logo{ max-height: 40vh; }
    }

    @media (max-width: 768px){
      .hand{ width: 170px; opacity: .95; }
      .hand.left{ left: -35px; }
      .hand.right{ right: -35px; }
      .hero-inner{ padding: 0 14px; }
      .hero-logo{ max-height: 36vh; }
    }

    @media (max-width: 480px){
      .navbar{ padding: 16px 16px; }
      .hand{ width: 140px; opacity: .9; }
      .hand.left{ left: -25px; }
      .hand.right{ right: -25px; }
    }
    /* ===== LUXURY CURSOR GLOW ===== */
   .cursor-glow{
      position: fixed;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      pointer-events: none;
      background: radial-gradient(circle,
      rgba(255,79,216,0.35) 0%,
      rgba(124,92,255,0.25) 40%,
      rgba(255,79,216,0.08) 65%,
      transparent 75%);
      filter: blur(35px);
      transform: translate(-50%, -50%);
      z-index: 1;
      transition: width 0.2s ease, height 0.2s ease;
      mix-blend-mode: screen;
}
/* ===== NAILS SCROLL ZOOM SECTION ===== */
.nailsTour{
  position: relative;
  background: #07070a;
}

.nailsTour .tourWrap{
  position: relative;
}

/* Canvas pinned only while you're inside the section */
#stage{
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: block;
  pointer-events: none;
}

/* scroll space only for this section */
.nailsTour .scroll{
  height: 700vh;
}

.rightPanel{
  position: sticky;
  top: 0;
  width: min(460px, 40vw);
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px;
  pointer-events: none;
  z-index: 5;

  /* spacing */
  margin-left: auto;
  margin-right: 80px;   /* 👈 space from right edge */

  transition: margin .35s ease;
}

.rightPanel.right{
  margin-left: auto;
  margin-right: 80px;   /* 👈 right spacing */
}

.rightPanel.left{
  margin-left: 80px;    /* 👈 left spacing */
  margin-right: auto;
}


.rightText{
  color: #f3f4f6;
  max-width: 420px;
}

.rightText h2{
  margin: 0 0 16px;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.rightText p{
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(243,244,246,.75);
}



@media (max-width: 820px){
  .rightPanel{
    width: 100%;
    height: auto;
    padding: 16px;
    align-items: flex-end;
  }
  .rightText h2{ font-size: 28px; }
  .rightText p{ font-size: 14px; }
}
/* ===== HERO DECOR IMAGES ===== */
.hero-decor{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: min(520px, 40vw);
  opacity: .18;                  /* subtle */
  filter: blur(.2px) saturate(.9);
  pointer-events: none;
  z-index: 1;                    /* behind hands + content */
  mix-blend-mode: screen;        /* makes it feel glowy on black */
}

/* Place on both sides */
.hero-decor.left{ left: 80px; }
.hero-decor.right{ right: 80px; }

/* Soft fade so edges disappear nicely */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index: 0;
  background:
    radial-gradient(700px 520px at 25% 55%, rgba(124,92,255,.18), transparent 65%),
    radial-gradient(700px 520px at 75% 55%, rgba(255,79,216,.14), transparent 65%);
}
@media (max-width: 992px){
  .hero-decor{ opacity: .12; width: 320px; }
  .hero-decor.left{ left: 20px; }
  .hero-decor.right{ right: 20px; }
}

@media (max-width: 768px){
  .hero-decor{
    display: block;
    width: 160px;
    opacity: .10;
  }
  .hero-decor.left{ left: 6px; }
  .hero-decor.right{ right: 6px; }
}
/* ===== ONE-SECTION BIG TYPING HERO ===== */
.typeHero{
  min-height: 70vh;              /* change to 100vh if you want full screen */
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 650px at 20% 35%, rgba(124,92,255,.18), transparent 60%),
    radial-gradient(900px 650px at 80% 60%, rgba(255,79,216,.14), transparent 60%),
    #050507;
}

.typeWrap{
  position: relative;
  z-index: 2;
  padding: 40px 16px;
  max-width: 1100px;
}

.typeLine{
  margin: 0 0 14px;
  font-size: clamp(44px, 6.2vw, 92px);
  line-height: 1.02;
  letter-spacing: -1px;
  font-weight: 700;
  text-shadow: 0 0 34px rgba(255,255,255,.08);
}

.typeTag{
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(14px, 1.7vw, 18px);
}

/* caret */
.typeLine::after{
  content:"▋";
  margin-left: 6px;
  animation: caretBlink .9s infinite;
  opacity: .9;
}

@keyframes caretBlink{
  0%,49%{opacity:0}
  50%,100%{opacity:1}
}

/* subtle floating grain (optional artistic feel) */
.typeHero::before{
  content:"";
  position:absolute;
  inset:-60px;
  background:
    radial-gradient(600px 420px at 35% 40%, rgba(255,255,255,.06), transparent 70%),
    radial-gradient(600px 420px at 70% 70%, rgba(255,255,255,.05), transparent 70%);
  filter: blur(2px);
  opacity: .8;
  pointer-events:none;
  animation: drift 10s ease-in-out infinite alternate;
}

@keyframes drift{
  from{ transform: translate3d(-10px,-8px,0) }
  to{ transform: translate3d(10px,8px,0) }
}
/* ===== INTRO LOADER (NO GRADIENT) ===== */
.introLoader{
  position: fixed;
  inset: 0;
  background: #000;
  display: grid;
  place-items: start center;   /* move toward top */
  padding-top: 8vh;           /* control how high */
  z-index: 9999;
  transition: opacity .6s ease;

  /* mobile viewport stability */
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
}

.introLoader.is-hidden{ opacity:0; pointer-events:none; }

.introStage{
  position: relative;
  width: min(900px, 92vw);
  height: min(520px, 75vh);
  height: min(520px, 75dvh);
}

/* wrapper = the "trimmed box" */
.piece{
  position: absolute;
  left: 50%;
  overflow: hidden; /* desktop trimming OK */
  opacity: 0;
  filter: blur(6px);
  transform: translate(-50%, -50%) translateY(16px) scale(.92);
  transition: opacity .5s ease, transform .5s ease, filter .5s ease;
}

/* image inside gets shifted by trim offsets */
.piece img{
  display: block;
  width: 100%;
  height: auto;
  transform: translate(
    calc(-1px * var(--trim-x, 0)),
    calc(-1px * var(--trim-y, 0))
  );
}

/* sizes (desktop/tablet composition) */
.pos1{ width: min(320px, 28vw); top: 6%; }
.pos2{ width: min(720px, 90vw); top: 42%; }
.pos3{ width: min(720px, 90vw); top: 92%; }  /* moved lower */
.pos4{ width: min(440px, 55vw); top: 122%; left: 55%; }


.piece.show{
  opacity: 1;
  filter: blur(0);
  transform: translate(-50%, -50%) translateY(0) scale(1);
}

/* =========================
   MOBILE: STACK LAYOUT (Safari + Chrome iPhone safe)
   ========================= */
@media (max-width: 768px){
  .pos1{
    align-self: center;
    margin-left: 15vw;
  }
  /* allow scroll + avoid “centered giant image” feeling */
  .introLoader{
    place-items: start center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 18px 0 28px;
  }

  .introStage{
    width: 92vw;
    max-width: 92vw;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    gap: 14px;
    padding: 14px 0;
  }

  /* IMPORTANT: kill absolute layout + kill desktop centering transform */
  .piece{
    position: static !important;     /* strongest: no overlap possible */
    inset: auto !important;
    left: auto !important;
    top: auto !important;
    transform: translateY(14px) scale(.96) !important;

    /* Safari crop fix: don’t trim on mobile */
    overflow: visible !important;
    max-width: 92vw !important;
  }

  /* CRITICAL: .piece.show must also be reset (Chrome iPhone overlap fix) */
  .piece.show{
    transform: translateY(0) scale(1) !important;
  }

  /* remove trim shifting on mobile (prevents weird cropping) */
  .piece img{
    transform: none !important;
    max-width: 100% !important;
    height: auto !important;
  }

  /* mobile widths */
  .pos1{ width: min(240px, 70vw); }
  .pos2{ width: 92vw; }
  .pos3{ width: 92vw; }
  .pos4{ width: min(320px, 75vw); }

  /* prevent pos3 “taking over” the screen on iPhone */
  .pos2 img,
  .pos3 img{
    max-height: 32vh;
    width: auto;
    object-fit: contain;
  }

  /* spacing + layer order */
  .pos3{ margin-bottom: 14px; z-index: 3; }
  .pos4{ margin-top: 0; z-index: 4; }
}

/* ===== WORKS PARALLAX SLIDESHOW ===== */
.worksParallax{
  position: relative;
  background: #000;
  color: #fff;
  padding: 0;
}

.worksWrap{
  position: relative;
  /* scroll length: increase if you want slower changes */
  height: 420vh;
}

.worksSticky{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
/* Media occupies full sticky area */
.worksMedia{
  position: absolute;
  inset: 0;
}

/* Two rows */
.worksTrack{
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  gap: 22px;
  padding: 0 8vw;
  will-change: transform;
}

/* top slideshow row */
.worksTrackTop{
  top: 8vh;
  height: 34vh;
  align-items: flex-end;
}

/* bottom slideshow row */
.worksTrackBottom{
  bottom: 8vh;
  height: 34vh;
  align-items: flex-start;
}

/* Slide card sizes tuned for rows */
.workSlide{
  flex: 0 0 min(420px, 70vw);
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  position: relative;
}

/* Image: not "resizing" via 124% trick */
.workSlide img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* Center text ONLY in middle strip (not full screen overlay) */
.worksCenter{
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding: 0 18px;
  pointer-events: none;
  z-index: 5;
}

/* optional: background behind text for readability */
.worksCenter::before{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(980px, 92vw);
  height: 220px;
  border-radius: 26px;

  z-index: -1;
}

@media (max-width: 820px){
  .worksTrack{ padding: 0 6vw; gap: 14px; }
  .worksTrackTop{ top: 6vh; height: 30vh; }
  .worksTrackBottom{ bottom: 6vh; height: 30vh; }
  .workSlide{ flex-basis: 82vw; }
  .worksCenter::before{ height: 200px; }
}
/* ===== PRICING "COME TOGETHER" REVEAL ===== */
#pricing{
  overflow-x: hidden;
}

#pricing .row{
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#pricing .col-12{
  display: flex;
  justify-content: center;
}

#pricing .priceCard{
  width: 100%;
  max-width: 520px;
}

.priceCard{
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0,0,0);
  transition:
    transform 850ms cubic-bezier(.2,.9,.2,1),
    opacity 850ms ease,
    filter 850ms ease;
  will-change: transform, opacity, filter;
}

/* start hidden directions */
.priceCard.from-left  { transform: translate3d(-90px, 0, 0); }
.priceCard.from-top   { transform: translate3d(0, -90px, 0); }
.priceCard.from-right { transform: translate3d(90px, 0, 0); }

/* when pricing section is in view */
#pricing.is-in .priceCard{
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0,0,0);
}

/* optional: small stagger so it feels smooth */
#pricing.is-in .priceCard.from-left  { transition-delay: 0ms; }
#pricing.is-in .priceCard.from-top   { transition-delay: 120ms; }
#pricing.is-in .priceCard.from-right { transition-delay: 240ms; }

/* accessibility */
@media (prefers-reduced-motion: reduce){
  .priceCard{
    transition: none;
    opacity: 1;
    filter: none;
    transform: none;
  }
}
/* Mobile: cards stack, so don't slide from left/right (it looks off-center) */
@media (max-width: 767.98px){
  .priceCard.from-left,
  .priceCard.from-right{
    transform: translate3d(0, 60px, 0); /* come from bottom instead */
  }

  .priceCard.from-top{
    transform: translate3d(0, -60px, 0);
  }

  /* optional: make the card look centered with a max width */
  #pricing .priceCard{
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ===== Expandable Full Price List (Premium) ===== */
.priceListSection{
  background: #000;
  overflow: hidden;

  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    max-height 700ms cubic-bezier(.2,.8,.2,1),
    opacity 450ms ease,
    transform 450ms ease;
}

.priceListSection.is-open{
  opacity: 1;
  transform: translateY(0);
}

.priceListWrap{
  margin: 0 auto;
  max-width: 1200px;
  padding: 18px 0 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.priceListHead{
  text-align: center;
  padding-top: 14px;
}

/* --- UPDATED CARD SIZING --- */
.priceImgLink{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  height: 620px;              /* force same height */
  border-radius: 18px;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,.10);
  background: #0b0b0d;        /* unify background */
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}

/* Make images scale properly without distortion */
.priceImg{
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;        /* keeps full image visible */
  display: block;
}

/* Tag */
.priceTag{
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.90);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
}

/* subtle hover premium */
@media (hover:hover){
  .priceImgLink{
    transition: transform 250ms ease, filter 250ms ease;
  }
  .priceImgLink:hover{
    transform: translateY(-4px);
    filter: brightness(1.05);
  }
}

/* Responsive tweak */
@media (max-width: 768px){
  .priceImgLink{
    height: 420px;
  }
}



/* ===== PAGE MASK ===== */
/* ===== PAGE MASK TRANSITION ===== */
.pageMask{
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  overflow: hidden;
}

/* The thing that scales (no text inside) */
.pageMaskOverlay{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;

  background: radial-gradient(circle at center, #7c5cff 0%, #000 70%);

  will-change: transform, opacity;
  transition:
    transform 900ms cubic-bezier(.16,1,.3,1),
    opacity 500ms ease;

  /* helps reduce interpolation blur */
  transform-origin: 50% 50%;
}

/* activate overlay */
.pageMask.is-active .pageMaskOverlay{
  transform: scale(3.6);
  opacity: 1;
}

/* ===== Premium Text (NOT scaling) ===== */
.pageMaskText{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  font-family: 'Playfair Display', serif;

  /* Bigger and more balanced */
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 1000;

  letter-spacing: 0.5px; /* reduce spacing */
  text-align:center;
  color:#fff;

  opacity:0;
  transform: translateY(10px);
  transition: opacity 600ms ease 200ms,
              transform 600ms ease 200ms;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  text-shadow:
    0 0 18px rgba(255,79,216,.18),
    0 0 32px rgba(124,92,255,.18);
}

.pageMask.is-active .pageMaskText{
  opacity:1;
  transform: translateY(0);
}

.pageMaskText span{
  margin-top: 18px;

  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 400;

  letter-spacing: 3px; /* smaller */
  text-transform: uppercase;

  opacity:.75;
}
/* ===== Artist Animation ===== */
.artistCard {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.artistCard.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover */
.artistCard:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 0 25px rgba(255, 79, 216, 0.15);
}
.featureCard {
  transition: all 0.4s ease;
  background: rgba(255,255,255,0.02);
}

.featureCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(255, 79, 216, 0.15);
  border-color: rgba(255, 79, 216, 0.4);
}
/* ===== Premium Footer Strip (transparent, one-line) ===== */
.ddFooter{
  position: relative;
  padding: 18px 0;
  background: transparent;
}

.ddFooter::before{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.14),
    transparent
  );
}

.ddFooterInner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  /* keep everything in one line */
  white-space: nowrap;
}

.ddFooterBrand{
  letter-spacing: 2px;
  font-weight: 800;
  color: rgba(255,255,255,.92);
  font-size: 13px;
}

.ddFooterLinks{
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.70);
  font-size: 12px;
}

.ddFooterLink{
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: opacity .2s ease;
}

.ddFooterLink:hover{
  opacity: 1;
  color: rgba(255,255,255,.95);
}

.ddFooterDot{
  opacity: .35;
}

.ddFooterSocial{
  display: flex;
  align-items: center;
  gap: 14px;
}

.ddFooterIcon{
  color: rgba(255,255,255,.80);
  text-decoration: none;
  font-size: 14px;
  transition: transform .25s ease, opacity .25s ease;
}

.ddFooterIcon:hover{
  opacity: 1;
  transform: translateY(-2px);
  color: rgba(255,255,255,.98);
}
.ddFooterBrand{
  letter-spacing: 2px;
  font-weight: 800;
  color: rgba(255,255,255,.92);
  font-size: 13px;
}

.ddStar{
  display: inline-block;
  font-size: 11px;
  margin: 0 1px;
  transform: translateY(-1px);
  color: #fff;
}

/* Mobile: still premium, but avoid breaking layout */
@media (max-width: 768px){
  .ddFooterInner{
    gap: 12px;
    padding: 0 16px;
  }
  .ddFooterLinks{
    gap: 10px;
    font-size: 11px;
  }
  .ddFooterBrand{
    font-size: 12px;
  }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scrollTopBtn{
  position: fixed;
  right: 22px;
  bottom: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);

  background: rgba(0,0,0,.65);
  backdrop-filter: blur(12px);

  color: #fff;
  font-size: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);

  transition:
    opacity .35s ease,
    transform .35s ease,
    background .25s ease,
    box-shadow .25s ease;
}

/* visible state */
.scrollTopBtn.is-visible{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* hover (desktop only) */
@media (hover:hover){
  .scrollTopBtn:hover{
    background: linear-gradient(135deg,#ff4fd8,#7c5cff);
    color: #000;
    box-shadow: 0 0 25px rgba(255,79,216,.45);
  }
}

/* slightly smaller on small phones */
@media (max-width: 480px){
  .scrollTopBtn{
    width: 46px;
    height: 46px;
    right: 16px;
    bottom: 20px;
  }
}
