/* =====================================================
   SKY-LIFTED Massage Therapy — Premium CSS
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --cream: #faf8f3;
  --warm: #fff9f0;
  --parch: #f2ece0;
  --dark: #1a1a1a;
  --teal: #2a7a7a;
  --teal2: #3ca0a0;
  --tealg: #4ecdc4;
  --gold: #c9a84c;
  --gold2: #e8c96a;
  --goldf: #f5e0a0;
  --goldd: #8a6a20;
  --goldshine: linear-gradient(135deg, #c9a84c 0%, #f5e0a0 40%, #e8c96a 60%, #c9a84c 100%);
  --goldglow: 0 0 20px rgba(201, 168, 76, .4), 0 0 40px rgba(201, 168, 76, .15);
  --sh: 0 20px 60px rgba(42, 122, 122, .13), 0 4px 16px rgba(42, 122, 122, .08);
  --sh2: 0 32px 80px rgba(42, 122, 122, .18), 0 8px 24px rgba(201, 168, 76, .15);
  --shgold: 0 8px 32px rgba(201, 168, 76, .3), 0 2px 8px rgba(201, 168, 76, .2);
  --r: 16px;
  --r2: 24px;
  --tr: all .4s cubic-bezier(.25, .46, .45, .94);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: #4a4035;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: auto;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

@media (min-width:769px) {

  body,
  button,
  a {
    cursor: none;
  }
}

/* ===== GOLD SHIMMER UTILITY ===== */
.gold-text {
  background: var(--goldshine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: goldShift 4s linear infinite;
}

@keyframes goldShift {
  0% {
    background-position: 0% center
  }

  100% {
    background-position: 200% center
  }
}

/* ===== CURSOR ===== */
#cd {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--gold2), var(--gold));
  box-shadow: var(--goldglow)
}

#cr {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all .12s ease;
  opacity: .7
}

#cr.on-link {
  width: 52px;
  height: 52px;
  border-color: var(--teal);
  opacity: .5
}

/* ===== LOADER ===== */
#ldr {
  position: fixed;
  inset: 0;
  z-index: 99990;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem
}

.ldr-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  letter-spacing: .2em;
  color: #fff;
  opacity: 0;
  animation: fu .7s .6s forwards
}

.ldr-sub {
  font-size: .6rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  background: var(--goldshine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fu .7s 1s forwards
}

.ldr-bar {
  width: 140px;
  height: 1px;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
  opacity: 0;
  animation: fu .4s 1.2s forwards
}

.ldr-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  animation: lf 1.6s 1.3s ease forwards;
  width: 0
}

@keyframes lf {
  to {
    width: 100%
  }
}

@keyframes fu {
  to {
    opacity: 1
  }
}

#ldr.hide {
  animation: loFade .6s forwards
}

@keyframes loFade {
  to {
    opacity: 0;
    pointer-events: none
  }
}

/* ===== PROGRESS BAR ===== */
#prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  z-index: 9999;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  width: 0;
  transition: width .1s;
  box-shadow: 0 0 8px rgba(201, 168, 76, .5)
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 1.4rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--tr)
}

nav.scrolled {
  background: rgba(250, 248, 243, .97);
  backdrop-filter: blur(24px);
  padding: 1rem 5%;
  box-shadow: 0 1px 0 rgba(201, 168, 76, .2), 0 8px 32px rgba(42, 42, 42, .06)
}

.nlogo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  letter-spacing: .06em;
  color: #2a2a2a;
  display: flex;
  align-items: center;
  gap: .5rem
}

.nlogo span {
  color: var(--gold);
  font-style: italic
}

.nlinks {
  display: flex;
  gap: 2.2rem;
  list-style: none
}

.nlinks a {
  font-size: .76rem;
  letter-spacing: .06em;
  color: #4a4035;
  transition: color .3s;
  position: relative
}

.nlinks a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s;
  box-shadow: 0 0 4px rgba(201, 168, 76, .5)
}

.nlinks a:hover {
  color: var(--teal)
}

.nlinks a:hover::after {
  width: 100%
}

.nact {
  display: flex;
  align-items: center;
  gap: .75rem
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px
}

.ham span {
  width: 22px;
  height: 1.5px;
  background: #2a2a2a;
  border-radius: 2px;
  transition: var(--tr);
  display: block
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  border: none;
  transition: var(--tr);
  cursor: none;
  position: relative;
  overflow: hidden
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .18);
  transform: translateX(-100%) skewX(-12deg);
  transition: transform .5s
}

.btn:hover::before {
  transform: translateX(200%) skewX(-12deg)
}

.btn-p {
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: #fff;
  box-shadow: 0 4px 20px rgba(42, 122, 122, .35)
}

.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42, 122, 122, .45)
}

.btn-g {
  background: var(--goldshine);
  background-size: 200% auto;
  color: #2a2a2a;
  box-shadow: var(--shgold);
  animation: goldShift 4s linear infinite
}

