@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&display=swap');


* {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.bold{
    font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

.nav-bg{
    background-color: #000;
}
.nav-bg li a{
    color: #CCB168;
}

.nav-bg li button{
    color: #CCB168;
    cursor: pointer;
}

.hr{
    margin: 15px auto;
    width: 116px;
}


.inner-secOne{
    width: 75%;
    margin: 0 auto;
}

.inner-secOne p, h2{
    text-align: left;
}

.secOne{
    display: inline-block;
    width: 100%;
    background-color: #D9D9D9;
}

.pos {
    left: 0;
    right: 0;
    margin-top: 20px;
    position: absolute;
}

.inner-secOne h2{
    padding-top: 130px;
    font-size: 1rem;
    text-transform: uppercase;
}

.secthreeHeader{
    text-align: center;
}

.secthreeHeader h1{
    margin-top: 20px;
   
}

.secService{
    max-width: 70%;
    margin: 0 auto;
}

.box{
    border: 2px solid #757575;
    margin-top: 30px;
    border-radius: 30px;
    
}

.box h1{
    padding: 15px;
    text-align: center;
    font-size: 1.4rem;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}



.btnColor {
  color: #CCB168;
}

button{
    cursor: pointer;
}


/* ==== ORIGINAL EFFECTS  ==== */
.parallax-bg {
  background-image: url('imgs/banner.jpeg');
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: multiply;
  background-attachment: fixed;   /* desktop parallax */
  background-size: 100% 100%;     
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;             /* host overlays */
  overflow: hidden;
}

/* animated gold wave */
.parallax-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(204, 177, 104, 0.4), rgba(0, 0, 0, 0.5));
  animation: slowGlow 1.5s ease-in-out infinite alternate;
  z-index: 0;                     /* below content */
  pointer-events: none;
}

/* ensure your text/buttons stay above overlays */
.parallax-bg > * {
  position: relative;
  z-index: 1;
}

