:root {
  --bg-deep: #12261d;
  --bg-deep-2: #0d1d15;
  --sand: #f5efe3;
  --sand-2: #efe5d2;
  --gold: #e7b12d;
  --gold-soft: #e4d2a6;
  --ink: #182620;
  --ink-soft: #4b5b52;
  --line: rgba(199, 161, 92, 0.35);
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(13, 29, 21, 0.18);
  --radius: 2px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Jost", sans-serif;
  color: var(--ink);
  background: var(--sand);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  font-family: "DM Serif Display", serif;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.eyebrow {
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 18px;
  color: var(--gold);
  font-weight: 500;
}

#eyebrow1 {
  color: #000;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}
section {
  padding: 69px 0;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Ripple divider signature element ---------- */
.ripple-divider {
  width: 100%;
  height: 44px;
  overflow: hidden;
  line-height: 0;
}
.ripple-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ripple-divider path {
  stroke: var(--gold);
  stroke-width: 1;
  fill: none;
  opacity: 0.55;
}
.ripple-divider.on-dark path {
  stroke: var(--gold-soft);
}
.ripple-path-1 {
  stroke-dasharray: 6 1400;
  animation: ripple-draw 7s ease-in-out infinite;
}
.ripple-path-2 {
  opacity: 0.28;
  animation: ripple-shift 9s ease-in-out infinite;
}
@keyframes ripple-draw {
  0% {
    stroke-dashoffset: 1400;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -1400;
  }
}
@keyframes ripple-shift {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(18px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ripple-path-1,
  .ripple-path-2 {
    animation: none;
  }
}

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(18, 38, 29, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(199, 161, 92, 0.18);
  transition: background 0.3s ease;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--sand);
  letter-spacing: 0.06em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.logo span {
  color: var(--gold);
  font-style: italic;
}
nav.primary-nav {
  display: flex;
  gap: 36px;
}
nav.primary-nav a {
  color: var(--sand-2);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  position: relative;
  padding-bottom: 4px;
}
nav.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
nav.primary-nav a:hover::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn:hover {
  background: var(--gold);
  color: var(--bg-deep);
}
.btn.solid {
  background: var(--gold);
  color: var(--bg-deep-2);
}
.btn.solid:hover {
  background: var(--gold-soft);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 24px;
  height: 1px;
  background: var(--sand);
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  /* background:
    radial-gradient(
      ellipse at 78% 18%,
      rgba(199, 161, 92, 0.16),
      transparent 55%
    ),
    linear-gradient(
      160deg,
      var(--bg-deep) 0%,
      var(--bg-deep-2) 65%,
      #0a1712 100%
    ); */

  overflow: hidden;
  padding-top: 90px;
  background: url(./img/b1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 768px) {
  .hero {
    min-height: 85svh;
    padding-top: 80px;
    background: url("./img/pbanner.png") center center/cover no-repeat;
  }
}
.hero-bg-rings {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 640px;
  height: 640px;
}
.hero-bg-rings svg {
  width: 100%;
  height: 100%;
}
.hero-bg-rings circle {
  fill: none;
  stroke: rgba(199, 161, 92, 0.22);
  stroke-width: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero .eyebrow {
  color: var(--gold-soft);
}
.hero h1 {
  color: var(--sand);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.05;
  margin-top: 18px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero p.lead {
  color: var(--sand-2);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 480px;
  margin: 26px 0 38px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-scroll {
  position: absolute;
  left: 28px;
  bottom: 36px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sand-2);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll .line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}

#offer-gridb {
  margin-bottom: 30px;
}

.hero-pills {
  position: absolute;
  right: 6%;
  bottom: 70px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 260px;
}
.hero-pill {
  border: 1px solid var(--line);
  padding: 14px 20px;
  color: var(--sand-2);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  background: rgba(245, 239, 227, 0.03);
}
.hero-pill b {
  color: var(--gold-soft);
  font-weight: 500;
}
@media (max-width: 980px) {
  .hero-pills {
    display: none;
  }
  .hero-bg-rings {
    opacity: 0.5;
  }
}

/* ---------- Section headers ---------- */
.section-head {
  max-width: 620px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  margin-top: 14px;
  line-height: 1.1;
}
.section-head p {
  color: var(--ink-soft);
  line-height: 1.8;
  margin-top: 18px;
  font-size: 18px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Offers ---------- */
.offers {
  background: var(--sand);
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.offer-card {
  background: var(--white);
  border: 1px solid rgba(24, 38, 32, 0.08);
  padding: 0 0 26px;
  position: relative;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  overflow: hidden;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.offer-media {
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.offer-media svg {
  width: 56%;
  height: 56%;
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}
.offer-media .stroke {
  fill: none;
  stroke: var(--gold-soft);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.offer-media .fill {
  fill: var(--gold-soft);
  opacity: 0.9;
}
.offer-card:hover .offer-media svg {
  transform: scale(1.06);
}
.offer-body {
  padding: 22px 26px 0;
}
.offer-card .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--gold);
  color: var(--bg-deep-2);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.offer-card h3 {
  font-size: 21px;
  margin-top: 0;
  line-height: 1.25;
  min-height: 64px;
  font-weight: 500;
}
.offer-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.offer-price-row .old {
  text-decoration: line-through;
  color: var(--ink-soft);
  font-size: 0.85rem;
}
.offer-price-row .new {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 600;
}
.offer-card .label {
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  margin-top: 4px;
}
.offer-card a.btn {
  margin: 20px 26px 0;
  width: calc(100% - 52px);
  justify-content: center;
  border-color: rgba(24, 38, 32, 0.2);
  color: var(--ink);
}
.offer-card a.btn:hover {
  background: var(--bg-deep);
  color: var(--sand);
  border-color: var(--bg-deep);
}
.offer-media.tone-1 {
  background: linear-gradient(155deg, #2a4b3a, #12261d);
}
.offer-media.tone-2 {
  background: linear-gradient(155deg, #3a2f22, #12261d);
}
.offer-media.tone-3 {
  background: linear-gradient(155deg, #243f35, #0d1d15);
}
.offer-media.tone-4 {
  background: linear-gradient(155deg, #2e2a1e, #12261d);
}
.offer-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(199, 161, 92, 0.22) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  opacity: 0.5;
}

/* ---------- About ---------- */
.about {
  background: linear-gradient(
    106deg,
    rgb(40, 37, 29) 0%,
    rgba(36, 36, 36, 1) 100%,
    rgba(255, 255, 255, 1) 46%
  );
  color: var(--sand);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about .eyebrow {
  color: var(--gold);
}
.about h2 {
  color: var(--sand);
  margin-top: 14px;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
}
.about p {
  color: var(--sand-2);
  line-height: 1.85;
  margin-top: 22px;
  font-size: 18px;
}
.about .note {
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 2px solid var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-soft);
}
.about-stats {
  display: flex;
  gap: 44px;
  margin-top: 40px;
}
.about-stats div h4 {
  color: var(--gold);
  font-size: 2.4rem;
}
.about-stats div span {
  display: block;
  color: var(--sand-2);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
}
.about-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--line);
    overflow: hidden;
}

.about-visual iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.about-visual .ring {
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(199, 161, 92, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual .ring-inner {
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(199, 161, 92, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-visual .ring-inner .eyebrow {
  margin-bottom: 8px;
}
.about-visual .ring-inner h3 {
  color: var(--sand);
  font-size: 1.5rem;
  font-style: italic;
}

/* ---------- Services ---------- */
.services {
  background: linear-gradient(
    to right,
    rgba(13, 29, 21, 0),
    rgb(44 44 44 / 34%)
  );
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  height: 420px;
  background: linear-gradient(
    180deg,
    rgba(18, 38, 29, 0.05),
    rgba(18, 38, 29, 0.75)
  );
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(24, 38, 32, 0.08);
}
.service-card .bgfill {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.service-card:nth-child(1) .bgfill {
  background:
    linear-gradient(
      180deg,
      rgba(13, 29, 21, 0.2) 0%,
      rgba(13, 29, 21, 0.85) 100%
    ),
    url(img/service_massage.png) no-repeat center center;
  background-size: cover;
}
.service-card:nth-child(2) .bgfill {
  background:
    linear-gradient(
      180deg,
      rgba(13, 29, 21, 0.2) 0%,
      rgba(13, 29, 21, 0.85) 100%
    ),
    url(img/service_bath.png) no-repeat center center;
  background-size: cover;
}
.service-card:nth-child(3) .bgfill {
  background:
    linear-gradient(
      180deg,
      rgba(13, 29, 21, 0.2) 0%,
      rgba(13, 29, 21, 0.85) 100%
    ),
    url(img/service_beauty.png) no-repeat center center;
  background-size: cover;
}
.service-card .texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(
    circle,
    rgba(199, 161, 92, 0.25) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  opacity: 0.5;
}
.service-card .icon-wrap {
  position: absolute;
  top: 36px;
  left: 30px;
  z-index: 1;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(199, 161, 92, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card .icon-wrap svg {
  width: 60%;
  height: 60%;
}
.service-card .icon-wrap .stroke {
  fill: none;
  stroke: var(--gold-soft);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card .content {
  position: relative;
  z-index: 1;
  padding: 30px;
  color: var(--sand);
  width: 100%;
}
.service-card .num {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}
.service-card h3 {
  color: var(--sand);
  font-size: 1.7rem;
  margin-top: 10px;
}
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(199, 161, 92, 0.4);
  padding-bottom: 3px;
}

/* ---------- Packages ---------- */
.packages {
  background: var(--bg-deep-2);
  color: var(--sand);
}
.packages .eyebrow {
  color: var(--gold);
}
.packages .section-head h2 {
  color: var(--sand);
}
.packages .section-head p {
  color: var(--sand-2);
}
.package-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.package-card {
  flex: 0 0 300px;
  background: rgba(245, 239, 227, 0.04);
  border: 1px solid var(--line);
  padding: 26px;
}
.package-card h4 {
  color: var(--sand);
  font-size: 1.25rem;
  line-height: 1.3;
  min-height: 66px;
  padding-bottom: 22px;
}
.package-price {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  margin-top: 14px;
}
.package-price .sub {
  display: block;
  color: var(--sand-2);
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}
.package-card a.btn {
  margin-top: 18px;
  width: 100%;
  justify-content: center;
}

/* ---------- Price lists (tabs) ---------- */
.pricing {
  background: #fff;
}
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 24px;
  border: 1px solid rgba(24, 38, 32, 0.18);
  background: transparent;
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 0.25s ease;
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--bg-deep);
  border-color: var(--bg-deep);
  color: var(--sand);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
.price-list {
  border-top: 1px solid rgba(24, 38, 32, 0.12);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(24, 38, 32, 0.12);
}
.price-row .pname {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
}
.price-row .pname span {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}
.price-row .pvals {
  display: flex;
  gap: 22px;
  text-align: right;
  white-space: nowrap;
}
.price-row .pvals div span {
  display: block;
  font-size: 16px;
  color: #000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-row .pvals div b {
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Therapists ---------- */
.therapists {
  background: var(--bg-deep-2);
  color: var(--sand);
}
.therapists .eyebrow {
  color: var(--gold);
}
.therapists .section-head h2 {
  color: var(--sand);
}
.therapists .section-head p {
  color: var(--sand-2);
}
.branch-toggle {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
}
.branch-toggle button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--sand-2);
  padding: 11px 22px;
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.branch-toggle button.active {
  background: var(--gold);
  color: var(--bg-deep-2);
  border-color: var(--gold);
}
.therapist-panel {
  display: none;
}
.therapist-panel.active {
  display: block;
}
.therapist-card {
  text-align: center;
}
.therapist-photo {
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(155deg, #2a4b3a, #12261d);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--gold-soft);
}
.therapist-card h5 {
  color: var(--sand);
  font-size: 1rem;
  margin-top: 12px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
}
.therapist-card span {
  display: block;
  color: var(--sand-2);
  font-size: 0.7rem;
  margin-top: 2px;
}

/* ---------- Generic auto-slider ---------- */
.slider {
  position: relative;
}
.slider-viewport {
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 -9px;
}
.slider-track .slide {
  flex: 0 0 calc(100% / var(--per-view, 1));
  box-sizing: border-box;
  padding: 0 9px;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 30px;
}
.slider-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  flex: none;
}
.slider-arrow:hover {
  background: var(--gold);
  color: var(--bg-deep-2);
  border-color: var(--gold);
}
.slider-dots {
  display: flex;
  gap: 9px;
  align-items: center;
}
.slider-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  padding: 0;
  border: none;
  cursor: pointer;
  background: var(--line);
  transition: all 0.25s ease;
}
.slider-dots .dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}
.reviews .slider-arrow {
  border-color: rgba(24, 38, 32, 0.18);
}
.reviews .slider-dots .dot {
  background: rgba(24, 38, 32, 0.18);
}

/* ---------- Reviews ---------- */
.reviews {
  background: var(--sand);
}
.review-card {
  background: var(--white);
  border: 1px solid rgba(24, 38, 32, 0.08);
  padding: 30px;
  height: 100%;
}
.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.9rem;
}
.review-card p {
  margin-top: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 17px;
}
.review-who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--gold-soft), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  color: var(--bg-deep-2);
  font-weight: 600;
}
.review-who b {
  font-weight: 500;
  font-size: 0.92rem;
}

/* ---------- Locations ---------- */
.locations {
  background: url(./img/cta3.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--sand);
}
.locations .eyebrow {
  color: var(--gold);
}
.locations .section-head h2 {
  color: var(--sand);
}
.locations .section-head p {
  color: var(--sand-2);
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.loc-card {
  border: 1px solid var(--line);
  padding: 34px;
  background: rgba(245, 239, 227, 0.03);
}
.loc-card h3 {
  color: var(--sand);
  font-size: 1.6rem;
}
.loc-card .addr {
  color: var(--sand-2);
  margin-top: 14px;
  line-height: 1.7;
  font-size: 0.92rem;
}
.loc-card .phone {
  color: var(--gold-soft);
  margin-top: 10px;
  display: block;
  font-size: 0.94rem;
}
.loc-card .btn-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  color: var(--sand);
  background:
    linear-gradient(to right, rgba(13, 29, 21, 0), rgba(13, 29, 21, 0)),
    url(img/whitedott_bg.webp) no-repeat center center;
  background-size: cover;
  text-align: center;
  padding: 90px 0;
}
.cta-banner .eyebrow {
  color: var(--gold);
}
.cta-banner h2 {
  color: #000;
  margin-top: 16px;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn {
  margin-top: 30px;
}

/* ---------- Footer ---------- */
footer {
  background: #0a1712;
  color: var(--sand-2);
  padding: 40px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-grid .logo {
  margin-bottom: 16px;
}
.footer-grid p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245, 239, 227, 0.55);
}
.footer-col h5 {
  color: var(--gold-soft);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 17px;
  color: rgba(245, 239, 227, 0.75);
  margin-bottom: 12px;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold-soft);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(245, 239, 227, 0.08);
  font-size: 0.8rem;
  color: rgba(245, 239, 227, 0.45);
}

/* ---------- Floating whatsapp ---------- */
.float-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-deep-2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(18, 38, 29, 0.35);
  font-size: 1.3rem;
  transition: transform 0.25s ease;
  border: none;
  cursor: pointer;
}
.float-btn:hover {
  transform: scale(1.08);
}

.whatsapp-float {
  position: fixed;
  left: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 34px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  animation: pulse 1.8s infinite;
  z-index: 9999;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg-deep-2);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 26px 28px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav .close-mobile {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--sand);
  font-size: 1.6rem;
  cursor: pointer;
}
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 50px;
}
.mobile-nav nav a {
  color: var(--sand);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
}
.mobile-nav .btn {
  margin-top: 40px;
  align-self: flex-start;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    gap: 44px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 860px) {
  nav.primary-nav,
  .nav-cta .btn.ghost-Goa {
    display: none;
  }
  .burger {
    display: flex;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .loc-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 70px 0;
  }
}
@media (max-width: 640px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    gap: 26px;
    flex-wrap: wrap;
  }
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .price-row .pvals {
    width: 100%;
    justify-content: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .cta-banner {
    padding: 64px 0;
  }
}
@media (max-width: 420px) {
  .container {
    padding: 0 20px;
  }
}

/* --contact section */
.spa-booking-wrap {
  padding: 70px 20px;
  background: #f8f6f2;
}

.spa-booking-box {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 25px;
  padding: 25px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 45px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  align-items: center;
}

.spa-booking-image {
  overflow: hidden;
  border-radius: 20px;
}

.spa-booking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.spa-booking-box:hover .spa-booking-image img {
  transform: scale(1.05);
}

.spa-booking-subtitle {
  display: inline-block;
  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.spa-booking-title {
  font-family: "DM Serif Display", serif;
  font-size: 44px;
  color: #183126;
  margin-bottom: 18px;
}

.spa-booking-text {
  color: #777;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 35px;
}

.spa-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.spa-field input,
.spa-field select,
.spa-field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fafafa;
  font-size: 15px;
  transition: 0.3s;
  outline: none;
}

.spa-field textarea {
  height: 150px;
  resize: none;
  margin-bottom: 25px;
}

.spa-field input:focus,
.spa-field select:focus,
.spa-field textarea:focus {
  border-color: #d4af37;
  background: #fff;
}

.spa-book-btn {
  display: inline-block;
  background: #183126;
  color: #fff;
  padding: 16px 38px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: 0.35s;
}

.spa-book-btn:hover {
  background: #d4af37;
  color: #183126;
}

@media (max-width: 991px) {
  .spa-booking-box {
    grid-template-columns: 1fr;
  }

  .spa-booking-image {
    height: 350px;
  }

  .spa-booking-title {
    font-size: 34px;
  }

  .spa-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .spa-booking-wrap {
    padding: 70px 15px;
  }

  .spa-booking-box {
    padding: 18px;
  }

  .spa-booking-image {
    height: 280px;
  }

  .spa-booking-title {
    font-size: 30px;
  }
}

/* ---special edition */

.massage-packages {
  background: #f5f5f5;
  padding: 50px 20px;
}

.massage-wrap {
  max-width: 1280px;
  margin: auto;
}

.massage-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-bottom: 60px;
}

.massage-heading {
  flex: 1;
  border-bottom: 1px solid #ddd;
  padding-bottom: 18px;
}

.massage-heading h2 {
  font-family: "DM Serif Display", serif;
  font-size: 40px;
  color: #222;
  font-weight: 500;
  margin: 0;
}

.massage-book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #d4af37;
  color: #fff;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 50px;
  font-size: 17px;
  transition: 0.35s;
}

.massage-book:hover {
  background: #183126;
}

.massage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.massage-item {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}

.massage-item:hover {
  transform: translateY(-8px);
}

.massage-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.massage-item:hover img {
  transform: scale(1.05);
}

.massage-details {
  padding: 25px;
}

.massage-details h3 {
  font-family: "DM Serif Display", serif;
  font-size: 25px;
  color: #222;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ececec;
}

.massage-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.massage-price-row span {
  font-size: 20px;
  color: #444;
}

.massage-cost {
  display: flex;
  align-items: center;
  gap: 15px;
}

.massage-cost del {
  color: #999;
  font-size: 18px;
}

.massage-cost strong {
  color: #d4af37;
  font-size: 22px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .massage-heading h2 {
    font-size: 42px;
  }

  .massage-list {
    gap: 25px;
  }

  .massage-details h3 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .massage-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .massage-list {
    grid-template-columns: 1fr;
  }

  .massage-item img {
    height: 230px;
  }

  .massage-heading h2 {
    font-size: 34px;
  }

  .massage-details h3 {
    font-size: 24px;
  }

  .massage-price-row span {
    font-size: 18px;
  }

  .massage-cost strong {
    font-size: 24px;
  }

  .massage-book {
    width: 100%;
    justify-content: center;
  }
}

/* pricing table */

.pricing-heading {
  max-width: 1000px;
  margin: 0 auto 20px;
  text-align: center;
}

.pricing-subtitle {
  display: inline-block;
  color: #d4af37;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.pricing-heading h2 {
  font-family: "DM Serif Display", serif;
  font-size: 48px;
  color: #183126;
  margin-bottom: 18px;
  line-height: 1.2;
}

.pricing-heading p {
  color: #666;
  font-size: 17px;
  line-height: 30px;
}

@media (max-width: 768px) {
  .pricing-heading {
    margin-bottom: 40px;
  }

  .pricing-heading h2 {
    font-size: 34px;
  }

  .pricing-heading p {
    font-size: 15px;
    line-height: 28px;
  }
}

.pricing-section {
  max-width: 1300px;
  margin: auto;
  padding: 20px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}
.price-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  overflow: hidden;
}
.price-card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}
.ribbon {
  position: absolute;
  top: 22px;
  right: -42px;
  width: 170px;
  background: #d4af37;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.price-card h3 {
  font-size: 30px;
  margin-bottom: 12px;
  color: #183126;
  font-family: "DM Serif Display", serif;
}
.price-card p {
  color: #777;
  line-height: 22px;
  margin-bottom: 20px;
  font-size: 18px;
}
.price-list {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px dashed #ddd;
}
.price-row:last-child {
  border-bottom: none;
}
.price-row span {
  color: #444;
  font-size: 17px;
}
.price-row strong {
  color: #d4af37;
  font-size: 28px;
}
.book-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #183126;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.35s;
  font-weight: 600;
}
.book-btn:hover {
  background: #d4af37;
  color: #183126;
}
@media (max-width: 768px) {
  .pricing-section {
    grid-template-columns: 1fr;
  }
  .price-card {
    padding: 30px;
  }
  .price-card h3 {
    font-size: 26px;
  }
  .ribbon {
    width: 150px;
    right: -38px;
    font-size: 11px;
  }
  .price-row strong {
    font-size: 24px;
  }
}

/* call  */

.call-sticky {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #e7b12d;
  color: #fff;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: 0.3s ease;
  animation: floatCall 2s infinite;
}

.call-sticky:hover {
  background: #e7b12d;
  transform: translateY(-3px);
}

.fa-phone-alt {
  transform: rotate(120deg);
}
.call-sticky i {
  width: 42px;
  height: 42px;
  background: #fff;
  color: #e7b12d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

@keyframes floatCall {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.call-sticky span {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .call-sticky {
    right: 10px;
    bottom: 10px;
    padding: 10px 16px;
    font-size: 14px;
    gap: 8px;
  }

  .call-sticky i {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  /* Keep number visible */
}

@media (max-width: 768px) {
  .call-sticky {
    right: 15px;
    bottom: 15px;
    padding: 8px 13px;
    font-size: 15px;
  }

  .call-sticky i {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