.btn-g:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(201, 168, 76, .55)
}

.btn-wa {
  background: linear-gradient(135deg, #25d366, #20ba5a);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35)
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .5)
}

.btn-o {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal)
}

.btn-o:hover {
  background: var(--teal);
  color: #fff
}

/* ===== DRAWER ===== */
#drw {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--warm);
  z-index: 8999;
  padding: 5.5rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: -20px 0 60px rgba(42, 42, 42, .15);
  transition: right .45s cubic-bezier(.25, .46, .45, .94)
}

#drw.open {
  right: 0
}

#drw a {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #2a2a2a
}

#drw a:hover {
  color: var(--teal)
}

#dov {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, .4);
  z-index: 8998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s
}

#dov.show {
  opacity: 1;
  pointer-events: auto
}

/* ===== SECTIONS ===== */
section {
  padding: 6.5rem 5%;
  position: relative
}

.eyebrow {
  font-size: .62rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  flex-shrink: 0
}

h2.stitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: #2a2a2a;
  line-height: 1.1
}

h2.stitle em {
  font-style: italic;
  color: var(--teal)
}

.sbody {
  color: #8a7a6a;
  line-height: 1.9;
  font-size: .93rem;
  max-width: 500px;
  margin-top: 1rem
}

.divg {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  margin: 1.5rem 0;
  border-radius: 2px
}

/* ===== SCROLL REVEAL ===== */
.rv {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s ease, transform .8s ease
}

.rv.on {
  opacity: 1;
  transform: none
}

.rvr {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .8s ease, transform .8s ease
}

.rvr.on {
  opacity: 1;
  transform: none
}

.d1 {
  transition-delay: .1s !important
}

.d2 {
  transition-delay: .2s !important
}

.d3 {
  transition-delay: .3s !important
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--warm);
  overflow: hidden;
  padding-top: 5rem
}

.h-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 75% 40%, rgba(42, 122, 122, .07) 0%, transparent 70%), radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201, 168, 76, .06) 0%, transparent 60%)
}

.h-content {
  position: relative;
  z-index: 2;
  max-width: 560px
}

.h-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, rgba(201, 168, 76, .15), rgba(42, 122, 122, .08));
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, .4);
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  margin-bottom: 1.75rem;
  box-shadow: var(--shgold)
}

.h-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s infinite;
  box-shadow: var(--goldglow)
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.h-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  color: #2a2a2a;
  line-height: 1.05;
  opacity: 0;
  animation: fu .9s 2.6s forwards
}

.h-h1 .l2 {
  color: var(--teal);
  font-style: italic;
  display: block
}

.h-tag {
  font-size: .95rem;
  color: #8a7a6a;
  line-height: 1.85;
  margin-top: 1.5rem;
  opacity: 0;
  animation: fu .9s 2.9s forwards
}

.h-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
  opacity: 0;
  animation: fu .9s 3.1s forwards
}

.pill {
  background: #fff;
  border: 1px solid rgba(201, 168, 76, .3);
  padding: .35rem .9rem;
  border-radius: 100px;
  font-size: .7rem;
  color: #8a7a68;
  letter-spacing: .04em;
  transition: var(--tr);
  box-shadow: 0 2px 8px rgba(201, 168, 76, .1)
}

.pill:hover {
  border-color: var(--gold);
  color: #8a6a20;
  background: var(--goldf);
  box-shadow: var(--shgold)
}

.h-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
  opacity: 0;
  animation: fu .9s 3.3s forwards
}

.h-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.8rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(201, 168, 76, .2);
  opacity: 0;
  animation: fu .9s 3.5s forwards
}

.snum {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #2a2a2a;
  line-height: 1
}

.snum sup {
  font-size: .9rem;
  color: var(--gold)
}

.slbl {
  font-size: .68rem;
  color: #8a7a6a;
  margin-top: .25rem;
  letter-spacing: .04em
}

.h-vis {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 46%;
  max-width: 580px;
  z-index: 1;
  transition: transform .08s ease-out;
  transform-style: preserve-3d
}

@keyframes orbitFloat {

  0%,
  100% {
    transform: translateY(-50%) rotate(0deg)
  }

  50% {
    transform: translateY(calc(-50% - 18px)) rotate(1.5deg)
  }
}

/* ===== GOLD BANNER ===== */
.gold-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #1a2a2a 50%, #2a1a0a 100%);
  padding: 5rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden
}

.gold-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, .14) 0%, transparent 70%);
  pointer-events: none
}

.gold-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(201, 168, 76, .02) 40px, rgba(201, 168, 76, .02) 80px);
  pointer-events: none
}

.gold-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1rem
}

.gold-section h2 span {
  background: var(--goldshine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: goldShift 4s linear infinite
}

.gold-section p {
  color: rgba(255, 255, 255, .7);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: .93rem;
  line-height: 1.85
}

.gold-strip {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201, 168, 76, .2)
}

.gstrip-item {
  text-align: center
}