@keyframes slowGlow {
  from { opacity: 0.3; }
  to   { opacity: 0.6; }
}
@keyframes fadeInUp {
  0%   { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.aff {
  border: 1px solid #CCB168;
  padding: 15px;
  border-radius: 50%;
  color: #CCB168;
  background-color: transparent;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.aff:hover {
  color: #000;
  background-color: #CCB168;
}



@media (max-width: 723px) {
  .secthreeHeader h1 {
    text-align: center;
    margin-left: 0;
  }
    .secthreeHeader hr {
      margin-left: auto !important;
      margin-right: auto !important;
    }
}

  textarea {
    resize: none !important;
  }

:root {
      --gold: #CCB168;
    }

    .text-gold {
      color: var(--gold);
    }

    .bg-popup {
      background-color: #000000;
    }

    .border-gold {
      border-color: var(--gold);
    }

    .hover\:text-gold:hover {
      color: var(--gold);
    }

    @media (max-width: 640px) {
  #popup .relative {
    margin-top: 20px;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }
  50% {
    transform: translateY(-15px);
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}
.bounce {
  animation: bounce 1s infinite;
}



@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes pulseWord {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.pulse-word {
  animation: pulseWord 3s ease-in-out infinite;
}

.typing {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #CCB168;
  animation: typing 3.5s steps(40, end), blink 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}
@keyframes blink {
  50% { border-color: transparent }
}

.glow-hover {
  transition: text-shadow 0.3s ease, color 0.3s ease;
}
.glow-hover:hover {
  color: #CCB168;
  text-shadow: 0 0 10px #CCB168, 0 0 20px #CCB168;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s ease-out forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shake {
  0% { transform: rotate(0); }
  25% { transform: rotate(-10deg); }
  50% { transform: rotate(10deg); }
  75% { transform: rotate(-5deg); }
  100% { transform: rotate(0); }
}
.shake {
  animation: shake 1s ease-in-out infinite;
}

 @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
  }

  .fade-delay-1 {
    animation-delay: 0.3s;
  }

  .fade-delay-2 {
    animation-delay: 0.6s;
  }

  .fade-delay-3 {
    animation-delay: 0.9s;
  }

  .zoom-on-hover:hover {
    transform: scale(1.05);
    transition: transform 0.5s ease-in-out;
  }

  .text-glow {
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
  }

    @keyframes scroll-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  display: inline-flex;
  animation: scroll-marquee 30s linear infinite;
  width: max-content;
}

.gold-sweep {
  position: relative;
  display: block; /* keep block */
  word-break: break-word; /* allow breaking words */
  white-space: normal; /* allow wrapping */
  overflow-wrap: break-word; /* better word breaking */
}

.gold-sweep::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: transparent;

  background: linear-gradient(
    120deg,
    transparent 0%,
    #fff9e6 8%,
    #ffe07a 18%,
    #fcc201 30%,
    #d4af37 50%,
    #fcc201 70%,
    #ffe07a 82%,
    transparent 100%
  );
  background-size: 300% 100%;
  background-clip: text;
  -webkit-background-clip: text;

  animation: sweep 4s linear infinite;

  white-space: normal; /* allow wrapping */
  word-break: break-word;
  overflow-wrap: break-word;
}


@keyframes sweep {
  0%   { background-position-x: 200%; }
  100% { background-position-x: -200%; }
}

.shimmer-gem {
  animation: shimmerMove 4s linear infinite;
  filter: drop-shadow(0 0 5px #FFD700);
}

@keyframes shimmerMove {
  0% {
    filter: drop-shadow(0 0 5px #FFD700);
    transform: translateY(0) scale(1);
  }
  50% {
    filter: drop-shadow(0 0 15px #FFD700);
    transform: translateY(-5px) scale(1.1);
  }
  100% {
    filter: drop-shadow(0 0 5px #FFD700);
    transform: translateY(0) scale(1);
  }
}


@media (min-width: 640px) {
  .cards-triptych {
    --side: 10.5rem;
    --center: 13rem;
  }
}

@media (min-width: 768px) {
  .cards-triptych {
    --side: 12rem;
    --center: 15rem;
  }
}

.cards-triptych .card {
  width: var(--side);
  aspect-ratio: 3/4;
}

.cards-triptych .card--center {
  width: var(--center);
  aspect-ratio: 3/4;
}

.card, .card--center {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
}


.parallax-hero{
  background-image:
    linear-gradient(0deg, rgba(0,0,0,0.68), rgba(0,0,0,0.68)),
    radial-gradient(120% 120% at 50% -10%, rgba(204,177,104,0.18) 0%, rgba(0,0,0,0) 60%),
    url('imgs/gem.jpg');
  background-size: cover, cover, cover;
  background-position: center, center, center;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0) }
  50%      { transform: translateY(-6px) }
}
.animate-float-slow { animation: float-slow 6s ease-in-out infinite }


@media (max-width: 480px) {
  .cards-triptych .card {
    width: 6.5rem;   /* ~104px */
  }
  .cards-triptych .card--center {
    width: 8rem;     /* ~128px */
  }
}


:root { --gold:#CCB168; --ink:#000; --paper:#0b0b0b; }
  .gold-text { color: var(--gold); }
  .gold-ring { box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 50%, transparent); }
  .glass { background: color-mix(in srgb, white 6%, transparent); backdrop-filter: blur(8px); }
  .glass-strong { background: color-mix(in srgb, white 10%, transparent); backdrop-filter: blur(10px); }
  .gold-underline { height:3px; width:96px; margin-top:.75rem; border-radius:9999px;
    background: linear-gradient(90deg,#EADDA6 0%, var(--gold) 50%, #EADDA6 100%); }
  .section-wrap { background: radial-gradient(120% 120% at 50% -10%, rgba(204,177,104,.14) 0%, rgba(0,0,0,0) 60%), var(--ink); border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent); border-radius: 1.25rem; }
  .title { color:#fff; letter-spacing:.02em; }
  .desc { color:rgba(255,255,255,.92); }
  .tab-btn { color:#fff; border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); border-radius:9999px; padding:.55rem 1rem; font-size:.9rem; transition: all .2s ease; white-space:nowrap; }
  .tab-btn:hover { border-color: color-mix(in srgb, var(--gold) 50%, rgba(255,255,255,.12)); background: rgba(255,255,255,.08); }
  .tab-btn.is-active { color:#111; background: var(--gold); border-color: var(--gold); }
  .thumbs-wrap { position:relative; }
  .nav-arrow { position:absolute; top:50%; transform:translateY(-50%); z-index:20; border-radius:9999px; background:#000; color:var(--gold);
    border:1px solid color-mix(in srgb, var(--gold) 40%, transparent); padding:.4rem .6rem; cursor:pointer; }
  .nav-arrow:hover { border-color: var(--gold); }
  .nav-left { left:.5rem; }
  .nav-right { right:.5rem; }
  .card { border:1px solid rgba(255,255,255,.12); }
  .img-polish { border-radius:.75rem; box-shadow: 0 6px 18px rgba(0,0,0,.5); outline:1px solid rgba(255,255,255,.12); object-fit:cover; }


  /* Gold token */
:root {
  --gold: #CBB168;            /* primary gold */
  --gold-soft: rgba(203,177,104,.28);
  --gold-glow: rgba(203,177,104,.35);
}

/* Base premium card */
.card-premium,
.card-premium--center {
  position: relative;
  border-radius: 1rem;                 /* matches rounded-xl/2xl */
  overflow: hidden;
  background: #0b0b0b;                 /* deep neutral behind images */
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  transform: translateZ(0);            /* GPU hint */
  transition: transform .45s ease, box-shadow .45s ease, filter .45s ease;
}

/* Gold border (clean) */
.card-premium::before,
.card-premium--center::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 2px var(--gold);    /* crisp gold edge */
  pointer-events: none;
}

/* Soft outer gold glow */
.card-premium::after,
.card-premium--center::after {
  content: "";
  position: absolute; inset: -14%;
  background: radial-gradient(60% 50% at 50% 10%, var(--gold-soft) 0%, transparent 70%);
  opacity: .0; filter: blur(26px);
  transition: opacity .45s ease;
  pointer-events: none;
}

/* Image polish */
.card-premium img,
.card-premium--center img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s ease, filter .6s ease;
}

/* Hover / focus: subtle lift + glow */
.card-premium:is(:hover, :focus-visible) {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}
.card-premium:is(:hover, :focus-visible)::after { opacity: .4; }
.card-premium:is(:hover, :focus-visible) img { transform: scale(1.06); filter: contrast(1.04) saturate(1.02); }

/* Center card: slightly more presence */
.card-premium--center {
  border-radius: 1.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.card-premium--center::before { box-shadow: inset 0 0 0 3px var(--gold); }
.card-premium--center::after  { opacity: .08; }
.card-premium--center:is(:hover, :focus-visible) {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(0,0,0,.42);
}
.card-premium--center:is(:hover, :focus-visible)::after { opacity: .55; }
.card-premium--center:is(:hover, :focus-visible) img { transform: scale(1.07); }

/* Gentle floating idle animation (center only) */
@keyframes floatSlow {
  0%   { transform: translateY(0) }
  50%  { transform: translateY(-4px) }
  100% { transform: translateY(0) }
}
.card-premium--center[data-float="on"] { animation: floatSlow 6s ease-in-out infinite; }

/* Sheen sweep on hover (premium touch) */
.card-premium--center .sheen {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.06) 45%, rgba(255,255,255,.18) 50%, rgba(255,255,255,.06) 55%, transparent 100%);
  transform: translateX(-120%) skewX(-12deg);
  transition: transform .9s ease;
  pointer-events: none;
  mix-blend-mode: screen;
}
.card-premium--center:is(:hover, :focus-visible) .sheen { transform: translateX(120%) skewX(-12deg); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .card-premium, .card-premium--center { transition: none; }
  .card-premium--center[data-float="on"] { animation: none; }
}

@media (max-width: 640px) {
  .mobile-section {
    min-height: 300px; /* adjust as needed */
  }
}

/* Typing effect */
.typing {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;

  /* If you previously had border-right to simulate cursor */
  border-right: none !important; 

  animation: typing 3s steps(30, end) forwards;
}

/* Remove any pseudo-element cursor */
.typing::after {
  content: none !important;   /* no "|" */
  animation: none !important; /* stop blinking */
}

/* Example typing keyframes */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* Shared pagination container */
.section-wrap .swiper-pagination{
  position: relative;
  z-index: 10;
  padding: .5rem 0 .25rem;
}


/* Bullet base (gold, rounded, subtle sheen) */
.section-wrap .swiper-pagination-bullet{
  width: 10px; height: 10px;
  border-radius: 9999px;
  border: 1px solid #CBB168;
  background: linear-gradient(135deg, #BFA454 0%, #D9C286 50%, #CBB168 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  opacity: .55;

  box-shadow:
    0 1px 2px rgba(0,0,0,.25),
    inset 0 -1px 2px rgba(255,255,255,.25);
  transition:
    transform .35s ease,
    opacity .25s ease,
    background-position .6s ease,
    box-shadow .35s ease;
  margin: 0 6px !important; /* comfy spacing between dots */
}

/* Hover / focus: gentle lift + sheen sweep */
.section-wrap .swiper-pagination-bullet:hover,
.section-wrap .swiper-pagination-bullet:focus-visible{
  transform: translateY(-1px) scale(1.12);
  opacity: .9;
  background-position: 100% 50%;
  outline: none;
}

/* Active: larger, brighter, soft glow pulse */
.section-wrap .swiper-pagination-bullet-active{
  transform: scale(1.28);
  opacity: 1;
  background:
    radial-gradient(circle at 50% 45%, #EADDA6 0%, #D9C286 45%, #CBB168 75%, #8F7A3D 100%);
  box-shadow:
    0 0 0 3px rgba(203,177,104,.18),
    0 8px 18px rgba(0,0,0,.28),
    inset 0 0 10px rgba(255,255,255,.25);
  animation: goldPulse 2.4s ease-in-out infinite;
}

/* Smooth, subtle pulse */
@keyframes goldPulse{
  0%,100%{
    box-shadow:
      0 0 0 3px rgba(203,177,104,.18),
      0 8px 18px rgba(0,0,0,.28),
      inset 0 0 10px rgba(255,255,255,.25);
  }
  50%{
    box-shadow:
      0 0 0 5px rgba(203,177,104,.12),
      0 10px 22px rgba(0,0,0,.32),
      inset 0 0 14px rgba(255,255,255,.28);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .section-wrap .swiper-pagination-bullet{ transition: none; }
  .section-wrap .swiper-pagination-bullet-active{ animation: none; }
}


  .ttext{ @apply text-black leading-relaxed; }
  .tname{ @apply mt-4 font-semibold text-black text-right; }
  .tstars{ color:#CBB168; font-size:1.1rem; }

  /* Slides are full width; we render a 6-card grid inside each */
  .slide { min-width: 100%; padding: 0.25rem; }

  /* Animated pagination “pills” */
  .dot {
    width: 8px; height: 8px; border-radius: 9999px;
    background: #d1d5db; /* gray-300 */
    box-shadow: 0 0 0 0 rgba(203,177,104,0.0);
    transition: all .35s cubic-bezier(.22,.61,.36,1);
  }
  .dot.active {
    width: 28px;
    background: linear-gradient(90deg, #1a1a1a, #CBB168, #1a1a1a);
    box-shadow: 0 0 0 4px rgba(203,177,104,0.15);
  }

   /* Card: premium black/gold vibe */
  .tc{
    position: relative;
    border-radius: 1.25rem;          /* rounded-2xl */
    padding: 1.25rem;                /* p-5 */
    background: #fff;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    /* gold ring with layered border */
    border: 1px solid transparent;
    background-image:
      linear-gradient(#fff, #fff),
      linear-gradient(135deg, rgba(203,177,104,.55), rgba(203,177,104,.15) 35%, rgba(0,0,0,0) 65%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    min-height: 190px;
    transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s cubic-bezier(.22,.61,.36,1);
    overflow: hidden;
  }
  .tc:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 46px rgba(0,0,0,.12);
  }
  /* soft sheen */
  .tc::after{
    content:"";
    position:absolute; inset:0;
    background: radial-gradient(70% 50% at 100% 0%, rgba(203,177,104,.12) 0%, rgba(0,0,0,0) 60%);
    pointer-events:none;
    mix-blend: normal;
  }

  .ttext{ color:#0f0f0f; line-height:1.7; }
  .tname{ margin-top:.5rem; font-weight:600; color:#111; text-align:right; }
  .tstars{ color:#CBB168; font-size:1.05rem; }

  /* Slides are full width; we render a 6-card grid inside each */
  .slide { min-width: 100%; padding: .25rem; }

  /* Grid spacing (more room) */
  .tgrid{ display:grid; gap: 2rem; }              /* gap-8 */
  @media (min-width:640px){ .tgrid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
  @media (min-width:1024px){ .tgrid{ grid-template-columns: repeat(3, minmax(0,1fr)); } }

  /* Pagination “pills” */
  .dot {
    width: 9px; height: 9px; border-radius: 9999px;
    background: #d1d5db; /* gray-300 */
    box-shadow: 0 0 0 0 rgba(203,177,104,0.0);
    transition: all .35s cubic-bezier(.22,.61,.36,1);
  }
  .dot.active {
    width: 30px;
    background: linear-gradient(90deg, #111, #CBB168, #111);
    box-shadow: 0 0 0 5px rgba(203,177,104,0.14);
  }

  /* Respect reduced motion */
  @media (prefers-reduced-motion: reduce){
    .dot{ transition:none }
    .tc{ transition:none }
  }

    /* Optional but nice: grab cursor and disable text selection while dragging */
  #testimonial-track { cursor: grab; }
  #testimonial-track.dragging { cursor: grabbing; }
  #testimonial-track, #testimonial-track * { user-select: none; -webkit-user-drag: none; }

/* Card shell: subtle gradient border + glassy lift */
.tc {
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.02)) padding-box,
    linear-gradient(135deg, rgba(203,177,104,.35), rgba(0,0,0,.15)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 10px 30px rgba(0,0,0,.06),
    inset 0 1px 0 rgba(255,255,255,.6);
  padding: 1.25rem; /* base; JS upgrades to responsive spacing */
  display: flex; flex-direction: column; justify-content: space-between; height: 100%;
}

/* Large open-quote accent */
.tc::before{
  content:"";
  position:absolute; inset:auto auto 12px 12px; width:42px; height:42px; opacity:.08;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23000"><path d="M7 11h3v3H7v-3Zm0-6h5v5H7V5Zm7 6h3v3h-3v-3Zm0-6h5v5h-5V5Z"/></svg>') no-repeat center/contain;
}

/* Review text + footer */
.ttext{ color:#0a0a0a; line-height:1.7; font-size:1rem; }
.tname{ margin-top:.5rem; color:#0a0a0a; font-weight:700; }

/* Initials avatar (first letter) */
.initial-badge{
  width: 40px; height: 40px; flex:none; display:grid; place-items:center;
  border-radius:9999px;
  color:#111; font-weight:800;
  background: radial-gradient(120% 120% at 30% 20%, #fff 0%, #f6f6f6 60%, #ececec 100%);
  box-shadow: inset 0 0 0 2px rgba(203,177,104,.55), 0 6px 16px rgba(0,0,0,.06);
}

/* Gold stars (SVG) */
.tstars{ line-height:0; }
.tstars svg{ width:18px; height:18px; }

.slide { min-width:100%; padding: .25rem; }

/* Grid inside each slide: 3 top + 3 bottom on lg, spaced out */
.tgrid{ display:grid; gap:1.25rem; grid-template-columns: 1fr; }
@media (min-width:640px){ .tgrid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width:1024px){ .tgrid{ grid-template-columns: repeat(3, minmax(0,1fr)); } }

/* Dots: animated black→gold pill */
.dot{
  width:10px; height:10px; border-radius:9999px; background:#d1d5db; position:relative;
  transition:all .35s cubic-bezier(.22,.61,.36,1);
  box-shadow:0 0 0 0 rgba(203,177,104,0);
}
.dot.active{
  width:30px; background:linear-gradient(90deg,#111,#CBB168,#111);
  box-shadow:0 0 0 6px rgba(203,177,104,.14);
}
#testimonial-track.dragging{ cursor:grabbing; }

/* --- Premium card look --- */
.premium-card{
  position:relative;
  border-radius:1.25rem; /* ~rounded-xl */
  background:linear-gradient(180deg,#fff, #fafafa);
  box-shadow:0 10px 30px rgba(0,0,0,.08), inset 0 0 0 1px rgba(0,0,0,.06);
  transition:transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s, filter .5s;
  will-change: transform, box-shadow, filter;
  overflow:hidden;
}
.premium-card::before{
  /* gold edge glow */
  content:"";
  position:absolute; inset:-1px;
  border-radius:inherit;
  background:linear-gradient(120deg, rgba(203,177,104,.35), transparent 30%, transparent 70%, rgba(203,177,104,.35));
  pointer-events:none;
  mix-blend:normal;
  opacity:.7;
}
.premium-card::after{
  /* animated sheen */
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,.25) 30%, transparent 60%);
  transform:translateX(-120%);
  transition:transform 1.2s cubic-bezier(.22,.61,.36,1);
  opacity:.0; pointer-events:none;
}
.premium-card:hover{
  transform:translateY(-6px) scale(1.01);
  box-shadow:0 16px 40px rgba(0,0,0,.12);
  filter:saturate(1.02);
}
.premium-card:hover::after{ opacity:1; transform:translateX(120%); }

/* content spacing */
.premium-body{ padding:1.25rem; }      /* p-5 */
@media (min-width:640px){ .premium-body{ padding:1.5rem; } } /* sm:p-6 */

/* Stars – gold + subtle breathe */
.tstars{
  
  color:#CBB168; font-size:1.1rem; line-height:1;
  animation:starPulse 2.2s ease-in-out infinite;
}
@keyframes starPulse{
  0%,100%{ transform:translateY(0) scale(1); filter:drop-shadow(0 0 0 rgba(203,177,104,0)); }
  50%{ transform:translateY(-1px) scale(1.02); filter:drop-shadow(0 2px 6px rgba(203,177,104,.35)); }
}

/* In-view reveal (staggered) */
.reveal{
  opacity:0; transform:translateY(16px) scale(.98);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.in-view{
  opacity:1; transform:translateY(0) scale(1);
}

/* Dragging hint (when you add drag later) */
#testimonial-track.dragging{ cursor:grabbing; }

/* Premium pagination dots */
.dot{
  width:8px; height:8px; border-radius:9999px;
  background:#d1d5db; box-shadow:0 0 0 0 rgba(203,177,104,0);
  transition:all .35s cubic-bezier(.22,.61,.36,1);
}
.dot.active{
  width:28px;
  background:linear-gradient(90deg,#111,#CBB168,#111);
  box-shadow:0 0 0 4px rgba(203,177,104,.15);
}

/* Optional: card gold border on hover focus */
.premium-card:focus-within{ outline:none; box-shadow:0 0 0 2px rgba(203,177,104,.55), 0 16px 40px rgba(0,0,0,.12); }

/* Premium testimonial card */
.premium-card{
  position: relative;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(203,177,104,.35);
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
  overflow: hidden;
}

/* ✨ Auto shine sweep */
.premium-card::after{
  content:"";
  position:absolute;
  inset:-30% -80%;
  pointer-events:none;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 20%,
    rgba(255,255,255,0.7) 50%,
    rgba(255,255,255,0) 80%
  );
  transform: translateX(-120%) rotate(15deg);
  animation: shineSweep 3s ease-in-out infinite;
  mix-blend-mode: screen;
  opacity: 1;
}

/* Stronger, slower shine */
@keyframes shineSweep {
  0%   { transform: translateX(-120%) rotate(15deg); opacity: 0; }
  20%  { opacity: 1; }
  50%  { transform: translateX(120%) rotate(15deg); opacity: 1; }
  70%  { opacity: 0; }
  100% { transform: translateX(120%) rotate(15deg); opacity: 0; }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .premium-card::after { animation: none; opacity: 0; }
}

/* Scope everything to the footer for safety */
.footer-premium {
  --gold: #CBB168;
  --gold-soft: rgba(203, 177, 104, 0.18);
  --white-70: rgba(255,255,255,.7);
}

/* Gentle reveal on columns */
.footer-premium .ft-col {
  opacity: 0;
  transform: translateY(10px);
  animation: ftFadeUp .6s cubic-bezier(.22,.61,.36,1) forwards;
}
.footer-premium .ft-col:nth-child(1){ animation-delay: .05s; }
.footer-premium .ft-col:nth-child(2){ animation-delay: .15s; }
.footer-premium .ft-col:nth-child(3){ animation-delay: .25s; }

@keyframes ftFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Phone number: subtle glow on hover */
.footer-premium .phone-cta {
  transition: color .3s ease, text-shadow .3s ease, transform .3s ease;
}
.footer-premium .phone-cta:hover {
  color: var(--gold);
  text-shadow: 0 0 14px var(--gold-soft);
  transform: translateY(-1px);
}

/* Email underline grows from left */
.footer-premium .link-underline {
  position: relative;
  transition: color .25s ease;
}
.footer-premium .link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%; height: 2px;
  background: var(--gold);
  transition: width .28s cubic-bezier(.22,.61,.36,1);
}
.footer-premium .link-underline:hover { color: var(--gold); }
.footer-premium .link-underline:hover::after { width: 100%; }

/* Services links: clean slide + color (no dot) */
.footer-premium .svc-link {
  position: relative;
  transition: color .25s ease, transform .25s ease;
}

.footer-premium .svc-link:hover {
  color: var(--gold);
  transform: translateX(2px);
}

/* Social chip: ring + sheen on hover */
.footer-premium .social-chip {
  padding: .5rem .75rem;
  border-radius: .75rem;
  border: 1px solid rgba(255,255,255,.08);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
  position: relative;
  overflow: hidden;
}
.footer-premium .social-chip:hover {
  border-color: color-mix(in oklab, var(--gold) 35%, #000);
  background: rgba(255,255,255,.04);
  transform: translateY(-1px);
}
/* sheen sweep */
.footer-premium .social-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.12) 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
}
.footer-premium .social-chip:hover::after {
  transform: translateX(120%);
}

:root {
  --pc-gold: #CCB168;
  --pc-black: #000;
  --pc-speed: 700ms;
 --pc-height: 800px;
}

.premium-carousel {
  position: relative;
  width: 100%;
  height: var(--pc-height);
  background: var(--pc-black);
  overflow: hidden;
}

.pcarousel-viewport {
  position: relative;
  width: 100%;
  height: 100%;
}

.pc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--pc-speed) ease-in-out;
  background-size: cover;       /* fill section, no black bars */
  background-position: center;  /* keep focus centered */
  background-repeat: no-repeat;
}

.pc-slide.is-active {
  opacity: 1;
}

.pc-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

/* Overlay text */
.pcarousel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--pc-gold);
  padding: 1rem;
  z-index: 5;
  pointer-events: none;
}

.pc-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-shadow: 0 0 12px rgba(204,177,104,0.4);
}

.pc-subtitle {
  margin-top: 0.5rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-transform: uppercase;
  opacity: 0.9;
}

.pc-body {
  max-width: 60ch;
  margin-top: 1rem;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: rgba(255, 240, 210, 0.9);
}

/* Dots on top of images */
.pc-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 6;
}

.pc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(204,177,104,0.5);
  border: 1px solid var(--pc-gold);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.pc-dot.is-active {
  background: var(--pc-gold);
  transform: scale(1.2);
}

.testimonials-wide {
  max-width: 1800px; /* or whatever you want */
}

 /* Ken Burns (slow zoom on the whole slide area) */
  .kenburns {
    animation: kenburnsZoom 18s ease-in-out infinite alternate;
    will-change: transform;
  }
  @keyframes kenburnsZoom {
    0%   { transform: scale(1.03); }
    100% { transform: scale(1.08); }
  }

  /* Title gold shimmer (subtle) */
  .gold-shine {
    position: relative;
    display: inline-block;
    color: var(--pc-gold);
    text-shadow: 0 0 12px rgba(204,177,104,.35);
    overflow: hidden;
  }
  .gold-shine::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.28) 18%, rgba(255,240,200,.55) 35%, transparent 52%);
    transform: translateX(-120%);
    animation: goldSweep 3.8s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: screen;
  }
  @keyframes goldSweep {
    0%   { transform: translateX(-120%); }
    60%  { transform: translateX(120%); }
    100% { transform: translateX(120%); }
  }

  /* Subtitle soft float */
  .float-soft {
    animation: floatSoft 5.5s ease-in-out infinite;
  }
  @keyframes floatSoft {
    0%,100% { transform: translateY(0);   }
    50%     { transform: translateY(-6px); }
  }

  /* Dots pop-in */
  .pc-dots .pc-dot {
    transform: scale(.9);
    opacity: .85;
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
  }
  .pc-dots .pc-dot.is-active {
    transform: scale(1.15);
    opacity: 1;
    box-shadow: 0 0 10px rgba(204,177,104,.45);
  }

    /* Center on mobile only */
  .about-mobile-center { text-align: center; }
  .about-mobile-center .align-mobile { margin-left: auto; margin-right: auto; }

  /* From 640px and up, revert to left */
  @media (min-width: 640px) {
    .about-mobile-center { text-align: left; }
    .about-mobile-center .align-mobile { margin-left: 0; margin-right: 0; }
  }

   /* Center paragraphs only on mobile */
  @media (max-width: 639.98px){
    .align-mobile{
      text-align: center !important;
      display: block;
      margin-left: auto !important;
      margin-right: auto !important;
    }
  }
  /* Revert on sm and up */
  @media (min-width: 640px){
    .align-mobile{
      text-align: left !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
    }
  }
  
    @media (max-width: 639.98px){
    .center-mobile{ text-align:center !important; margin-left:auto !important; margin-right:auto !important; }
  }
  @media (min-width: 640px){
    .center-mobile{ text-align:left !important; margin-left:0 !important; margin-right:0 !important; }
  }

    .timeline-center{
    position:absolute; top:-3rem; bottom:-3rem; left:50%;
    transform:translateX(-50%); width:3px; background:#CCB168;
    pointer-events:none; z-index:30;
  }
  @media (min-width:640px){ .timeline-center{ top:-4rem; bottom:-4rem; } }

  #contact-premium{
    position:relative;
    background: radial-gradient(120% 120% at 50% -10%, rgba(204,177,104,.10) 0%, transparent 60%) var(--black);
  }

  /* Cards */
  .card-dark{
    background: var(--ink);
    border:1px solid color-mix(in oklab, var(--gold) 25%, transparent);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
  }
  .card-light{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
  }

  /* Headings + accents */
  .gold-bar{ width:68px; height:3px; background:var(--gold); border-radius:999px; }
  .eyebrow{ letter-spacing:.35em; text-transform:uppercase; font-size:.7rem; color:rgba(255,255,255,.6); }

  /* Icon chips */
  .chip{
    width:44px; height:44px; border-radius:999px;
    display:inline-flex; align-items:center; justify-content:center;
    color:var(--gold); background: color-mix(in oklab, var(--gold) 15%, transparent);
  }

  /* Hours list */
  .hours dt{ color:rgba(255,255,255,.6); }
  .hours dd{ text-align:right; color:rgba(255,255,255,.9); }

  /* Floating label tweaks for premium feel */
  .form-floating > .form-control, 
  .form-floating > .form-select{
    border-radius:14px;
    border:1px solid rgba(0,0,0,.12);
    padding-left:1rem; padding-right:1rem;
  }
  .form-floating > label{
    color:rgba(0,0,0,.55);
  }
  .form-control:focus{
    border-color: var(--gold);
    box-shadow: 0 0 0 .2rem rgba(204,177,104,.25);
  }

  /* Button */
  .btn-gold{
    background:#000; color:var(--gold); border-radius:14px; padding:.9rem 1rem; font-weight:700;
    transition: all .2s ease;
  }
  .btn-gold:hover{ background:var(--gold); color:#000; }

  /* Fine details */
  .link-gold{ color:var(--gold); text-decoration:none; }
  .link-gold:hover{ opacity:.9; }

  /* Mobile spacing polish */
  @media (max-width: 575.98px){
    .stack-md > * + *{ margin-top:1rem; }
  }

  
#contact-premium.contact-section{
  position:relative;
  padding:4rem 1.5rem 6rem;
  color:var(--white);
  background:var(--black);
  overflow:hidden;
}
#contact-premium.contact-section::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(120% 120% at 50% -10%, rgba(204,177,104,.12) 0%, transparent 60%);
  z-index:-1;
}

/* Container & header */
.contact-container{max-width:1200px;margin:0 auto;}
.contact-header{margin-bottom:2.5rem;}
.contact-eyebrow{letter-spacing:.35em;text-transform:uppercase;font-size:.78rem;opacity:.6}
.contact-title{margin:.5rem 0 0;font-size:clamp(1.75rem,2.5vw,2.5rem);font-weight:800}
.hr-gold{display:block;width:64px;height:3px;border-radius:2px;background:var(--gold);margin-top:1rem}

/* Grid */
.contact-grid{display:grid;grid-template-columns:1fr;gap:2rem}
@media (min-width:768px){ .contact-grid{grid-template-columns:1fr 1fr;gap:2.5rem} }

/* Cards */
.card{border-radius:18px;box-shadow:0 18px 40px rgba(0,0,0,.35);border:1px solid rgba(0,0,0,.15)}
.card--dark{background:var(--ink);border-color:color-mix(in oklab, var(--gold) 25%, transparent)}
.card--light{background:var(--white);color:#0a0a0a;border-color:rgba(0,0,0,.1)}

/* Info list */
.info-block{margin-top:2rem;display:grid;gap:1.25rem}
.info-item{display:flex;gap:14px;align-items:flex-start}
.info-ico{width:40px;height:40px;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;
  color:var(--gold);background:rgba(204,177,104,.12)}
.info-label{font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;opacity:.6}
.info-link{color:var(--gold);font-size:.92rem;text-underline-offset:3px}

/* Hours table */
.hours{margin-top:2rem;border:1px solid color-mix(in oklab, var(--gold) 20%, transparent);border-radius:14px;overflow:hidden}
.hours-head{display:flex;gap:10px;align-items:center;padding:14px 18px;border-bottom:1px solid color-mix(in oklab, var(--gold) 15%, transparent)}
.hours-grid{display:grid;grid-template-columns:auto 1fr;gap:.5rem 1rem;padding:14px 18px;font-size:.94rem}
.hours-grid dt{opacity:.65}
.hours-grid dd{text-align:right}

/* Form */
.form-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}
.badge{display:inline-flex;align-items:center;border-radius:999px;padding:.35rem .6rem;font-size:.7rem;font-weight:700;background:var(--gold);color:#000}

.form-grid{display:grid;grid-template-columns:1fr;gap:1rem;margin-top:1.25rem}
@media (min-width:640px){ .form-grid{grid-template-columns:1fr 1fr} }

.field{position:relative}
.input, .textarea{
  width:100%;padding:12px 14px;border-radius:12px;border:1px solid rgba(0,0,0,.12);
  background:transparent;font-size:.98rem;transition:border .2s, box-shadow .2s, background .2s;
}
.textarea{min-height:140px;resize:none}
.input:focus, .textarea:focus{outline:none;border-color:var(--gold);box-shadow:0 0 0 .15rem rgba(204,177,104,.35);background:#fff}
.label{
  position:absolute;left:14px;top:10px;padding:0 6px;background:#fff;color:#555;
  transition:all .18s ease;font-size:.95rem;pointer-events:none;
}
.input::placeholder, .textarea::placeholder{color:transparent}
.input:placeholder-shown + .label,
.textarea:placeholder-shown + .label{top:10px;font-size:.95rem;color:#666}
.input:not(:placeholder-shown) + .label,
.input:focus + .label,
.textarea:not(:placeholder-shown) + .label,
.textarea:focus + .label{top:-10px;font-size:.72rem;color:#000}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  width:100%;padding:12px 16px;border-radius:12px;font-weight:700;
  background:#000;color:var(--gold);border:1px solid #000;transition:all .2s ease;
}
.btn:hover{background:var(--gold);color:#000;border-color:var(--gold)}

/* Toast */
.toast{display:none;margin-top:1rem;padding:12px 14px;border-radius:12px;
  border:1px solid color-mix(in oklab, var(--gold) 30%, transparent);
  background:color-mix(in oklab, var(--gold) 20%, transparent);color:#222}
.toast.show{display:block}

  /* Base: stacked (mobile & tablets, <=1024px) */
  #aboutSec {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  #aboutSec .about-text,
  #aboutSec .about-images {
    min-width: 0 !important;
    width: 100% !important;
    order: 0 !important; /* default flow */
    flex: 0 1 auto !important;
  }

  /* >=1025px: side-by-side, text right (order 2) / images left (order 1) */
  @media (min-width: 1025px) {
    #aboutSec {
      flex-direction: row !important;
      gap: 2.5rem !important;
    }
    #aboutSec .about-text {
      order: 2 !important;
      flex: 0 0 60% !important;   /* 60% */
      align-items: center !important;
      display: flex !important;
    }
    #aboutSec .about-images {
      order: 1 !important;
      flex: 0 0 40% !important;   /* 40% */
      justify-content: center !important;
      display: flex !important;
    }
  }

  /* >=1900px: widen text to 65%, images 35% */
  @media (min-width: 1900px) {
    #aboutSec .about-text  { flex: 0 0 65% !important; }
    #aboutSec .about-images{ flex: 0 0 35% !important; }
  }



#popup::-webkit-scrollbar,
#popupContent::-webkit-scrollbar {
  display: none;              /* Chrome, Safari */
}

/* Laptops (~1024px–1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
  #popupContent {
    max-height: 75vh !important;   /* shorter so it never overflows */
    overflow-y: auto !important;   /* still scroll inside */
  }
}

/* Larger laptops / small desktops (~1440px–1899px) */
@media (min-width: 1440px) and (max-width: 1899px) {
  #popupContent {
    max-height: 80vh !important;
  }
}

/* Ultra-wide (1900px+) */
@media (min-width: 1900px) {
  #popupContent {
    max-height: 85vh !important;   /* restore more breathing room */
  }
}

/* Only target the popup's inner scroll */
#popupContent {
  scrollbar-width: thin;               /* Firefox */
  scrollbar-color: #CCB168 #000;       /* thumb = gold, track = black */
}

