/* ─── SERVICE DETAIL (new design) ───
   Page-section styles only. Global reset, palette, nav, loader,
   cursor and footer all come from base.css so the header/footer
   render identically to the rest of the site. */

/* Extra tokens used by this layout, mapped to the site palette */
:root {
  --deep: #0B0906;
  --panel: #1F1914;
  --border2: rgba(198, 169, 125, 0.26);
  --ease2: cubic-bezier(0.76, 0, 0.24, 1);
}

/* ── READING PROGRESS ── */
#rpb {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  z-index: 9998;
  opacity: 0.7
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO — cinematic full-height
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px;
  background: var(--ink);
}

.hero-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245, 238, 228, 0.62)
}

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

.hero-crumb a:hover,
.hero-crumb span.cur {
  color: var(--gold)
}

.hcsep {
  color: var(--gold);
  opacity: 0.5;
  font-size: 0.52rem
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px
}

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

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(4rem, 6vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ivory);
  margin-bottom: 28px;
}

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

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  color: rgba(245, 238, 228, 0.68);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
  max-width: 400px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  background: url('/assets/images/rejuvenating.webp') center 20%/cover no-repeat;
  will-change: transform;
}

.hero-img-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(13, 11, 9, 0.1) 0%, rgba(13, 11, 9, 0.6) 100%);
}

.hero-float-card {
  position: absolute;
  bottom: 60px;
  right: 40px;
  background: rgba(13, 11, 9, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border2);
  padding: 22px 26px;
  z-index: 3;
  min-width: 200px;
}

.hfc-val {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1
}

.hfc-lbl {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 238, 228, 0.6);
  margin-top: 4px
}

.hfc-rule {
  width: 100%;
  height: 1px;
  background: var(--border2);
  margin: 16px 0
}

.hero-vert {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(245, 238, 228, 0.3);
  white-space: nowrap;
  z-index: 4;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.hero-scroll span {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(245, 238, 228, 0.45)
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollpulse 2s ease infinite
}

@keyframes scrollpulse {

  0%,
  100% {
    opacity: .8;
    transform: scaleY(1);
    transform-origin: top
  }

  50% {
    opacity: .3;
    transform: scaleY(.6);
    transform-origin: top
  }
}

@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

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

.hero-crumb {
  animation: fadeup .7s .1s ease both
}

.hero-tag {
  animation: fadeup .7s .25s ease both
}

.hero-h1 {
  animation: fadeup 1s .4s ease both
}

.hero-tagline {
  animation: fadeup .8s .58s ease both
}

.hero-actions {
  animation: fadeup .8s .72s ease both
}

.hero-float-card {
  animation: fadeup .9s .9s ease both
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MARQUEE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mq-strip {
  overflow: hidden;
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0
}

.mq-track {
  display: flex;
  white-space: nowrap;
  animation: marq 36s linear infinite
}

.mq-track:hover {
  animation-play-state: paused
}

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

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

.mq-txt:hover {
  color: var(--gold)
}

.mq-dot {
  color: var(--gold);
  font-size: 0.35rem;
  opacity: 0.5
}

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

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STICKY BOOK NOW PILL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#sticky-book {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 400;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: none;
  display: none;
}

#sticky-book.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto
}

.sb-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  padding: 13px 24px;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  box-shadow: 0 8px 32px rgba(198, 169, 125, 0.3);
  transition: background .35s, color .35s, transform .3s;
}

.sb-pill:hover {
  background: var(--ink);
  color: var(--gold);
  transform: translateY(-2px)
}

.sb-pill-dot {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  animation: pillpulse 2s ease infinite
}

@keyframes pillpulse {

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

  50% {
    opacity: .4;
    transform: scale(.7)
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OVERVIEW — asymmetric split
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#overview {
  background: var(--charcoal);
  padding: 120px 0 0
}

.ov-intro {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: start;
  padding: 0 60px 60px
}

.ov-side-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 0.82rem;
  letter-spacing: 0.4em;
  color: rgba(198, 169, 125, 0.45);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding-top: 12px
}

.ov-main {
  padding: 0 60px 0 32px
}

.ov-main-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px
}

