/* ─── TREATMENTS PAGE ─── */

#hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding-top: 140px;
  background:
    linear-gradient(to right, rgba(13,11,9,0.6) 0%, rgba(13,11,9,0.2) 50%, rgba(13,11,9,0) 100%), 
 linear-gradient(to top, rgba(13,11,9,0.7) 0%, rgba(13,11,9,0) 50%, transparent 72%),
    url('/assets/images/treatmentscover.webp') center 30%/cover no-repeat;
}

.hc {
  position: relative;
  z-index: 2;
  padding: 0 80px 90px;
  max-width: 1200px
}

.hcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245, 238, 228, 0.45);
  margin-bottom: 26px;
  flex-wrap: wrap
}

.hcrumb a {
  color: rgba(245, 238, 228, 0.45);
  text-decoration: none;
  transition: color .3s
}

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

.hcrumb-sep {
  color: var(--gold);
  font-size: 0.45rem;
  opacity: 0.45
}

.hcrumb-cur {
  color: var(--gold)
}

.heye {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px
}

.heye::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: block
}

.hh1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 22px
}

.hh1 em {
  font-style: italic;
  color: var(--gold)
}

.hsub {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(245, 238, 228, 0.72);
  max-width: 500px;
  letter-spacing: 0.03em
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hcrumb {
  animation: up .7s .15s ease both
}

.heye {
  animation: up .7s .3s ease both
}

.hh1 {
  animation: up .9s .45s ease both
}

.hsub {
  animation: up .8s .65s ease both
}

/* MARQUEE */
.mwrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
  padding: 20px 0
}

.mtrack {
  display: flex;
  white-space: nowrap;
  animation: mq 32s linear infinite
}

.mit {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0
}

.mtxt {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: rgba(245, 238, 228, 0.52);
  letter-spacing: 0.1em;
  padding: 0 40px;
  transition: color .3s
}

.mtxt:hover {
  color: var(--gold)
}

.msep {
  color: var(--gold);
  font-size: 0.38rem;
  opacity: 0.55
}

@keyframes mq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* FILTER */
#fbar {
  background: var(--charcoal);
  padding: 32px 80px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 66px;
  z-index: 100
}

.finner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap
}

.flbl {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--stone);
  flex-shrink: 0
}

.ftabs {
  display: flex;
  gap: 3px;
  flex-wrap: wrap
}

.ft {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 238, 228, 0.5);
  background: none;
  border: 1px solid transparent;
  padding: 9px 20px;
  transition: all .3s var(--ease)
}

.ft:hover {
  color: var(--ivory);
  border-color: var(--border)
}

.ft.on {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold)
}

.fcnt {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--stone);
  flex-shrink: 0
}

.fcnt strong {
  color: var(--gold);
  font-style: normal;
  font-family: 'Jost', sans-serif;
  font-weight: 500
}

/* FEATURED */
#featured {
  display: grid;
  grid-template-columns: 1fr 1fr
}

.fpic {
  position: relative;
  overflow: hidden;
  min-height: 580px
}

.fpic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .9s var(--ease)
}

#featured:hover .fpic img {
  transform: scale(1.04)
}

.fpic-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 65%, var(--ink) 100%), linear-gradient(to top, rgba(13, 11, 9, 0.35) 0%, transparent 60%)
}

.fbadge {
  position: absolute;
  top: 32px;
  left: 32px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 7px 16px;
  z-index: 2
}

.fbody {
  padding: 76px 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink)
}

.fnum {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 5rem;
  line-height: 1;
  color: rgba(198, 169, 125, 0.06);
  letter-spacing: -0.05em;
  margin-bottom: -8px;
  user-select: none
}

.feye {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.58rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px
}

.feye::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: block
}

.ftit {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  line-height: 1.05;
  color: var(--ivory);
  letter-spacing: -0.01em;
  margin-bottom: 18px
}

.ftit em {
  font-style: italic;
  color: var(--gold)
}

.fdesc {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(245, 238, 228, 0.68);
  margin-bottom: 16px;
  letter-spacing: 0.02em
}

.fmore {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .65s var(--ease), opacity .5s ease
}

.fmore.open {
  max-height: 400px;
  opacity: 1
}

.fmore p {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(245, 238, 228, 0.55);
  margin-bottom: 16px;
  letter-spacing: 0.02em
}

.rmbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 26px;
  transition: gap .3s
}

.rmbtn .ri {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform .4s var(--ease), background .3s, border-color .3s
}

.rmbtn:hover {
  gap: 16px
}

.rmbtn:hover .ri {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink)
}

.rmbtn.open .ri {
  transform: rotate(45deg)
}

.fhis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 32px
}

.fhi {
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px
}

.fhi-dot {
  color: var(--gold);
  font-size: 0.36rem;
  margin-top: 5px;
  flex-shrink: 0
}

.fhi-txt {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: rgba(245, 238, 228, 0.6);
  line-height: 1.5
}

.facts {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap
}

/* TREATMENTS GRID */
#tgrid {
  background: var(--ink);
  padding: 96px 80px 120px
}

.tgh {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px
}

.tg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  grid-auto-flow: dense
}

.tc {
  position: relative;
  height: 460px;
  overflow: hidden;
  background: var(--charcoal)
}

.tc.wide {
  grid-column: span 2
}

.tc.off {
  display: none
}

.tcbg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.44) saturate(0.62);
  transition: transform .85s var(--ease), filter .7s
}

.tc:hover .tcbg {
  transform: scale(1.07);
  filter: brightness(0.27) saturate(0.52)
}

.tcov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 11, 9, 0.94) 0%, rgba(13, 11, 9, 0.08) 55%)
}