/* Chrome, Edge, Safari */
#popupContent::-webkit-scrollbar {
  width: 10px;                         /* width of scrollbar */
}

#popupContent::-webkit-scrollbar-track {
  background: #000;                    /* black track */
  border-radius: 8px;
}

#popupContent::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #CCB168, #b89a4e);
  border-radius: 8px;
  border: 2px solid #000;              /* black border around thumb */
}

#popupContent::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #e6c65f, #ccae52); /* brighter gold on hover */
}

/* Base (desktops) */
.hero-bg{
  position:absolute;
  top:-40vh; bottom:-40vh;   /* vertical overscan */
  left:-12vw; right:-12vw;   /* horizontal overscan */
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  background-color:#000;
  z-index:-1;
  will-change:transform;
  transform:translateZ(0);
}

/* Mobile & tablets ≤1024: keep parallax, just add overscan */
@media (max-width:1024px){
  .hero-bg{
    top:-35vh; bottom:-35vh;   /* a bit more vertical room */
    left:-10vw; right:-10vw;   /* extra horizontal room */
  }
}

/* Laptops ~1025–1439: more overscan to avoid edges */
@media (min-width:1025px) and (max-width:1439px){
  .hero-bg{
    top:-60vh; bottom:-60vh;
    left:-18vw; right:-18vw;
  }
}