.ov-main-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold)
}

.ov-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ivory);
  margin-bottom: 32px
}

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

.ov-body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.95;
  color: rgba(245, 238, 228, 0.72);
  letter-spacing: 0.02em;
  max-width: 580px
}

.ov-body p {
  margin-bottom: 16px
}

.ov-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch
}

.ov-aside {
  padding-left: 52px;
  display: flex;
  flex-direction: column;
  gap: 0
}

.ov-aside-title {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px
}

.ov-stat {
  padding: 20px 0;
  border-bottom: 1px solid var(--border)
}

.ov-stat:first-of-type {
  border-top: 1px solid var(--border)
}

.ov-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2rem;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 4px
}

.ov-stat-lbl {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  color: rgba(245, 238, 228, 0.6);
  letter-spacing: 0.08em
}

.ov-pills-strip {
  border-top: 1px solid var(--border);
  padding: 28px 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  overflow: hidden
}

.ov-pills-lbl {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 238, 228, 0.5);
  flex-shrink: 0
}

.ov-pill {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(245, 238, 228, 0.65);
  border: 1px solid var(--border);
  padding: 7px 14px;
  white-space: nowrap;
  transition: all .3s var(--ease)
}

.ov-pill:hover {
  color: var(--gold);
  border-color: rgba(198, 169, 125, 0.35)
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FEATURES — centered heading + 3x2 card grid
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#features {
  background: var(--charcoal);
  padding: 100px 60px 110px;
}

.feat-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.feat-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.feat-eyebrow::before,
.feat-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: .55;
}

.feat-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 22px;
}

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

.feat-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.85;
  color: rgba(245, 238, 228, 0.72);
  letter-spacing: 0.02em;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.feat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: border-color .35s, background .35s, transform .35s;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}

.feat-card:hover::before {
  transform: scaleX(1)
}

.feat-card:hover {
  border-color: rgba(198, 169, 125, 0.3);
  background: rgba(198, 169, 125, 0.05);
  transform: translateY(-4px);
}

.feat-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(198, 169, 125, 0.12);
  border: 1px solid rgba(198, 169, 125, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background .3s, transform .3s;
}

.feat-card:hover .feat-card-icon {
  background: rgba(198, 169, 125, 0.2);
  transform: scale(1.06);
}

.feat-card-icon svg {
  width: 22px;
  height: 22px
}

.feat-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--ivory);
  margin: 0;
}

.feat-card-body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(245, 238, 228, 0.75);
  margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TREATMENT TABS — modern tab interface
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#treatments {
  background: var(--ink);
  padding: 0
}

.tx-tabs-bar {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--deep);
  position: sticky;
  top: 64px;
  z-index: 90;
  overflow-x: auto;
  scrollbar-width: none;
}

.tx-tabs-bar::-webkit-scrollbar {
  display: none
}

.tx-tab {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 238, 228, 0.55);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 20px 28px;
  white-space: nowrap;
  cursor: pointer;
  transition: color .3s, border-color .3s;
  flex-shrink: 0;
}

.tx-tab:hover {
  color: rgba(245, 238, 228, 0.8)
}

.tx-tab.on {
  color: var(--gold);
  border-bottom-color: var(--gold)
}

.tx-panel {
  display: none
}

.tx-panel.on {
  display: block
}

.tx-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72vh
}

.tx-img-col {
  position: relative;
  overflow: hidden;
  background: var(--deep)
}

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

.tx-panel.on .tx-img-col img {
  transform: scale(1.03)
}

.tx-img-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 11, 9, 0.15) 0%, rgba(13, 11, 9, 0.55) 100%)
}

.tx-img-badge {
  position: absolute;
  top: 32px;
  left: 32px;
  background: rgba(13, 11, 9, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border2);
  padding: 10px 18px
}

.tx-img-badge span {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold)
}

.tx-content-col {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--charcoal)
}

.tx-content-col .btn-gold {
  display: block;
  text-align: center;
  margin-top: 32px;
  padding: 18px 38px;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
    align-self: flex-end;
}

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

.tx-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px
}

.tx-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold)
}