.tcnum {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.22em
}

.tctag {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.5rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(245, 238, 228, 0.36);
  border: 1px solid rgba(245, 238, 228, 0.1);
  padding: 5px 10px;
  transition: all .3s
}

.tc:hover .tctag {
  color: var(--gold);
  border-color: rgba(198, 169, 125, 0.4)
}

.tcinfo {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 26px
}

.tcname {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.45rem;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 5px;
  transition: color .3s
}

.tc:hover .tcname {
  color: var(--gold2)
}

.tcdesc {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  color: rgba(245, 238, 228, 0.65);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease)
}

.tc:hover .tcdesc {
  max-height: 80px
}

.tclink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.57rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 13px;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity .35s .1s, transform .35s .1s
}

.tc:hover .tclink {
  opacity: 1;
  transform: translateY(0)
}

.tc {
  transition: transform .35s ease, box-shadow .35s ease;
}
.tc:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.tc:focus-visible, .tc:hover {
  transform: translateY(-2px);
}

.tc::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color .45s
}

.tc:hover::after {
  border-color: rgba(198, 169, 125, 0.2)
}

/* HOW */
#how {
  background: var(--charcoal);
  padding: 112px 80px;
  position: relative;
  overflow: hidden
}

#how::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 169, 125, 0.05) 0%, transparent 70%);
  pointer-events: none
}

.howwrap {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 72px;
  align-items: start;
  margin-top: 56px
}

.hsteps {
  display: flex;
  flex-direction: column
}

.hs {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: padding .35s var(--ease)
}

.hs:first-child {
  border-top: 1px solid var(--border)
}

.hs:hover {
  padding: 26px 0 26px 10px
}

.hsn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(198, 169, 125, 0.16);
  transition: color .3s;
  flex-shrink: 0;
  width: 42px
}

.hs:hover .hsn {
  color: var(--gold)
}

.hst h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--ivory);
  letter-spacing: 0.03em;
  margin-bottom: 7px
}

.hst p {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.79rem;
  color: rgba(245, 238, 228, 0.56);
  line-height: 1.8;
  letter-spacing: 0.02em
}

.howpic {
  position: relative;
  overflow: hidden
}

.howpic img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .9s var(--ease)
}

.howpic:hover img {
  transform: scale(1.04)
}

.howcap {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(13, 11, 9, 0.78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 20px 24px
}

.howcap::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 22px;
  height: 22px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold)
}

.hcq {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ivory);
  margin-bottom: 5px
}

.hcby {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.66rem;
  color: rgba(245, 238, 228, 0.48);
  letter-spacing: 0.02em
}

/* OFFER */
#offer {
  background: var(--warm);
  padding: 112px 80px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.oc {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  pointer-events: none
}

.oc1 {
  width: 460px;
  height: 460px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.oc2 {
  width: 740px;
  height: 740px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.obadge {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.58rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 7px 20px;
  margin-bottom: 30px
}

.oh2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.6rem, 5.5vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 18px
}

.oh2 em {
  font-style: italic;
  color: var(--gold)
}

.osub {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.86rem;
  color: rgba(245, 238, 228, 0.65);
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto
}

/* RESPONSIVE */
@media(max-width:1024px) {
  #featured {
    grid-template-columns: 1fr
  }

  .fpic {
    min-height: 52vw
  }

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

  .howpic img {
    height: 360px
  }
}

@media(max-width:768px) {
  #hero {
    min-height: 78vh;
    padding-top: 110px
  }

  .hc {
    padding: 0 24px 64px;
    max-width: 100%
  }

  #fbar {
    padding: 22px 24px;
    top: 54px
  }

  #tgrid {
    padding: 64px 24px 96px
  }

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

  .tc.wide {
    grid-column: span 1
  }

  .tc {
    height: 320px
  }

  #how {
    padding: 64px 24px
  }

  #offer {
    padding: 64px 24px
  }

  .fbody {
    padding: 48px 24px
  }
}


/* ─── TESTIMONIAL SLIDER ─── */
#testimonial {
  background: var(--ink);
  padding: 140px 80px;
  position: relative;
  overflow: hidden
}

.t-quote-mark {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  font-weight: 300;
  color: rgba(198, 169, 125, 0.04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
  user-select: none
}

.slider-wrap {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.slider-head {
  text-align: center;
  margin-bottom: 72px
}

.slider-viewport {
  position: relative;
  overflow: hidden;
  min-height: 320px
}

.slider-track {
  display: flex;
  width: 100%;
  transition: transform .7s var(--ease-out);
  will-change: transform
}

.slide {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px
}

.slide-stars {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 28px
}

.star {
  color: var(--gold);
  font-size: 0.9rem;
  animation: starPop .4s var(--ease-out) both
}

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

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

.slide-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  line-height: 1.55;
  color: var(--ivory);
  letter-spacing: 0.01em;
  margin-bottom: 40px
}

.slide-author-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px
}

.slide-author {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold)
}

.slide-location {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: rgba(245, 238, 228, 0.4);
  text-transform: uppercase
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 56px
}

.s-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 238, 228, 0.6);
  font-size: 1rem;
  transition: all .35s var(--ease-out);
  background: transparent;
  flex-shrink: 0
}

.s-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.08)
}

.s-dots {
  display: flex;
  gap: 10px;
  align-items: center
}

.s-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 238, 228, 0.2);
  transition: all .4s var(--ease-out);
  border: none;
  padding: 0
}

.s-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px
}

.s-dot:hover {
  background: rgba(198, 169, 125, 0.5)
}

.s-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  width: 0%;
  transition: width linear;
  opacity: 0.5
}