/* 1440–1899: medium overscan */
@media (min-width:1440px) and (max-width:1899px){
  .hero-bg{
    top:-50vh; bottom:-50vh;
    left:-14vw; right:-14vw;
  }
}

/* Optional: accessibility — honor reduced motion */
@media (prefers-reduced-motion: reduce){
  .rellax.hero-bg{ transform:none !important; }
}



/* Mobile fix (keep same size, prevent white strip) */
@media (max-width: 767px) {
  .parallax-bg {
    background-image: url('imgs/banner.jpeg'); /* same image */
    background-size: auto 105%;     /* 🔑 still height-based, but a bit oversized */
    background-position: center 15%;/* keep your focus area */
    min-height: 55svh;              /* same hero height */
    background-repeat: no-repeat;
  }
}

/* Laptops and larger: only content height + padding */
@media (min-width: 768px) {
  .parallax-bg {
    min-height: auto;   /* let it size naturally */
    height: auto;
  }
}

/* Base portrait card */
.hero-portrait {
  position: relative;
  width: min(68vw, 360px);
  margin-inline: auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  transition: transform .28s ease, box-shadow .28s ease;
  will-change: transform;
  cursor: pointer; /* makes it feel clickable */
}

/* Image underlay */
.hero-portrait__img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #000;
  transition: transform .35s ease, filter .35s ease;
}