.tx-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.08;
  color: var(--ivory);
  letter-spacing: -0.02em;
  margin-bottom: 20px
}

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

.tx-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.95;
  color: rgba(245, 238, 228, 0.75);
  letter-spacing: 0.02em;
  margin-bottom: 28px
}

.tx-desc p {
  margin-bottom: 12px
}

.tx-desc p:last-child {
  margin-bottom: 0
}

.tx-desc strong {
  color: var(--ivory);
  font-weight: 500
}

.tx-ideal {
  margin-bottom: 32px
}

.tx-ideal-lbl {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block
}

.tx-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.tx-tag {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(245, 238, 228, 0.9);
  border: 1px solid rgba(198, 169, 125, 0.4);
  padding: 8px 16px;
  letter-spacing: 0.02em;
  transition: border-color .3s, color .3s
}

.tx-tag:hover {
  color: var(--gold);
  border-color: var(--gold)
}

.tx-meta-bar {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: auto;
  padding-top: 28px;
  flex-wrap: wrap
}

.tx-meta-item {
  flex: 1;
  padding-right: 24px;
  min-width: 100px
}

.tx-meta-item+.tx-meta-item {
  padding-left: 24px;
  border-left: 1px solid var(--border);
  padding-right: 0
}

.tx-meta-key {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px
}

.tx-meta-val {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ivory);
  line-height: 1.2
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FULL-BLEED IMAGE BREAK
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#img-break {
  position: relative;
  height: 55vh;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1519824145371-296894a0daa9?w=1800&q=85') center 40%/cover no-repeat;
}

.ib-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 11, 9, 0.85) 0%, rgba(13, 11, 9, 0.35) 50%, rgba(13, 11, 9, 0.12) 100%),
    linear-gradient(to bottom, rgba(13, 11, 9, 0.4) 0%, transparent 40%, rgba(13, 11, 9, 0.45) 100%);
}

.ib-content {
  position: absolute;
  left: 60px;
  bottom: 60px;
  z-index: 2;
  max-width: 560px
}

.ib-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 1.45;
  color: var(--ivory);
  margin-bottom: 18px
}

.ib-src {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold)
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BENEFITS — editorial numbered layout
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#benefits {
  background: var(--charcoal);
  padding: 120px 60px
}

.ben-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 32px
}

.ben-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  line-height: 1.02;
  color: var(--ivory);
  letter-spacing: -0.025em
}

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

.ben-intro-text {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.96rem;
  line-height: 1.85;
  color: rgba(245, 238, 228, 0.65);
  max-width: 360px;
  letter-spacing: 0.02em;
  text-align: right
}

.ben-list {
  display: flex;
  flex-direction: column
}

.ben-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  padding: 36px 0;
  align-items: start;
  transition: background .3s;
}

.ben-row:last-child {
  border-bottom: 1px solid var(--border)
}

.ben-row:hover {
  background: rgba(198, 169, 125, 0.025)
}

.ben-n {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 3.5rem;
  color: rgba(198, 169, 125, 0.16);
  line-height: 1;
  transition: color .3s;
  padding-right: 20px
}

.ben-row:hover .ben-n {
  color: rgba(198, 169, 125, 0.35)
}

.ben-title-col {
  padding-right: 48px
}

.ben-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.45rem;
  color: var(--ivory);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  line-height: 1.2
}

.ben-cat {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8
}

.ben-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(245, 238, 228, 0.68);
  letter-spacing: 0.02em
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CARE — glass panel layout
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#care {
  position: relative;
  padding: 120px 60px;
  background: var(--ink);
}

.care-overlay {
  display: none
}

.care-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto
}

.care-header {
  text-align: center;
  margin-bottom: 64px
}

.care-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px
}

.care-eyebrow::before,
.care-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: .55
}

.care-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.05;
  color: var(--ivory);
  letter-spacing: -0.02em;
  margin-bottom: 16px
}

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

.care-h2-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: rgba(245, 238, 228, 0.72);
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin-top: 14px
}

.care-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0
}

.care-glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 52px 56px;
  position: relative;
}

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

.care-glass::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 28px;
  height: 28px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold)
}

.cg-label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px
}