.gstrip-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  background: var(--goldshine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: goldShift 4s linear infinite;
  line-height: 1
}

.gstrip-num sup {
  font-size: 1.1rem
}

.gstrip-lbl {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-top: .3rem
}

/* ===== SERVICE CARDS ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.75rem;
  margin-top: 3.5rem
}

.svc-card {
  background: #fff;
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--sh);
  transition: var(--tr);
  cursor: none;
  position: relative;
  border: 1px solid rgba(201, 168, 76, .15);
  transform-style: preserve-3d
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--goldshine);
  background-size: 200%;
  animation: goldShift 3s linear infinite;
  opacity: 0;
  transition: opacity .4s
}

.svc-card:hover {
  box-shadow: var(--sh2), 0 0 0 1px rgba(201, 168, 76, .2)
}

.svc-card:hover::before {
  opacity: 1
}

.cimg {
  height: 200px;
  position: relative;
  overflow: hidden
}

.cimg svg {
  width: 100%;
  height: 100%;
  transition: transform .6s
}

.svc-card:hover .cimg svg {
  transform: scale(1.06)
}

.cbadge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--goldshine);
  background-size: 200%;
  animation: goldShift 3s linear infinite;
  color: #1a1a1a;
  padding: .28rem .85rem;
  border-radius: 100px;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .08em
}

.cbody {
  padding: 1.6rem
}

.ctitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #2a2a2a;
  margin-bottom: .5rem
}

.cdesc {
  font-size: .8rem;
  color: #8a7a6a;
  line-height: 1.75;
  margin-bottom: 1.1rem
}

.ctags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: 1rem
}

.ctag {
  font-size: .6rem;
  color: var(--teal);
  background: rgba(42, 122, 122, .08);
  padding: .22rem .65rem;
  border-radius: 100px;
  border: 1px solid rgba(42, 122, 122, .15)
}

.cmeta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 168, 76, .15)
}

.cprice {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #2a2a2a
}

.cprice small {
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block
}

.cdur {
  font-size: .68rem;
  color: #8a7a68
}

.cbtn {
  display: block;
  width: 100%;
  margin-top: 1.1rem;
  background: linear-gradient(135deg, rgba(42, 122, 122, .08), rgba(201, 168, 76, .08));
  color: var(--teal);
  border: 1px solid rgba(42, 122, 122, .2);
  border-radius: var(--r);
  padding: .75rem;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: var(--tr);
  cursor: none
}

.cbtn:hover {
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(42, 122, 122, .3)
}

/* ===== CUPPING SECTION ===== */
.cup-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem
}

.cup-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  border-radius: var(--r2);
  padding: 2rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden
}

.cup-cta::before {
  content: '✦';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  color: rgba(201, 168, 76, .2);
  line-height: 1
}

.cup-cta h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: .4rem
}

.cup-cta p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.75;
  margin-bottom: 1.1rem
}

.cup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem
}

.ccard {
  background: #fff;
  border-radius: var(--r);
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid rgba(201, 168, 76, .1);
  transition: var(--tr);
  cursor: none;
  transform-style: preserve-3d
}

.ccard::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--teal));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s
}

.ccard:hover::before {
  transform: scaleY(1)
}

.ccard:hover {
  border-color: rgba(201, 168, 76, .3);
  box-shadow: var(--sh2), var(--shgold)
}

.cnum {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #e5d9c5;
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  line-height: 1;
  transition: color .4s
}

.ccard:hover .cnum {
  color: rgba(201, 168, 76, .4)
}

.cup-img {
  height: 130px;
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative
}

.cup-img svg {
  width: 100%;
  height: 100%
}

.cname {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #2a2a2a;
  margin-bottom: .4rem
}

.cdesc2 {
  font-size: .76rem;
  color: #8a7a6a;
  line-height: 1.7;
  margin-bottom: .85rem
}

.ctags2 {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem
}

.ctag2 {
  font-size: .58rem;
  color: var(--gold);
  background: rgba(201, 168, 76, .1);
  padding: .2rem .6rem;
  border-radius: 100px;
  border: 1px solid rgba(201, 168, 76, .25)
}

/* ===== WHY SECTION ===== */
#why {
  background: var(--parch)
}

.wgrid2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.4rem;
  margin-top: 3.5rem
}

.wycard {
  background: #fff;
  border-radius: var(--r);
  padding: 1.75rem 1.4rem;
  text-align: center;
  box-shadow: var(--sh);
  border: 1px solid rgba(201, 168, 76, .1);
  transition: var(--tr);
  cursor: none;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d
}

.wycard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--goldshine);
  background-size: 200%;
  animation: goldShift 3s linear infinite;
  opacity: 0;
  transition: opacity .4s
}

.wycard:hover::before {
  opacity: 1
}

.wycard:hover {
  box-shadow: var(--sh2)
}

