/* ============================================================
   Blissful Touch — luxury spa site (v2: 3D / motion / glass)
   Brand: BLACK + GOLD + WHITE. Custom Higgsfield imagery.
   Built by Easyworks AI Solutions
   ============================================================ */

:root {
  --black: #080808;
  --black-2: #0e0e10;
  --charcoal: #141417;
  --charcoal-2: #1b1b1f;
  --ink: #15151a;
  --gold: #c9a45c;
  --gold-light: #efd79b;
  --gold-bright: #f6e6b8;
  --gold-deep: #a87f3d;
  --gold-grad: linear-gradient(115deg, #f6e6b8 0%, #d9b86a 38%, #c9a45c 60%, #a87f3d 100%);
  --white: #ffffff;
  --cream: #faf7f1;
  --muted: #6c6c72;
  --muted-d: rgba(255,255,255,0.62);
  --line-d: rgba(201,164,92,0.20);
  --glass-bg: rgba(255,255,255,0.045);
  --glass-brd: rgba(231,207,146,0.18);
  --shadow: 0 30px 70px -32px rgba(0,0,0,0.6);
  --radius: 18px;
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink); background: var(--black); line-height: 1.7;
  font-weight: 300; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
h1,h2,h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; line-height: 1.06; letter-spacing: .2px; }
img, iframe, canvas { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.eyebrow { text-transform: uppercase; letter-spacing: 3.5px; font-size: .72rem; font-weight: 500; color: var(--gold-deep); margin-bottom: .9rem; }

/* reveal-on-scroll */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
[data-reveal].in-view { opacity: 1; transform: none; }

/* shimmer gold text */
.shimmer { font-style: italic; background: linear-gradient(100deg,#a87f3d 0%,#f6e6b8 25%,#c9a45c 50%,#f6e6b8 75%,#a87f3d 100%); background-size: 220% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: shimmer 6s linear infinite; }
@keyframes shimmer { to { background-position: 220% center; } }

/* glass */
.glass { background: var(--glass-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--glass-brd); }

/* cursor glow */
.cursor-glow { position: fixed; top: 0; left: 0; width: 420px; height: 420px; border-radius: 50%; pointer-events: none; z-index: 90; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(201,164,92,.16), transparent 60%); mix-blend-mode: screen; opacity: 0; transition: opacity .4s; }

/* ---------- Buttons ---------- */
.btn { position: relative; display: inline-block; padding: .95rem 2rem; border-radius: 999px; font-size: .8rem; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 500; transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s, background .3s, color .3s, border-color .3s; cursor: pointer; border: 1px solid transparent; overflow: hidden; }
.btn--lg { padding: 1.05rem 2.4rem; }
.btn--small { padding: .62rem 1.3rem; font-size: .74rem; }
.btn:hover { transform: translateY(-3px); }
.btn--gold { background: var(--gold-grad); color: #241b08; box-shadow: 0 16px 36px -16px rgba(201,164,92,.85); }
.btn--gold:hover { box-shadow: 0 22px 48px -16px rgba(231,207,146,1); }
.btn--ghost { border-color: rgba(231,207,146,.5); color: var(--gold-light); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(231,207,146,.1); border-color: var(--gold-light); }
.btn--dark { background: var(--black); color: var(--gold-light); }
.btn--dark:hover { background: #000; }
.btn--ghost-dark { border-color: rgba(36,27,8,.55); color: #241b08; }
.btn--ghost-dark:hover { background: rgba(36,27,8,.1); }

/* ---------- Top bar ---------- */
.topbar { background: #000; color: rgba(255,255,255,.85); display: flex; justify-content: center; align-items: center; gap: 1.5rem; font-size: .95rem; letter-spacing: .4px; padding: .7rem 1rem; position: relative; z-index: 40; }
.topbar__sep { opacity: .3; }
.topbar__item--accent { color: var(--gold-light); }
.topbar a:hover { color: var(--gold-light); }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: .65rem clamp(1.2rem,4vw,3rem); background: rgba(8,8,8,.55); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: background .35s, border-color .35s, padding .35s; }
.nav.scrolled { background: rgba(8,8,8,.9); border-bottom-color: var(--line-d); }
.brand__logo { height: 82px; width: auto; transition: height .35s; filter: drop-shadow(0 4px 14px rgba(201,164,92,.3)); }
.nav.scrolled .brand__logo { height: 64px; }
.nav__links { display: flex; align-items: center; gap: 1.9rem; font-size: .8rem; letter-spacing: 1.2px; text-transform: uppercase; }
.nav__links a { color: rgba(255,255,255,.85); position: relative; transition: color .2s; }
.nav__links a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold-grad); transition: width .3s; }
.nav__links a:not(.btn):hover { color: var(--gold-light); }
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__links a.btn { color: #241b08; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--gold-light); transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: flex-start; text-align: left; color: #fff; padding: 7rem clamp(1.5rem,7vw,6.5rem) 6rem; overflow: hidden; background: var(--black); }
.hero__bg { position: absolute; inset: -8% 0 0 0; height: 116%; background: url('assets/hero-spa.webp') center/cover no-repeat; will-change: transform; z-index: 0; transform: scale(1.06); }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__veil { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(90deg, rgba(6,6,7,.95) 0%, rgba(6,6,7,.82) 34%, rgba(7,7,8,.46) 60%, rgba(8,8,8,.16) 82%, transparent 100%),
  linear-gradient(180deg, rgba(8,8,8,.42) 0%, transparent 32%, transparent 56%, rgba(8,8,8,.82) 100%); }
.hero__particles { position: absolute; inset: 0; z-index: 2; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); z-index: 1; opacity: .5; }
.orb--1 { width: 360px; height: 360px; top: 8%; left: -6%; background: radial-gradient(circle, rgba(201,164,92,.5), transparent 70%); animation: float1 14s ease-in-out infinite; }
.orb--2 { width: 300px; height: 300px; bottom: 6%; right: -4%; background: radial-gradient(circle, rgba(239,215,155,.35), transparent 70%); animation: float2 18s ease-in-out infinite; }
@keyframes float1 { 50% { transform: translate(40px,30px) scale(1.1); } }
@keyframes float2 { 50% { transform: translate(-36px,-24px) scale(1.08); } }
.hero__content { position: relative; z-index: 3; max-width: 600px; margin-right: auto; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: 5px; font-size: .74rem; color: var(--gold-light); margin-bottom: 1.4rem; }
.hero__title { font-size: clamp(2.6rem, 5.4vw, 4.7rem); margin-bottom: 1.4rem; color: #fff; text-shadow: 0 2px 40px rgba(0,0,0,.6); }
.hero__sub { font-size: 1.08rem; font-weight: 300; max-width: 460px; margin: 0 0 2.6rem; color: rgba(255,255,255,.88); text-shadow: 0 1px 20px rgba(0,0,0,.6); }
.hero__cta { display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 3; font-size: .68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); opacity: .8; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.hero__scroll span { width: 1px; height: 38px; background: linear-gradient(var(--gold-light), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Marquee ---------- */
.marquee { background: var(--black-2); border-block: 1px solid var(--line-d); overflow: hidden; padding: 1.5rem 0; }
.marquee__track { display: flex; align-items: center; gap: 3rem; width: max-content; animation: scrollX 60s linear infinite; }
.marquee__track span { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.5rem; color: var(--gold); white-space: nowrap; letter-spacing: .6px; }
.marquee__track i { color: var(--gold-deep); font-style: normal; font-size: .8rem; opacity: .7; }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ---------- Trust / stats ---------- */
.trust { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.1rem; max-width: var(--maxw); margin: 0 auto; padding: 4rem clamp(1.2rem,4vw,3rem) 1rem; }
.trust__item { border-radius: var(--radius); padding: 1.8rem 1rem; text-align: center; transition: transform .4s; }
.trust__item:hover { transform: translateY(-6px); }
.trust__item strong { display: inline-block; font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; line-height: 1; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.trust__item em { color: var(--gold); font-style: normal; font-size: 1.4rem; }
.trust__item span { display: block; margin-top: .5rem; font-size: .82rem; color: var(--muted-d); letter-spacing: .3px; }

/* ---------- Sections base ---------- */
section { scroll-margin-top: 84px; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 3.4rem; padding: 0 1rem; }
.section-head h2 { font-size: clamp(2.3rem, 4.4vw, 3.4rem); color: #fff; margin-bottom: .8rem; }
.section-head .section-sub { color: var(--muted-d); }
.section-head h2::after { content: ""; display: block; width: 70px; height: 2px; margin: 1.1rem auto 0; background: var(--gold-grad); }

/* ---------- Services ---------- */
.services { position: relative; padding: 5.5rem clamp(1.2rem,4vw,3rem) 5rem; max-width: var(--maxw); margin: 0 auto; }
.services .section-head h2 { color: #fff; }
.services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; perspective: 1400px; }
.card { position: relative; background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid var(--glass-brd); border-radius: var(--radius); padding: 2.3rem 2rem; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transform-style: preserve-3d; transition: transform .25s ease, box-shadow .35s, border-color .35s; overflow: hidden; }
.card:hover { box-shadow: var(--shadow); border-color: rgba(231,207,146,.45); }
.card__shine { position: absolute; inset: 0; background: radial-gradient(220px circle at var(--mx,50%) var(--my,0%), rgba(231,207,146,.16), transparent 60%); opacity: 0; transition: opacity .3s; pointer-events: none; }
.card:hover .card__shine { opacity: 1; }
.card__icon { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 16px; background: linear-gradient(150deg, rgba(201,164,92,.18), rgba(201,164,92,.04)); border: 1px solid var(--line-d); margin-bottom: 1.3rem; color: var(--gold-light); transform: translateZ(40px); }
.card__icon svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.6rem; color: #fff; margin-bottom: .5rem; transform: translateZ(28px); }
.card p { color: var(--muted-d); font-size: .95rem; transform: translateZ(18px); }
.services__cta { text-align: center; margin-top: 3rem; }

/* ---------- Silk divider ---------- */
.silk { height: 240px; overflow: hidden; position: relative; }
.silk__img { position: absolute; inset: -20% 0; background: url('assets/gold-silk.webp') center/cover no-repeat; will-change: transform; }
.silk::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--black) 0%, transparent 18%, transparent 82%, var(--black) 100%), linear-gradient(0deg, var(--black), transparent 30%, transparent 70%, var(--black)); }

/* ---------- Insurance ---------- */
.insurance { background: radial-gradient(80% 120% at 100% 0%, rgba(201,164,92,.14), transparent 55%), var(--black); padding: 5rem clamp(1.2rem,4vw,3rem); }
.insurance__inner { max-width: 780px; margin: 0 auto; text-align: center; border-radius: 22px; padding: clamp(2.2rem,4vw,3.4rem); color: #fff; }
.insurance__badge { display: inline-block; background: var(--gold-grad); color: #241b08; font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; padding: .45rem 1.1rem; border-radius: 999px; margin-bottom: 1.3rem; box-shadow: 0 10px 26px -12px rgba(201,164,92,.8); }
.insurance h2 { font-size: clamp(2.1rem,4vw,3rem); margin-bottom: 1rem; }
.insurance p { color: rgba(255,255,255,.82); max-width: 600px; margin: 0 auto 1.7rem; }
.insurance__points { list-style: none; display: inline-grid; gap: .75rem; text-align: left; margin-bottom: 2rem; }
.insurance__points li { position: relative; padding-left: 2rem; color: rgba(255,255,255,.9); }
.insurance__points li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: #241b08; background: var(--gold-grad); width: 1.3rem; height: 1.3rem; border-radius: 50%; display: grid; place-items: center; font-size: .7rem; font-weight: 700; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; max-width: var(--maxw); margin: 0 auto; padding: 6rem clamp(1.2rem,4vw,3rem); background: var(--black); }
.about__media { position: relative; }
.about__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); position: relative; z-index: 2; }
.about__frame { position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--gold); border-radius: var(--radius); z-index: 1; opacity: .6; }
.about__body h2 { font-size: clamp(2.1rem,4vw,3rem); color: #fff; margin-bottom: 1.2rem; }
.about__body p { color: var(--muted-d); margin-bottom: 1rem; }
.checks { list-style: none; margin-top: 1.5rem; display: grid; gap: .75rem; }
.checks li { position: relative; padding-left: 2rem; color: rgba(255,255,255,.9); }
.checks li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

/* ---------- Reviews ---------- */
.reviews { background: linear-gradient(180deg, var(--black), var(--charcoal)); padding: 5.5rem clamp(1.2rem,4vw,3rem); }
.reviews__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; max-width: var(--maxw); margin: 0 auto; }
.quote { position: relative; border-radius: var(--radius); padding: 2.6rem; overflow: hidden; }
.quote__mark { position: absolute; top: -.6rem; right: 1.2rem; font-family: 'Cormorant Garamond', serif; font-size: 7rem; color: rgba(201,164,92,.16); line-height: 1; }
.quote__stars { color: var(--gold-light); letter-spacing: 3px; margin-bottom: 1rem; }
.quote blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; line-height: 1.4; color: #fff; font-style: italic; margin-bottom: 1.3rem; position: relative; z-index: 1; }
.quote figcaption { font-size: .9rem; color: var(--gold-light); font-weight: 500; }
.quote figcaption span { color: var(--muted-d); font-weight: 300; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--gold-grad); padding: 5.5rem 1.5rem; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0%, rgba(255,255,255,.35), transparent 60%); }
.cta-band__inner { position: relative; color: #241b08; }
.cta-band h2 { font-size: clamp(2.2rem,4.4vw,3.2rem); margin-bottom: .7rem; color: #1c1606; }
.cta-band p { margin-bottom: 2rem; color: #3a2f12; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,3.5rem); max-width: var(--maxw); margin: 0 auto; padding: 5.5rem clamp(1.2rem,4vw,3rem); align-items: center; background: var(--charcoal); }
.contact__info h2 { font-size: clamp(2.1rem,4vw,3rem); color: #fff; margin-bottom: 1.6rem; }
.contact__list { list-style: none; display: grid; gap: 1.1rem; }
.contact__list li { display: grid; grid-template-columns: 90px 1fr; gap: 1rem; align-items: baseline; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 1.1rem; }
.contact__list span { text-transform: uppercase; font-size: .72rem; letter-spacing: 1.5px; color: var(--gold-light); }
.contact__list a { color: rgba(255,255,255,.9); transition: color .2s; }
.contact__list a:hover { color: var(--gold-light); }
.contact__social { display: flex; gap: 1rem; margin-top: 1.8rem; }
.contact__social a { padding: .55rem 1.3rem; border: 1px solid var(--line-d); border-radius: 999px; font-size: .76rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-light); transition: .25s; }
.contact__social a:hover { background: var(--gold-grad); color: #241b08; border-color: transparent; }
.contact__map { padding: 8px; border-radius: var(--radius); }
.contact__map iframe { width: 100%; height: 380px; border: 0; border-radius: 12px; }

/* ---------- Footer ---------- */
.footer { background: var(--black); color: rgba(255,255,255,.65); text-align: center; padding: 4rem 1.5rem 2.5rem; display: grid; gap: 1.1rem; justify-items: center; border-top: 1px solid var(--line-d); }
.footer__logo { height: 104px; width: auto; filter: drop-shadow(0 6px 24px rgba(201,164,92,.25)); }
.footer__tag { font-size: .82rem; color: var(--gold-light); letter-spacing: .5px; }
.footer__links { display: flex; gap: 1.7rem; flex-wrap: wrap; justify-content: center; font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; }
.footer__links a { color: rgba(255,255,255,.72); }
.footer__links a:hover { color: var(--gold-light); }
.footer__legal { font-size: .76rem; opacity: .45; }

/* ---------- FAB ---------- */
.fab { position: fixed; bottom: 1.2rem; right: 1.2rem; z-index: 60; background: var(--gold-grad); color: #241b08; font-weight: 600; padding: .9rem 1.6rem; border-radius: 999px; text-transform: uppercase; letter-spacing: 1px; font-size: .8rem; box-shadow: 0 16px 36px -12px rgba(201,164,92,.9); display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .services__grid { grid-template-columns: repeat(2,1fr); }
  .trust { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .about, .contact { grid-template-columns: 1fr; }
  .about__media { order: 2; max-width: 460px; }
  .about__media img { aspect-ratio: 4/4; }
  .reviews__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav__links { position: fixed; inset: 0 0 0 auto; height: 100vh; height: 100dvh; width: min(86vw,340px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.9rem; background: #0a0a0c; border-left: 1px solid var(--line-d); padding: 6rem 2.2rem 3rem; transform: translateX(100%); transition: transform .4s cubic-bezier(.16,1,.3,1); box-shadow: -24px 0 70px -20px rgba(0,0,0,.9); z-index: 65; font-size: 1.05rem; overflow-y: auto; }
  .nav__links.open { transform: translateX(0); }
  .nav__links a.btn { width: 100%; text-align: center; margin-top: .6rem; }
  .nav__toggle { display: flex; z-index: 70; }
  .nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .fab { display: inline-block; }
  .topbar { gap: .7rem; font-size: .8rem; flex-wrap: wrap; padding: .6rem 1rem; }
  .topbar__sep:nth-of-type(1) { display: none; }
  .brand__logo { height: 60px; }
  .cursor-glow { display: none; }
  .silk { height: 150px; }
}
@media (max-width: 520px) {
  .services__grid { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 92vh; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__video { display: none; }
}