.cg-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold)
}

.cg-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  color: var(--ivory);
  letter-spacing: -0.01em;
  margin-bottom: 32px
}

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

.cg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0
}

.cg-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(198, 169, 125, 0.1)
}

.cg-item:last-child {
  border-bottom: none
}

.cg-n {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: rgba(198, 169, 125, 0.35);
  line-height: 1;
  flex-shrink: 0;
  width: 26px;
  transition: color .3s;
  margin-top: 2px
}

.cg-item:hover .cg-n {
  color: var(--gold)
}

.cg-txt {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: rgba(245, 238, 228, 0.85);
  line-height: 1.75;
  letter-spacing: 0.02em
}

.cg-txt strong {
  color: var(--ivory);
  font-weight: 600
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   EXPERT — full-width editorial
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#expert {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink)
}

.exp-img {
  position: relative;
  overflow: hidden;
  min-height: 600px
}

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

#expert:hover .exp-img img {
  transform: scale(1.03)
}

.exp-img-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--ink) 100%)
}

.exp-qmark {
  position: absolute;
  top: -20px;
  left: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  font-weight: 300;
  color: rgba(198, 169, 125, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none
}

.exp-content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative
}

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

.exp-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold)
}

blockquote .exp-quote,
.exp-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.55;
  color: var(--ivory);
  letter-spacing: 0.01em;
  margin-bottom: 36px
}

.exp-sig-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin-bottom: 20px
}

.exp-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 4px
}

.exp-role {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 238, 228, 0.55);
  display: block;
  margin-bottom: 28px
}

.exp-body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(245, 238, 228, 0.68);
  letter-spacing: 0.02em;
  margin-bottom: 36px;
  max-width: 460px
}

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQs — clean modern accordion
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#faqs {
  background: var(--charcoal);
  padding: 120px 60px
}

.fq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.9fr;
  gap: 100px;
  align-items: start
}

.fq-left {
  position: sticky;
  top: 100px
}

.fq-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  line-height: 1.05;
  color: var(--ivory);
  letter-spacing: -0.02em;
  margin-bottom: 20px
}

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

.fq-intro {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(245, 238, 228, 0.65);
  margin-bottom: 36px;
  letter-spacing: 0.02em
}

.fq-contact-lbl {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 238, 228, 0.5);
  margin-bottom: 6px;
  display: block
}

.fq-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 20px;
  transition: color .3s
}

.fq-phone:hover {
  color: var(--gold2)
}

.fq-list {
  display: flex;
  flex-direction: column
}

.fi {
  border-bottom: 1px solid var(--border)
}

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

.fi-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  transition: background .2s
}

.fi-btn:hover {
  padding: 22px 0 22px 8px
}

.fi-q-txt {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--ivory);
  letter-spacing: 0.02em;
  line-height: 1.3;
  flex: 1;
  transition: color .3s
}

.fi.open .fi-q-txt {
  color: var(--gold)
}

.fi-ico {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform .4s var(--ease), background .3s, border-color .3s
}

.fi.open .fi-ico {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold)
}

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

.fi.open .fi-ans {
  max-height: 640px;
  opacity: 1
}

.fi-ans-inner {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(245, 238, 228, 0.7);
  padding-bottom: 20px;
  letter-spacing: 0.02em
}

.fi-ans-inner strong {
  color: var(--ivory);
  font-weight: 500
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OTHER TREATMENTS — horizontal scroll cards
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#other {
  background: var(--ink);
  padding: 100px 0;
  overflow: hidden
}

.oth-header {
  padding: 0 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px
}

.oth-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.05;
  color: var(--ivory);
  letter-spacing: -0.02em
}

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

.oth-scroll {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  padding: 0 60px 20px;
  scrollbar-width: none;
  cursor: grab;
}

.oth-scroll:active {
  cursor: grabbing
}

.oth-scroll::-webkit-scrollbar {
  display: none
}

.oth-card {
  flex-shrink: 0;
  width: 320px;
  height: 420px;
  position: relative;
  overflow: hidden;
  background: var(--panel);
}

.oth-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.42) saturate(0.6);
  transition: transform .85s var(--ease), filter .7s
}