.wyico {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(42, 122, 122, .1), rgba(201, 168, 76, .1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  border: 1px solid rgba(201, 168, 76, .25);
  transition: var(--tr)
}

.wycard:hover .wyico {
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(42, 122, 122, .3)
}

.wyico svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  transition: stroke .3s
}

.wycard:hover .wyico svg {
  stroke: #fff
}

.wytitle {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  color: #2a2a2a;
  margin-bottom: .5rem
}

.wydesc {
  font-size: .76rem;
  color: #8a7a6a;
  line-height: 1.7
}

/* ===== TESTIMONIALS ===== */
#testi {
  background: var(--warm);
  overflow: hidden
}

.thr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem
}

.tnav {
  display: flex;
  gap: .7rem
}

.tbtn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, .3);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: var(--tr)
}

.tbtn:hover {
  border-color: var(--gold);
  background: var(--goldshine);
  background-size: 200%;
  animation: goldShift 3s linear infinite
}

.tbtn svg {
  width: 16px;
  height: 16px;
  stroke: #8a7a68;
  fill: none;
  stroke-width: 2;
  transition: stroke .3s
}

.tbtn:hover svg {
  stroke: #2a2a2a
}

.ttrack-w {
  overflow: hidden
}

.ttrack {
  display: flex;
  gap: 1.5rem;
  transition: transform .55s cubic-bezier(.25, .46, .45, .94)
}

.tcard {
  min-width: 355px;
  background: #fff;
  border-radius: var(--r2);
  padding: 2rem;
  box-shadow: var(--sh);
  border: 1px solid rgba(201, 168, 76, .12);
  flex-shrink: 0;
  transition: var(--tr);
  position: relative;
  overflow: hidden
}

.tcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--goldshine);
  background-size: 200%;
  animation: goldShift 3s linear infinite
}

.tcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh2)
}

.tstars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.2rem
}

.tstar {
  width: 13px;
  height: 13px;
  fill: var(--gold);
  filter: drop-shadow(0 0 3px rgba(201, 168, 76, .5))
}

.tquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: #2a2a2a;
  line-height: 1.75;
  margin-bottom: 1.6rem;
  position: relative;
  padding-left: 1.5rem
}

.tquote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -.3rem;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  font-family: 'Playfair Display', serif;
  opacity: .6
}

.tperson {
  display: flex;
  align-items: center;
  gap: .85rem
}

.tav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  border: 2px solid rgba(201, 168, 76, .4)
}

.tname {
  font-size: .84rem;
  font-weight: 500;
  color: #2a2a2a
}

.trole {
  font-size: .7rem;
  color: #8a7a6a
}

/* ===== INSTAGRAM SECTION ===== */
#ig {
  background: var(--parch);
  text-align: center
}

.ig-section-header {
  text-align: center;
  margin-bottom: 2.5rem
}

.ig-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #fff;
  border-radius: var(--r2);
  padding: 1.5rem 2.5rem;
  box-shadow: var(--sh);
  border: 1px solid rgba(201, 168, 76, .2);
  margin-bottom: 2.5rem
}

/* Real Instagram logo colors */
.ig-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
  box-shadow: 0 6px 20px rgba(214, 36, 159, .4);
  flex-shrink: 0;
  padding: 12px
}

.ig-logo svg {
  width: 100%;
  height: 100%;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2
}

.ig-info {
  text-align: left;
  flex: 1
}

.ig-handle {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #2a2a2a
}

.ig-handle a {
  color: var(--teal)
}

.ig-info p {
  font-size: .76rem;
  color: #8a7a6a;
  margin-top: .25rem
}

.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
  color: #fff;
  padding: .7rem 1.8rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: none;
  cursor: none;
  transition: var(--tr);
  box-shadow: 0 4px 20px rgba(214, 36, 159, .35)
}

.ig-follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(214, 36, 159, .5)
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px
}

.ig-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  border-radius: var(--r);
  cursor: none;
  transform-style: preserve-3d
}

.ig-item svg {
  width: 100%;
  height: 100%;
  transition: all .6s cubic-bezier(.23, 1, .32, 1)
}

.ig-item:hover svg {
  transform: scale(1.08)
}

.ig-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214, 36, 159, .65), rgba(40, 90, 235, .65));
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s;
  border-radius: var(--r)
}

.ig-item:hover .ig-ov {
  opacity: 1
}

.ig-ov svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

/* ===== CONTACT ===== */
#contact {
  background: var(--cream)
}

.cgrid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  margin-top: 3.5rem;
  align-items: start
}

.cmethods {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0
}

.cmethod {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.2rem 1.4rem;
  background: #fff;
  border-radius: var(--r);
  border: 1px solid rgba(201, 168, 76, .12);
  box-shadow: var(--sh);
  transition: var(--tr);
  cursor: none
}

.cmethod:hover {
  border-color: rgba(201, 168, 76, .4);
  box-shadow: var(--sh2);
  transform: translateX(4px)
}

.cmethod-ico {
  width: 48px;
  height: 48px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px
}