/* Overlay that fills the card */
.hero-portrait__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none; /* let inner content receive events */
}

/* Inner clickable area (title + btn) */
.hero-portrait__inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  gap: .5rem;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.62) 100%),
    radial-gradient(120% 120% at 50% 10%, rgba(203,177,104,0.22) 0%, rgba(0,0,0,0) 70%);
  transition: background .35s ease;
}

/* Active state → anywhere inside hero-portrait */
.hero-portrait:hover .hero-portrait__inner {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.68) 100%),
    radial-gradient(120% 120% at 50% 10%, rgba(203,177,104,0.26) 0%, rgba(0,0,0,0) 70%);
}
.hero-portrait:hover .hero-portrait__img {
  transform: scale(1.02);
}

/* Service title */
.hero-portrait__title {
  color: #CBB168;
  font-weight: 900;
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #000;
  paint-order: stroke fill;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.85), 0 0 10px rgba(203,177,104,0.5);
  margin: 0 0 .45rem 0;
}

/* Button */
.btn-gold {
  pointer-events: auto;
  padding: .5rem 1rem;
  border-radius: 8px;
  background: rgba(203,177,104,0.18);
  border: 1px solid rgba(203,177,104,0.55);
  color: #CBB168;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .5px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.hero-portrait:hover .btn-gold,
.btn-gold:hover {
  transform: translateY(-2px) scale(1.03);
  background: rgba(203,177,104,0.28);
  color: #fff;
  border-color: rgba(203,177,104,0.85);
  box-shadow: 0 0 22px rgba(203,177,104,0.55), inset 0 0 10px rgba(255,255,255,0.12);
}

/* Active state → anywhere inside section */
.section-wrap:hover .hero-portrait__inner {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.68) 100%),
    radial-gradient(120% 120% at 50% 10%, rgba(203,177,104,0.26) 0%, rgba(0,0,0,0) 70%);
}
.section-wrap:hover .hero-portrait__img {
  transform: scale(1.02);
}
.section-wrap:hover .btn-gold {
  transform: translateY(-2px) scale(1.03);
  background: rgba(203,177,104,0.28);
  color: #fff;
  border-color: rgba(203,177,104,0.85);
  box-shadow: 0 0 22px rgba(203,177,104,0.55), inset 0 0 10px rgba(255,255,255,0.12);
}