.oth-card:hover .oth-card-bg {
  transform: scale(1.07);
  filter: brightness(0.25) saturate(0.5)
}

.oth-card-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 11, 9, 0.95) 0%, transparent 55%)
}

.oth-card-num {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.22em
}

.oth-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px 24px
}

.oth-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 4px;
  transition: color .3s
}

.oth-card:hover .oth-card-name {
  color: var(--gold2)
}

.oth-card-cat {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245, 238, 228, 0.5);
  margin-bottom: 14px;
  display: block
}

.oth-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity .35s .1s, transform .35s .1s
}

.oth-card:hover .oth-card-link {
  opacity: 1;
  transform: translateY(0)
}

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

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OFFER — bold, centred
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#offer {
  background: var(--warm);
  padding: 130px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.offer-oc-1 {
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.offer-oc-2 {
  width: 680px;
  height: 680px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.offer-badge {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 8px 20px;
  margin-bottom: 28px
}

.offer-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--ivory);
  margin-bottom: 20px
}

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

.offer-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: rgba(245, 238, 228, 0.7);
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto
}

/* ── SHARED BUTTONS (same scale as site .bgold / .bline) ── */
.btn-gold {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 14px 38px;
  text-decoration: none;
  border: 1px solid var(--gold);
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: color .45s
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateX(-101%);
  transition: transform .45s var(--ease)
}

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

.btn-gold:hover::before {
  transform: translateX(0)
}

.btn-gold span {
  position: relative;
  z-index: 1
}

.btn-ghost {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 238, 228, 0.8);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .3s, gap .35s var(--ease)
}

.btn-ghost::after {
  content: '→';
  transition: transform .35s var(--ease)
}

.btn-ghost:hover {
  color: var(--gold);
  gap: 18px
}

.btn-ghost:hover::after {
  transform: translateX(5px)
}

/* REVEALS (page-local observer in service-new.js) */
.rv {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease), transform .9s var(--ease)
}

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

.rvl {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity .9s var(--ease), transform .9s var(--ease)
}

.rvl.in {
  opacity: 1;
  transform: none
}

.rvr {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity .9s var(--ease), transform .9s var(--ease)
}

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

.rv-d1 {
  transition-delay: .1s
}

.rv-d2 {
  transition-delay: .2s
}

.rv-d3 {
  transition-delay: .3s
}

h2#offer-heading {
  margin-bottom: 50px;
}

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

  .hero-right {
    display: none
  }

  .tx-layout {
    grid-template-columns: 1fr
  }

  .tx-img-col {
    display: none
  }

  #expert {
    grid-template-columns: 1fr
  }

  .exp-img {
    display: none
  }

  .fq-wrap {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .fq-left {
    position: static
  }

  .ov-intro {
    grid-template-columns: 1fr
  }

  .ov-side-number,
  .ov-divider,
  .ov-aside {
    display: none
  }

  .ov-main {
    padding: 0
  }

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

  #features {
    padding: 80px 40px 90px
  }
}

@media(max-width:900px) {
  .hero-left {
    padding: 0 24px 60px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 100px
  }

  #overview,
  .mq-strip,
  #benefits,
  #care,
  #faqs,
  #other,
  #offer {
    padding-left: 24px;
    padding-right: 24px
  }

  .ov-pills-strip {
    padding: 20px 24px
  }

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

  .feat-card {
    padding: 28px 24px
  }

  #features {
    padding: 60px 24px 70px
  }

  .ben-row {
    grid-template-columns: 80px 1fr;
    gap: 0
  }

  .ben-desc {
    display: none
  }

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

  .oth-scroll {
    padding: 0 24px 16px
  }

  .oth-header {
    padding: 0 24px
  }

  #sticky-book {
    bottom: 20px;
    right: 20px
  }

  .ben-top {
    flex-direction: column;
    align-items: flex-start
  }

  .ben-intro-text {
    text-align: left;
    max-width: 100%
  }

  #care {
    background-attachment: scroll
  }
}