.cmethod-ico.wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 4px 14px rgba(37, 211, 102, .35)
}

/* True Instagram gradient for contact icon */
.cmethod-ico.ig {
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
  box-shadow: 0 4px 14px rgba(214, 36, 159, .35)
}

.cmethod-ico svg {
  width: 100%;
  height: 100%;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8
}

/* WhatsApp icon fill white */
.cmethod-ico.wa svg {
  fill: #fff;
  stroke: none
}

.cmethod-lbl {
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #8a7a68;
  margin-bottom: .2rem
}

.cmethod-val {
  font-size: .88rem;
  font-weight: 500;
  color: #2a2a2a
}

.cmethod-val a {
  color: #2a2a2a;
  transition: color .3s
}

.cmethod-val a:hover {
  color: var(--teal)
}

.bform {
  background: #fff;
  border-radius: var(--r2);
  padding: 2.4rem;
  box-shadow: var(--sh2);
  border: 1px solid rgba(201, 168, 76, .2)
}

.ftitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #2a2a2a;
  margin-bottom: .3rem
}

.fsub {
  font-size: .8rem;
  color: #8a7a6a;
  margin-bottom: 1.8rem
}

.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem
}

.fg {
  display: flex;
  flex-direction: column;
  gap: .35rem
}

.fg.full {
  grid-column: 1/-1
}

.flbl {
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #8a7a68;
  font-weight: 500
}

.fin {
  background: var(--cream);
  border: 1.5px solid rgba(201, 168, 76, .2);
  border-radius: var(--r);
  padding: .75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .86rem;
  color: #2a2a2a;
  outline: none;
  transition: var(--tr);
  -webkit-appearance: none
}

.fin::placeholder {
  color: #8a7a68
}

.fin:focus {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(42, 122, 122, .08)
}

textarea.fin {
  min-height: 90px;
  resize: vertical
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #1a1a1a, #1a2020);
  color: rgba(255, 255, 255, .72);
  padding: 5rem 5% 2.5rem
}

.fgrid2 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem
}

.fbrand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: .25rem
}

.fbrand span {
  background: var(--goldshine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: goldShift 4s linear infinite;
  font-style: italic
}

.ftagline {
  font-size: .8rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
  max-width: 260px
}

.fso {
  display: flex;
  gap: .65rem
}

.fsob {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
  cursor: none;
  padding: 7px
}

.fsob:hover {
  border-color: var(--gold)
}

.fsob.wa:hover {
  background: linear-gradient(135deg, #25d366, #128c7e)
}

.fsob.ig:hover {
  background: linear-gradient(#6559ca, #e33f5f 50%, #fec66d 100%)
}

.fsob svg {
  width: 100%;
  height: 100%;
  stroke: rgba(255, 255, 255, .6);
  fill: none;
  stroke-width: 1.5;
  transition: all .3s
}

.fsob.wa svg {
  fill: rgba(255, 255, 255, .6);
  stroke: none
}

.fsob:hover svg {
  stroke: #fff;
  fill: none
}

.fsob.wa:hover svg {
  fill: #fff;
  stroke: none
}

.fct {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 1.1rem;
  font-weight: 500
}

.flinks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem
}

.flinks a {
  font-size: .8rem;
  transition: color .3s
}

.flinks a:hover {
  color: var(--gold)
}

.fbot {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem
}

.fcopy {
  font-size: .72rem
}

/* ===== WHATSAPP FLOAT ===== */
#wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 8000;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, .5);
  transition: var(--tr);
  cursor: none;
  animation: waPop .4s 4.5s ease-out both;
  padding: 12px
}

@keyframes waPop {
  from {
    transform: scale(0);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

#wa:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 36px rgba(37, 211, 102, .65)
}

#wa svg {
  width: 100%;
  height: 100%;
  fill: #fff
}

.wa-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a;
  color: #fff;
  white-space: nowrap;
  padding: .4rem .9rem;
  border-radius: var(--r);
  font-size: .72rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  border: 1px solid rgba(37, 211, 102, .3)
}

#wa:hover .wa-tip {
  opacity: 1
}

/* ===== MODAL ===== */
#modal {
  position: fixed;
  inset: 0;
  z-index: 95000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s
}

#modal.open {
  opacity: 1;
  pointer-events: auto
}

.mbg {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, .6);
  backdrop-filter: blur(8px);
  cursor: none
}

.mbox {
  background: #fff;
  border-radius: var(--r2);
  padding: 2.8rem;
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 1;
  box-shadow: 0 40px 100px rgba(42, 42, 42, .3), 0 0 0 1px rgba(201, 168, 76, .15);
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(.92) translateY(16px);
  transition: transform .4s cubic-bezier(.25, .46, .45, .94);
  border-top: 2px solid;
  border-image: var(--goldshine) 1
}

#modal.open .mbox {
  transform: scale(1) translateY(0)
}

.mcl {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--parch);
  border: none;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr)
}

.mcl:hover {
  background: #e5d9c5
}