.smoke-bg {
  position: absolute;
  inset: 0; /* cover parent */
  background: url('imgs/smoke-overlay.png') bottom center no-repeat;
  background-size: cover;
  opacity: 0.35;          /* adjust for subtlety */
  pointer-events: none;   /* so it won’t block clicks */
  z-index: 0;
}

#Services {
  position: relative;
  z-index: 1; /* keep content above smoke */
}

/* subtle gold divider */
.divider-gold { background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* glassy section container */
.glass-tile {
  border: 1px solid color-mix(in srgb, var(--gold), transparent 70%);
  border-radius: 14px;
  background: color-mix(in srgb, black 82%, transparent);
  backdrop-filter: blur(6px);
  padding: .5rem .75rem;
}

/* CTA buttons */
.btn-gold, .btn-outline, .btn-solid {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1rem; border-radius: 999px; font-weight: 600;
  transition: all .25s ease;
}
.btn-gold { color: var(--gold); border: 1px solid var(--gold); background: transparent; }
.btn-gold:hover { background: var(--gold); color: #000; }
.btn-outline { color: #fff; border: 1px solid rgba(255,255,255,.25); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-solid { color: #000; background: var(--gold); border: 1px solid var(--gold); box-shadow: 0 6px 18px rgba(204,177,104,.25); }
.btn-solid:hover { filter: brightness(1.06); }

/* Mobile-specific popup sizing */
@media (max-width: 640px) {
  #popupContent {
    max-height: 75vh !important;   /* shorter than 90vh */
    margin-top: 1rem;              /* add breathing room from top */
    margin-bottom: 1rem;           /* add breathing room from bottom */
  }
}

#Services {
  display: flex;
  flex-direction: column; /* mobile default */
  gap: 1rem;
}

@media (min-width: 1024px) { /* side-by-side on desktop */
  #Services {
    flex-direction: row;
    align-items: stretch; /* force children to equal height */
  }

  .section-wrap {
    flex: 1 1 49%;  /* let both grow/shrink equally */
    height: auto;   /* remove fixed heights */
  }
}

/* ===== MOBILE VERSION ===== */
@media (max-width: 767px) {
  .parallax-bg {
    background-image: url('imgs/bannermobile.jpeg');
    background-size: cover;        /* better fit for tall mobile screens */
    background-position: 25% center;
  }
}

  .sw-section {
    background: #CCB168;
    padding: 60px 24px;
    position: relative;
font-family: "Lobster Two", sans-serif;
    overflow: hidden;
  }

  .sw-section::before {
    content: '';
    position: absolute;
    top: -60px; left: -60px; right: -60px; bottom: -60px;
    background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.18) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(0,0,0,0.12) 0%, transparent 55%);
    pointer-events: none;
  }


  
  .sw-card {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 40px;
    overflow: hidden;
    
    box-shadow: 0 40px 100px rgba(0,0,0,0.22), 0 8px 32px rgba(0,0,0,0.12);
  }

  .sw-top-bar {
    height: 3px;
    background: linear-gradient(90deg, transparent, #000, transparent);
  }

  .sw-inner {
    padding: 64px 60px 56px;
    text-align: center;
  }

  .sw-label {
    display: inline-block;
    background: #000;
    color: #CCB168;
    font-size: 10px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 9px 24px;
    border-radius: 999px;
    margin-bottom: 36px;
  }

  .sw-heading {
    font-size: clamp(48px, 8vw, 84px);
    font-weight: 300;
    line-height: 0.95;
    font-family: "Lobster Two", sans-serif;
    letter-spacing: -0.02em;
    color: #000;
    margin: 0 0 8px;
  }

  .sw-heading-sub {
    font-size: clamp(42px, 7vw, 76px);
    font-weight: 300;
    font-style: italic;
    font-family: "Lobster Two", sans-serif;
    color: rgba(0,0,0,0.5);
    line-height: 1;
    margin: 0;
  }

  .sw-divider {
    width: 80px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    margin: 32px auto 32px;
  }

  .sw-intro {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(0,0,0,0.75);
    
    max-width: 680px;
    margin: 0 auto 48px;
  }

  .sw-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 40px;
  }

  .sw-feature-card {
    background: #000;
    border-radius: 26px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .sw-feature-card:hover {
    transform: translateY(-6px);
  }

  .sw-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(204,177,104,0.22) 0%, transparent 65%);
    pointer-events: none;
  }

  .sw-feature-card-tag {
    display: block;
    font-size: 9px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    font-weight: 600;
    color: #CCB168;
    margin-bottom: 16px;
  }

  .sw-feature-card-title {
    font-size: 26px;
    font-weight: 400;
    color: #CCB168;
    line-height: 1.2;
    margin: 0 0 16px;
  }

  .sw-feature-card-body {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(204,177,104,0.7);
    font-weight: 300;
    margin: 0;
  }

  .sw-bottom-banner {
    background: #000;
    border-radius: 30px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .sw-bottom-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(204,177,104,0.28) 0%, transparent 68%);
    pointer-events: none;
  }

  .sw-bottom-divider {
    width: 72px;
    height: 2px;
    background: #CCB168;
    border-radius: 2px;
    margin: 0 auto 28px;
  }

  .sw-bottom-text {
    font-size: clamp(16px, 2vw, 21px);
    line-height: 1.75;
    color: rgba(204,177,104,0.8);
    max-width: 580px;
    margin: 0 auto;
    font-weight: 300;
    position: relative;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .sw-inner {
      padding: 48px 32px 40px;
    }

    .sw-cards {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 480px) {
    .sw-inner {
      padding: 36px 20px 32px;
    }

    .sw-bottom-banner {
      padding: 36px 24px;
    }
  }

    .ft-book-tag {
    font-size: 9px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #CCB168;
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
  }
 
  .ft-book-num {
    font-size: 52px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1;
    margin: 0 0 10px;
  }
 
  .ft-book-sub {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(204, 177, 104, 0.7);
    font-weight: 400;
  }
 
  .ft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(204, 177, 104, 0.2);
  }
 
  .ft-col {
    padding: 40px 32px;
    border-right: 1px solid rgba(204, 177, 104, 0.1);
  }
 
  .ft-col:last-child {
    border-right: none;
  }
 
  .ft-col-label {
    font-size: 9px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: #CCB168;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
  }
 
  .ft-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    margin-top: -12px;
    margin-bottom: 16px;
  }
 
  .ft-contact-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
  }
 
  .ft-contact-line span,
  .ft-contact-line a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    line-height: 1.6;
  }
 
  .ft-contact-line a:hover {
    color: #CCB168;
  }
 
  .ft-svc-link {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s;
  }
 
  .ft-svc-link:last-child {
    border-bottom: none;
  }
 
  .ft-svc-link:hover {
    color: #CCB168;
  }
 
  .ft-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(204, 177, 104, 0.3);
    border-radius: 4px;
    text-decoration: none;
    margin-top: 4px;
    transition: border-color 0.2s;
  }
 
  .ft-social:hover {
    border-color: rgba(204, 177, 104, 0.7);
  }
 
  .ft-social span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
  }
 
  .ft-social i {
    color: #CCB168;
    font-size: 18px;
  }
 
  .ft-bottom {
    border-top: 1px solid rgba(204, 177, 104, 0.2);
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
  }
 
  .ft-bottom-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
  }
 
  .ft-bottom-tag {
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(204, 177, 104, 0.4);
  }
 
  @media (max-width: 768px) {
    .ft-grid {
      grid-template-columns: 1fr;
    }
 
    .ft-col {
      border-right: none;
      border-bottom: 1px solid rgba(204, 177, 104, 0.1);
      text-align: center;
    }
 
    .ft-col:last-child {
      border-bottom: none;
    }
 
    .ft-contact-line {
      justify-content: center;
    }
 
    .ft-bottom {
      flex-direction: column;
      text-align: center;
    }
  }

    .pop-top-bar {
    height: 2px;
    background: linear-gradient(90deg, transparent, #CCB168, transparent);
  }
 
  .pop-tag {
    font-size: 9px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #CCB168;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
  }
 
  .pop-title {
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.1;
    letter-spacing: 0.02em;
  }
 
  .pop-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    letter-spacing: 0.08em;
  }
 
  .pop-divider {
    width: 40px;
    height: 1px;
    background: #CCB168;
    margin: 18px auto;
  }
 
  .pop-section-label {
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #CCB168;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
  }
 
  .pop-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 8px;
  }
 
  .pop-table tr {
    border-bottom: 1px solid rgba(204, 177, 104, 0.1);
  }
 
  .pop-table tr:last-child {
    border-bottom: none;
  }
 
  .pop-table td {
    padding: 10px 0;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
    vertical-align: middle;
  }
 
  .pop-table td:last-child {
    text-align: right;
    color: #CCB168;
    font-weight: 500;
    white-space: nowrap;
    padding-left: 16px;
  }
 
  .pop-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: #CCB168;
    color: #000;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.2s;
  }
 
  .pop-btn-gold:hover { opacity: 0.88; }
 
  .pop-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border: 1px solid rgba(204, 177, 104, 0.4);
    color: #CCB168;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: border-color 0.2s;
  }
 
  .pop-btn-outline:hover { border-color: #CCB168; }
 
  .pop-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
 
  .pop-btn-ghost:hover {
    border-color: rgba(204, 177, 104, 0.3);
    color: rgba(255, 255, 255, 0.8);
  }
 
  @media (max-width: 480px) {
    .pop-btn-gold, .pop-btn-outline, .pop-btn-ghost {
      width: 100%;
      justify-content: center;
    }
  }

   .tb-wrap {
  background: #CCB168;
  font-family: 'Montserrat', sans-serif;
  height: 44px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}

.tb-left {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-size: 11px;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.06em;
  white-space: nowrap;
  border-right: 1px solid rgba(0,0,0,0.15);
  flex-shrink: 0;
  z-index: 2;
  background: #CCB168;
}

.tb-left i { font-size: 11px; animation: pulse-icon 2s ease-in-out infinite; }

@keyframes pulse-icon {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.tb-marquee-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

.tb-marquee-wrap::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 40px;
  background: linear-gradient(90deg, #CCB168, transparent);
  z-index: 1;
}

.tb-marquee-wrap::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40px;
  background: linear-gradient(270deg, #CCB168, transparent);
  z-index: 1;
}

.tb-marquee {
  display: flex;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

.tb-marquee:hover { animation-play-state: paused; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tb-marquee-inner { display: flex; align-items: center; }

.tb-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.05em;
  padding: 0 32px;
}

.tb-marquee-item i { font-size: 11px; opacity: 0.75; }

.tb-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.tb-promo-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-size: 11px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-left: 1px solid rgba(0,0,0,0.15);
  flex-shrink: 0;
  white-space: nowrap;
  transition: background 0.2s;
}

.tb-promo-btn:hover { background: rgba(0,0,0,0.07); }
.tb-promo-btn i { animation: pulse-icon 1.8s ease-in-out infinite; }

.tb-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-size: 11px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-left: 1px solid rgba(0,0,0,0.15);
  flex-shrink: 0;
  white-space: nowrap;
}

.tb-phone i { font-size: 11px; animation: pulse-icon 2.4s ease-in-out infinite; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .tb-wrap {
    height: auto;          /* let it grow */
    overflow: visible;     /* stop clipping children */
    flex-direction: column;
    align-items: stretch;
  }

  .tb-left {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    justify-content: center;
    padding: 10px 16px;
    white-space: normal;
  }

  .tb-marquee-wrap {
    border-bottom: 1px solid rgba(0,0,0,0.15);
    padding: 10px 0;
    height: 36px;
    flex: unset;
  }

  .tb-promo-btn {
    border-left: none;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    justify-content: center;
    padding: 10px 16px;
  }

  .tb-phone {
    border-left: none;
    justify-content: center;
    padding: 10px 16px;
  }

  .tb-phone span { display: inline; } /* override the 640px hide below */
}



  .lux-root {
    font-family: 'Jost', sans-serif;
    background: #0a0a0a;
    color: #e8dcc8;
    padding: 2rem 1.75rem;
    width: 100%;
    min-width: 0;
  }

  .lux-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    min-width: 0;
  }

  .lux-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
  }

  .lux-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0.5px solid #2a2318;
    padding-bottom: 0.9rem;
    gap: 0.5rem;
  }

  .lux-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    color: #c9a84c;
    margin: 0;
    letter-spacing: 0.03em;
  }

  .lux-arrows { display: flex; gap: 6px; align-items: center; flex-shrink: 0; }

  .lux-arrow {
    width: 30px; height: 30px;
    border: 0.5px solid #2e2410;
    border-radius: 50%;
    background: #111008;
    color: #c9a84c;
    font-size: 17px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.18s;
    font-family: inherit;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
  }
  .lux-arrow:hover { background: #1d1608; border-color: #c9a84c; }
  .lux-arrow:disabled { opacity: 0.25; cursor: default; }

  .lux-counter {
    font-size: 10px;
    letter-spacing: 0.12em;
    color: #5a4e38;
    min-width: 36px;
    text-align: center;
  }

  .lux-track-wrap { overflow: hidden; width: 100%; min-width: 0; }

  .lux-track {
    display: flex;
    transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
    width: 100%;
  }

.lux-slide {
  min-width: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #111008;
  border: 0.5px solid #2a2318;
  border-radius: 12px;
  overflow: hidden;
  min-height: 240px;
}

.lux-slide-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: space-between;
  border-right: 0.5px solid #2a2318;
  min-width: 0;
  text-align: center;
  align-items: center;
}