@media (max-width: 1024px) {
  #hero {
    min-height: 780px;
  }

  .hero-left {
    padding: 0 44px 72px;
  }

  .hero-h1 {
    font-size: clamp(3.2rem, 5.5vw, 5rem);
    max-width: 620px;
  }

  .hero-tagline {
    font-size: 1.1rem;
    max-width: 500px;
  }

  .hero-right {
    display: none;
  }

  .feat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .tx-tabs-bar {
    gap: 10px;
    flex-wrap: wrap;
  }

  .tx-tab {
    flex: 1 auto;
    padding: 11px 16px;
    font-size: 0.72rem;
  }

  .tx-layout {
    gap: 36px;
  }
}

@media (min-width: 1440px) {
  .hero-left {
    padding: 0 90px 80px;
  }

  .hero-h1 {
    font-size: clamp(4.8rem, 5.2vw, 7.4rem) !important;
    max-width: 860px;
  }

  .hero-tagline {
    font-size: 1.35rem;
    max-width: 540px;
    line-height: 1.75;
  }

  #features {
    padding: 110px 110px 120px;
  }

  .feat-grid {
    gap: 30px;
  }

}

@media (max-width: 768px) {
  #hero {
    height: auto;
    min-height: 90vh;
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 120px 24px 56px;
  }

  .hero-h1 {
    font-size: clamp(2.6rem, 8vw, 3.8rem);
    margin-bottom: 20px;
  }

  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero-actions .btn-gold,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  #features {
    padding: 56px 24px 70px;
  }

  .feat-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feat-card {
    padding: 24px 20px;
  }

  .tx-tabs-bar {
    overflow-x: auto;
    padding-bottom: 8px;
    white-space: nowrap;
    scroll-snap-type: x proximity;
  }

  .tx-tab {
    flex: 1 auto;
    scroll-snap-align: start;
  }

  .tx-layout {
    gap: 24px;
  }

  .tx-content-col {
    padding: 30px 20px;
  }

  .tx-meta-bar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tx-meta-item {
    padding: 14px 16px;
  }

  .tx-title {
    font-size: 2rem;
  }
  .tx-meta-val{
   font-size:1.2rem ;}
}

@media (max-width: 480px) {
  .hero-left {
    padding: 110px 18px 44px;
  }

  .hero-h1 {
    font-size: 2.4rem;
    line-height: 1.02;
  }

  .hero-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-actions .btn-gold,
  .hero-actions .btn-ghost {
    padding: 13px 20px;
    font-size: 0.72rem;
  }

  #features {
    padding: 48px 18px 60px;
  }

  .feat-card-title {
    font-size: 1.05rem;
  }

  .feat-card-body {
    font-size: 0.95rem;
  }

  .tx-title {
    font-size: 1.75rem;
  }

  .tx-desc p {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .tx-tag {
    font-size: 0.72rem;
    padding: 7px 10px;
  }
}

/* ─── TESTIMONIAL SLIDER ─── */
#testimonial {
  background: #282018;
  padding: 80px 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
}
/* responsive testimonial adjustments */
@media (min-width: 1024px) {
  .slider-wrap {
    max-width: 1060px;
  }
  .t-quote-mark {
    font-size: 12rem;
  }
}

@media (max-width: 768px) {
  #testimonial {
    padding: 56px 24px;
  }

  .slider-wrap {
    max-width: 820px;
    padding: 0 12px;
  }

  .slide {
    padding: 0 18px;
  }

  .slide-text {
    font-size: clamp(1.15rem, 3.4vw, 1.6rem);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 700px;
  }

  .t-quote-mark {
    display: none;
  }

  .slider-controls {
    margin-top: 36px;
    gap: 18px;
  }
  .tx-content-col .btn-gold {
    align-self: center ;}
}

@media (max-width: 480px) {
  #testimonial {
    padding: 40px 18px;
  }

  .slider-wrap {
    max-width: 92%;
    margin: 0 auto;
  }

  .slide-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
  }

  .slide-author {
    font-size: 0.66rem;
    letter-spacing: 0.4em;
  }

  .s-arrow {
    width: 42px;
    height: 42px;
  }

  .tx-content-col .btn-gold {
    align-self: center ;}
}

.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
}