.mcl svg {
  width: 15px;
  height: 15px;
  stroke: #8a7a68;
  fill: none;
  stroke-width: 2
}

/* ===== 3D FLOATING OBJECTS (cursor-reactive) ===== */
.float-obj {
  position: absolute;
  pointer-events: none;
  transform-style: preserve-3d;
  transition: transform .12s ease-out
}

.f-orb {
  border-radius: 50%;
  filter: blur(2px)
}

/* ===== DIVIDER LINE ===== */
.gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--teal), var(--gold), transparent);
  opacity: .4
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .cup-layout {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .cgrid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .fgrid2 {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {
  section {
    padding: 5rem 5%
  }

  .nlinks,
  .nact .btn-g {
    display: none
  }

  .ham {
    display: flex
  }

  .cup-grid {
    grid-template-columns: 1fr
  }

  .wgrid2 {
    grid-template-columns: 1fr 1fr
  }

  .ig-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .fgrid2 {
    grid-template-columns: 1fr
  }

  .h-stats {
    gap: 1.5rem;
    flex-wrap: wrap
  }

  .tcard {
    min-width: 290px
  }

  .ig-profile {
    flex-direction: column;
    text-align: center
  }

  .ig-info {
    text-align: center
  }

  .ig-follow-btn {
    margin-top: .5rem
  }

  body {
    cursor: auto
  }

  #cd,
  #cr {
    display: none
  }
}

@media(max-width:480px) {
  .fgrid {
    grid-template-columns: 1fr
  }

  .ig-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .gold-strip {
    gap: 2rem
  }
}

.ham.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.ham.open span:nth-child(2) {
  opacity: 0;
}

.ham.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ===== OFFICIAL RECOVERY PARTNER LOCATIONS ===== */
.loc-sec {
  position: relative;
  padding: 130px 6vw 140px;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(42, 122, 122, .10), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(201, 168, 76, .10), transparent 60%),
    linear-gradient(180deg, #0f1614 0%, #131c1a 50%, #0f1614 100%);
  color: #f2ece0;
  overflow: hidden;
  isolation: isolate;
}

.loc-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, .05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}

.loc-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  pointer-events: none;
  z-index: 0;
  animation: locFloat 14s ease-in-out infinite
}

.loc-blur--1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--teal), transparent 70%);
  top: -100px;
  left: -80px
}

.loc-blur--2 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  bottom: -120px;
  right: -100px;
  animation-delay: -5s
}

.loc-blur--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--tealg), transparent 70%);
  top: 40%;
  left: 48%;
  animation-delay: -9s;
  opacity: .3
}

@keyframes locFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(40px, -30px) scale(1.08)
  }
}

.loc-wrap {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto
}

.loc-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px
}

.loc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(201, 168, 76, .08);
  border: 1px solid rgba(201, 168, 76, .3);
  color: var(--gold2);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  margin-bottom: 22px;
}

.loc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold2);
  box-shadow: 0 0 12px var(--gold2);
  animation: locPulse 2s ease-in-out infinite
}

@keyframes locPulse {

  0%,
  100% {
    opacity: .5;
    transform: scale(.85)
  }

  50% {
    opacity: 1;
    transform: scale(1.2)
  }
}

.loc-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #f5e9d0;
  margin-bottom: 18px;
}

.loc-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(242, 236, 224, .65);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 36px;
}

.loc-card {
  position: relative;
  border-radius: var(--r2);
  overflow: hidden;
  min-height: 540px;
  background: rgba(20, 28, 26, .5);
  border: 1px solid rgba(201, 168, 76, .18);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, .45),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  transition: transform .6s cubic-bezier(.25, .46, .45, .94),
    box-shadow .6s ease,
    border-color .6s ease;
  transform-style: preserve-3d;
  isolation: isolate;
}

.loc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(201, 168, 76, .6) 0%,
      rgba(42, 122, 122, .2) 30%,
      rgba(201, 168, 76, 0) 50%,
      rgba(42, 122, 122, .2) 70%,
      rgba(201, 168, 76, .6) 100%);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: locBorder 6s linear infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes locBorder {
  0% {
    background-position: 0% 50%
  }

  100% {
    background-position: 300% 50%
  }
}

.loc-card__glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%),
      rgba(201, 168, 76, .22), transparent 50%);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
  z-index: 2;
}

.loc-card:hover .loc-card__glow {
  opacity: 1
}

.loc-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
  transform: scale(1.05);
  transition: opacity .6s ease, transform 1.2s ease;
  z-index: 0;
}

.loc-card__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(15, 22, 20, .55) 0%,
      rgba(15, 22, 20, .78) 55%,
      rgba(15, 22, 20, .95) 100%);
}

.loc-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 168, 76, .4);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, .6),
    0 0 60px rgba(201, 168, 76, .15),
    inset 0 1px 0 rgba(255, 255, 255, .1);
}

.loc-card:hover .loc-card__bg {
  opacity: .5;
  transform: scale(1.12)
}