.lux-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a4e38;
}

.lux-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  color: #e8dcc8;
  margin: 0;
  line-height: 1.2;
}

.lux-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: #7a6e58;
  flex: 1;
}

.lux-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #c9a84c;
  border: 0.5px solid #4a3c1a;
  border-radius: 100px;
  padding: 3px 10px;
  width: fit-content;
  margin: 0 auto;
}

  .lux-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c9a84c;
    border: 0.5px solid #3a2e12;
    border-radius: 100px;
    padding: 7px 14px;
    cursor: pointer;
    background: transparent;
    transition: all 0.18s;
    width: fit-content;
    margin-top: 0.25rem;
  }
  .lux-btn:hover { background: #1a1408; border-color: #c9a84c; }

/* Bigger card height and font sizes */
.lux-visual {
  background: #0d0b06;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
  .lux-visual::before {
    content: '';
    position: absolute;
    width: 110px; height: 110px;
    border-radius: 50%;
    border: 0.5px solid #2a2318;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
  }
  .lux-visual::after {
    content: '';
    position: absolute;
    width: 160px; height: 160px;
    border-radius: 50%;
    border: 0.5px solid #1e1a10;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
  }
  .lux-visual i {
    font-size: 34px;
    color: #c9a84c;
    opacity: 0.7;
    position: relative;
    z-index: 1;
  }
  .lux-visual-label {
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #3a3020;
    position: relative;
    z-index: 1;
  }

  .lux-dots {
    display: flex;
    gap: 5px;
    margin-top: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .lux-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #2a2318;
    transition: all 0.2s;
    cursor: pointer;
  }
  .lux-dot.active {
    background: #c9a84c;
    width: 18px;
    border-radius: 2px;
  }

  /* Narrow: stack sections, hide visual panel to save space */
  @media (max-width: 600px) {
    .lux-root { padding: 1.25rem 1rem; }
    .lux-cols { grid-template-columns: 1fr; gap: 2rem; }
    .lux-title { font-size: 17px; }
    .lux-slide { grid-template-columns: 1fr; }
    .lux-slide-body { border-right: none; border-bottom: 0.5px solid #2a2318; }
    .lux-visual { min-height: 100px; padding: 1rem; }
    .lux-visual::before { width: 80px; height: 80px; }
    .lux-visual::after { width: 120px; height: 120px; }
    .lux-visual i { font-size: 26px; }
  }

    .ab-section {
    background: #CCB168;
    padding: 48px 16px;
    font-family: "Raleway", sans-serif;
  }

  .ab-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 36px;
    overflow: hidden;
    max-width: 960px;
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.18);
  }

  .ab-topbar {
    height: 3px;
    background: linear-gradient(90deg, transparent, #000, transparent);
  }

  .ab-inner {
    padding: 48px 40px 40px;
    text-align: center;
  }

  .ab-label {
    display: inline-block;
    background: #000;
    color: #CCB168;
    font-size: 9px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 999px;
    margin-bottom: 20px;
  }

  .ab-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 6px;
  }

  .ab-logo-glow {
    background: radial-gradient(circle, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 35%, transparent 60%);
    border-radius: 50%;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 35px rgba(0,0,0,0.8));
  }

  .ab-logo {
    height: 270px;
    object-fit: contain;
    margin-top: -50px;
    margin-bottom: -65px;
  }

  .ab-h1 {
    font-family: "Raleway", sans-serif;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 300;
    color: #000;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
  }

  .ab-sub {
    font-family: "Raleway", sans-serif;
    font-size: clamp(40px, 6.5vw, 68px);
    font-weight: 300;
    font-style: italic;
    color: rgba(0, 0, 0, 0.45);
    line-height: 1;
  }

  .ab-divider {
    width: 60px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    margin: 24px auto;
  }

  .ab-intro {
    font-family: "Raleway", sans-serif;
    font-size: clamp(16px, 2.2vw, 20px);
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 40px;
  }

  .ab-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
  }

  .ab-feature-card {
    background: #000;
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
  }

  .ab-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(204, 177, 104, 0.2) 0%, transparent 65%);
    pointer-events: none;
  }

  .ab-feature-card:hover {
    transform: translateY(-4px);
  }

  .ab-card-tag {
    display: block;
    font-size: 9px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    font-weight: 600;
    color: #CCB168;
    margin-bottom: 12px;
    position: relative;
  }

  .ab-card-title {
    font-family: "Raleway", sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #CCB168;
    line-height: 1.1;
    margin-bottom: 12px;
    position: relative;
  }

  .ab-card-body {
    font-size: 12px;
    line-height: 1.75;
    color: rgba(204, 177, 104, 0.65);
    font-weight: 300;
    position: relative;
  }

  .ab-bottom-banner {
    background: #000;
    border-radius: 24px;
    padding: 36px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
  }

  .ab-bottom-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50%, rgba(204, 177, 104, 0.22) 0%, transparent 65%);
    pointer-events: none;
  }

  .ab-bottom-divider {
    width: 48px;
    height: 1px;
    background: #CCB168;
    margin: 0 auto 20px;
    position: relative;
  }

  .ab-bottom-text {
    font-family: "Raleway", sans-serif;
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(204, 177, 104, 0.75);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
    position: relative;
  }

  /* Mobile */
  @media (max-width: 600px) {
    .ab-section {
      padding: 0;
    }

    .ab-card {
      border-radius: 0;
    }

    .ab-inner {
      padding: 40px 24px 0;
    }

    .ab-cards {
      grid-template-columns: 1fr;
      gap: 0;
      margin-left: -24px;
      margin-right: -24px;
      margin-bottom: 0;
    }

    .ab-feature-card {
      border-radius: 0;
    }

    .ab-bottom-banner {
      border-radius: 0;
      margin-left: -24px;
      margin-right: -24px;
      margin-top: 0;
      padding: 36px 24px;
    }
  }

  .lux-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
  width: 100%;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.lux-track.dragging {
  cursor: grabbing;
  transition: none;
}

.lux-slide a,
.lux-slide button {
  pointer-events: auto;
}

.lux-slide { pointer-events: none; }
.lux-slide a, .lux-slide button { pointer-events: auto; }

@media (min-width: 1024px) {
  .lux-root {
    padding: 3rem 2rem;
  }

  .lux-slide {
    min-height: 320px;
  }

  .lux-visual {
    min-height: 320px;
  }

  .lux-name {
    font-size: 30px;
  }

  .lux-desc {
    font-size: 14px;
    line-height: 1.85;
  }

  .lux-tag {
    font-size: 10.5px;
  }

  .lux-slide-body {
    padding: 2rem 1.75rem;
  }
}

@keyframes ft-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.ft-bottom-tag {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgba(204,177,104,0.4) 0%, rgba(204,177,104,1) 40%, #fff 50%, rgba(204,177,104,1) 60%, rgba(204,177,104,0.4) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ft-shimmer 4s linear infinite;
}

.ft-bottom-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}


@keyframes tb-gift-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%       { transform: translateY(-3px) rotate(-8deg); }
  75%       { transform: translateY(-3px) rotate(8deg); }
}

.tb-promo-btn {
  animation: tb-pulse-glow 2.5s ease-in-out infinite;
}

.tb-promo-btn i {
  display: inline-block;
  animation: tb-gift-bounce 2.5s ease-in-out infinite;
}

.yoga-section {
  background: #000;
  width: 100%;
  min-height: 380px;        /* CHANGED from 520px */
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
 
  .yoga-topbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(204,177,104,0.5), transparent);
  }
 
.yoga-left {
  padding: 48px 48px;       /* CHANGED from 72px 56px */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

 
  .yoga-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
 
  .yoga-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 40% 50%, rgba(204,177,104,0.18) 0%, transparent 65%);
  }
 
  .yoga-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204,177,104,0.12) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
 
.yoga-glow {
  position: absolute;
  width: 280px;              /* CHANGED from 400px */
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,177,104,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
 
.yoga-icon-circle {
  width: 130px;              /* CHANGED from 180px */
  height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(204,177,104,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

 
  .yoga-icon-circle::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(204,177,104,0.1);
  }
 
  .yoga-icon-circle::after {
    content: '';
    position: absolute;
    inset: -24px;
    border-radius: 50%;
    border: 1px solid rgba(204,177,104,0.06);
  }
 
 .yoga-icon-circle i {
  font-size: 58px;           /* CHANGED from 80px */
  color: #CCB168;
  opacity: 0.85;
}

 
  .yoga-icon-label {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(204,177,104,0.35);
  }
 
  .yoga-tag {
    font-size: 9px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 600;
    color: #CCB168;
    display: inline-block;
    background: #000;
    padding: 7px 20px;
    border-radius: 999px;
    border: 1px solid rgba(204,177,104,0.25);
    margin-bottom: 20px;
    width: fit-content;
  }
 
.yoga-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(38px, 4.5vw, 62px);   /* CHANGED — smaller */
  font-weight: 300;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
 
.yoga-h1-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 48px);   /* CHANGED — smaller */
  font-weight: 300;
  font-style: italic;
  color: rgba(204,177,104,0.75);
  line-height: 1;
  margin-bottom: 18px;
}
 
.yoga-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #CCB168, transparent);
  margin-bottom: 24px;
}

.yoga-desc {
  font-size: 12px;           /* CHANGED from 13px */
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  max-width: 380px;
  margin-bottom: 24px;       /* CHANGED from 32px */
}

 
.yoga-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;                  /* CHANGED from 8px */
  margin-bottom: 24px;       /* CHANGED from 36px */
  justify-content: center;
}
 
  .yoga-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid rgba(204,177,104,0.4);
    border-radius: 999px;
    color: #CCB168;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
    width: fit-content;
  }
 
  .yoga-btn:hover {
    background: rgba(204,177,104,0.08);
    border-color: #CCB168;
  }
 
@media (max-width: 768px) {
  .yoga-section {
    grid-template-columns: 1fr;
  }

  .yoga-right {
    min-height: 220px;       /* CHANGED from 280px */
  }

  .yoga-left {
    padding: 36px 24px;      /* CHANGED from 48px 28px */
  }
}

@media (max-width: 1080px) {
  .lux-cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lux-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .lux-slide-body {
    border-right: none;
    border-bottom: 0.5px solid #2a2318;
  }

  .lux-visual {
    min-height: 120px;
    padding: 1rem;
  }

  .lux-visual::before {
    width: 80px;
    height: 80px;
  }

  .lux-visual::after {
    width: 120px;
    height: 120px;
  }

  .lux-visual i {
    font-size: 26px;
  }

  .lux-root {
    padding: 1.25rem 1rem;
  }

  .lux-title {
    font-size: 17px;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .lux-cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lux-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .lux-slide-body {
    border-right: none;
    border-bottom: 0.5px solid #2a2318;
  }

  .lux-visual {
    min-height: 120px;
    padding: 1rem;
  }

  .lux-visual::before {
    width: 80px;
    height: 80px;
  }

  .lux-visual::after {
    width: 120px;
    height: 120px;
  }

  .lux-visual i {
    font-size: 26px;
  }

  .lux-root {
    padding: 1.25rem 1rem;
  }

  .lux-title {
    font-size: 17px;
  }
}

@media (min-width: 769px) {
  .yoga-bg-img {
    border-radius: 0;
    box-shadow: inset 80px 0 60px 20px #000;  /* fade left edge only */
  }
}

@media (max-width: 768px) {
  .yoga-bg-img {
    box-shadow: inset 0 0 60px 50px #000;     /* all edges on mobile */
    border-radius: 200px;
  }
}