.loc-card__inner {
  position: relative;
  z-index: 2;
  padding: 34px 32px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.loc-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: auto
}

.loc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(201, 168, 76, .12);
  border: 1px solid rgba(201, 168, 76, .3);
  color: var(--gold2);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.loc-badge__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold2);
  box-shadow: 0 0 10px var(--gold2);
  animation: locPulse 2s ease-in-out infinite
}

.loc-city {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(242, 236, 224, .5);
  font-weight: 400;
}

.loc-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: #f5e9d0;
  margin: 90px 0 8px;
  background: var(--goldshine);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShift 6s linear infinite;
}

.loc-addr {
  font-size: .92rem;
  color: rgba(242, 236, 224, .6);
  margin-bottom: 22px;
  font-weight: 300
}

.loc-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
}

.loc-tags li {
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(201, 168, 76, .2);
  color: rgba(242, 236, 224, .85);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .02em;
  backdrop-filter: blur(8px);
  transition: var(--tr);
}

.loc-card:hover .loc-tags li {
  background: rgba(201, 168, 76, .08);
  border-color: rgba(201, 168, 76, .4);
}

.loc-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.loc-btn {
  flex: 1;
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .02em;
  cursor: pointer;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.loc-btn--wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .3);
}

.loc-btn--wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, .45);
}

.loc-btn--map {
  background: rgba(255, 255, 255, .04);
  color: #f5e9d0;
  border: 1px solid rgba(201, 168, 76, .35);
  backdrop-filter: blur(10px);
}

.loc-btn--map:hover {
  background: var(--goldshine);
  background-size: 200% auto;
  color: #1a1a1a;
  border-color: transparent;
  box-shadow: var(--shgold);
  transform: translateY(-3px);
  animation: goldShift 3s linear infinite;
}

/* ===== reveal ===== */
.loc-sec .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.25, .46, .45, .94)
}

.loc-sec .reveal.in {
  opacity: 1;
  transform: none
}

.loc-sec .loc-card.reveal:nth-child(2) {
  transition-delay: .15s
}

/* ===== responsive ===== */
@media (max-width:768px) {
  .loc-sec {
    padding: 90px 5vw 100px
  }

  .loc-head {
    margin-bottom: 50px
  }

  .loc-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .loc-card {
    min-height: auto
  }

  .loc-card__inner {
    padding: 28px 24px
  }

  .loc-name {
    font-size: 1.65rem;
    margin-top: 60px
  }

  .loc-btn {
    flex: 1 1 100%
  }
}

@media (max-width:380px) {
  .loc-card__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
  }
}

.qb-form{display:flex;flex-direction:column;gap:18px}
.qb-row{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.qb-field{display:flex;flex-direction:column;gap:8px;position:relative}
.qb-field label{font-size:.82rem;letter-spacing:.08em;text-transform:uppercase;color:rgba(20,20,20,.75);font-weight:500}
.qb-field label span{color:#d4af37}
.qb-field label .qb-opt{color:rgba(255,255,255,.4);text-transform:none;letter-spacing:0;font-size:.78rem}
.qb-field input,.qb-field select,.qb-field textarea{
  width:100%;padding:14px 16px;border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  color:#1f1f1f;font:inherit;font-size:.95rem;
  transition:all .35s cubic-bezier(.4,0,.2,1);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
}
.qb-field textarea{resize:vertical;min-height:90px}
.qb-field input::placeholder,.qb-field textarea::placeholder{color:rgba(20,20,20,.35)}
.qb-field select{appearance:none;-webkit-appearance:none;background-image:linear-gradient(45deg,transparent 50%,#d4af37 50%),linear-gradient(135deg,#d4af37 50%,transparent 50%);background-position:calc(100% - 20px) center,calc(100% - 15px) center;background-size:5px 5px,5px 5px;background-repeat:no-repeat;padding-right:42px;cursor:pointer}
.qb-field select option{background:#fff;color:#1f1f1f;}
.qb-field input:focus,.qb-field select:focus,.qb-field textarea:focus{
  outline:none;border-color:rgba(212,175,55,.6);
  background:rgba(255,255,255,.06);
  box-shadow:0 0 0 4px rgba(212,175,55,.12),0 8px 30px rgba(212,175,55,.15);
  transform:translateY(-1px);
}
.qb-field.qb-invalid input,.qb-field.qb-invalid select,.qb-field.qb-invalid textarea{
  border-color:rgba(255,90,90,.7);
  box-shadow:0 0 0 4px rgba(255,90,90,.12);
  animation:qbShake .4s ease;
}
@keyframes qbShake{0%,100%{transform:translateX(0)}25%{transform:translateX(-6px)}75%{transform:translateX(6px)}}
.qb-error{min-height:16px;font-size:.75rem;color:#ff8a8a;letter-spacing:.02em;opacity:0;transform:translateY(-4px);transition:all .25s ease}
.qb-field.qb-invalid .qb-error{opacity:1;transform:translateY(0)}

.qb-submit{
  position:relative;margin-top:8px;padding:16px 28px;
  border:none;border-radius:16px;cursor:pointer;
  font:inherit;font-size:1rem;font-weight:600;letter-spacing:.05em;
  color:#0a0f14;
  background:linear-gradient(135deg,#f4d97a 0%,#d4af37 50%,#b8941f 100%);
  box-shadow:0 10px 30px rgba(212,175,55,.3),inset 0 1px 0 rgba(255,255,255,.4);
  transition:all .35s cubic-bezier(.4,0,.2,1);
  overflow:hidden;
}
.qb-submit::before{content:"";position:absolute;inset:0;background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,.45) 50%,transparent 70%);transform:translateX(-100%);transition:transform .8s ease}
.qb-submit:hover:not(:disabled){transform:translateY(-2px);box-shadow:0 16px 40px rgba(212,175,55,.45),inset 0 1px 0 rgba(255,255,255,.5)}
.qb-submit:hover:not(:disabled)::before{transform:translateX(100%)}
.qb-submit:active:not(:disabled){transform:translateY(0)}
.qb-submit:disabled{cursor:not-allowed;opacity:.85}

.qb-btn-spinner,.qb-btn-check{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%) scale(.6);opacity:0;transition:all .3s ease}
.qb-btn-spinner{width:20px;height:20px;border:2.5px solid rgba(10,15,20,.25);border-top-color:#0a0f14;border-radius:50%}
.qb-btn-check{font-size:1.4rem;font-weight:700}
.qb-submit.is-loading .qb-btn-label{opacity:0}
.qb-submit.is-loading .qb-btn-spinner{opacity:1;transform:translate(-50%,-50%) scale(1);animation:qbSpin .8s linear infinite}
.qb-submit.is-success{background:linear-gradient(135deg,#7be59a 0%,#3ac472 100%);box-shadow:0 16px 40px rgba(58,196,114,.4)}
.qb-submit.is-success .qb-btn-label,.qb-submit.is-success .qb-btn-spinner{opacity:0}
.qb-submit.is-success .qb-btn-check{opacity:1;transform:translate(-50%,-50%) scale(1)}
@keyframes qbSpin{to{transform:translate(-50%,-50%) rotate(360deg)}}

.qb-status{min-height:20px;text-align:center;font-size:.88rem;color:rgba(20,20,20,.7);;margin:0}
.qb-status.is-success{color:#7be59a}
.qb-status.is-error{color:#ff8a8a}

@media (max-width:680px){
  .qb-row{grid-template-columns:1fr;gap:14px}
  .qb-form{gap:14px}
  .qb-submit{padding:15px 22px;font-size:.95rem}
}

/* === SKY-LIFTED Booking Form — visibility fix === */

/* Labels (FULL NAME, PHONE NUMBER, LOCATION, etc.) */
#booking label,
.qb-form label,
.qb-label,
form[id*="book"] label {
  color: #1a1a1a !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  opacity: 1 !important;
}

/* The little gold asterisk on required fields */
#booking label .req,
.qb-form label .req,
#booking label::after {
  color: #c9a24a;
}

/* All inputs, selects, textareas */
#booking input,
#booking select,
#booking textarea,
.qb-form input,
.qb-form select,
.qb-form textarea,
form[id*="book"] input,
form[id*="book"] select,
form[id*="book"] textarea {
  color: #1a1a1a !important;
  background: #ffffff !important;
  border: 1px solid rgba(201, 162, 74, 0.35) !important;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  width: 100%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: border-color .25s ease, box-shadow .25s ease, transform .15s ease;
  -webkit-text-fill-color: #1a1a1a; /* iOS Safari fix */
  opacity: 1 !important;
}

/* Placeholder text — soft gray, readable */
#booking input::placeholder,
#booking textarea::placeholder,
.qb-form input::placeholder,
.qb-form textarea::placeholder {
  color: #8a8a8a !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #8a8a8a;
}

/* Select option text color */
#booking select option,
.qb-form select option {
  color: #1a1a1a;
  background: #ffffff;
}

/* Focus state — gold glow */
#booking input:focus,
#booking select:focus,
#booking textarea:focus,
.qb-form input:focus,
.qb-form select:focus,
.qb-form textarea:focus {
  outline: none;
  border-color: #c9a24a !important;
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.15), 0 4px 14px rgba(201,162,74,0.18);
}

/* Date/time pickers — make the icon visible */
#booking input[type="date"],
#booking input[type="time"] {
  color-scheme: light;
}

/* Autofill (Chrome) — kill the blue/yellow background */
#booking input:-webkit-autofill,
.qb-form input:-webkit-autofill {
  -webkit-text-fill-color: #1a1a1a !important;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  caret-color: #1a1a1a;
}

/* "ADDITIONAL NOTES (optional)" small label */
#booking .opt,
.qb-form .opt {
  color: #8a8a8a;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 6px;
}
