/* ==========================================================================
   Divine Wellness — Massage Therapy page (massage.html)
   Section layouts built from tokens.css variables and shared components.
   ========================================================================== */

/* =========================== Hero =========================== */

.mass-hero__blob-1 {
  top: -120px; left: -140px; width: 520px; height: 520px;
  background: radial-gradient(circle at 40% 40%, rgba(100, 183, 198, 0.35), rgba(100, 183, 198, 0) 70%);
  filter: blur(30px);
  animation-duration: 11s;
}
.mass-hero__blob-2 {
  bottom: -160px; right: -120px; width: 560px; height: 560px;
  background: radial-gradient(circle at 60% 50%, rgba(227, 122, 109, 0.14), rgba(227, 122, 109, 0) 70%);
  filter: blur(36px);
  animation-duration: 13s;
}
.mass-hero .breadcrumb { margin-bottom: 20px; }

.mass-hero__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
}
.mass-hero__copy { flex: 1 1 360px; min-width: 300px; max-width: 520px; }
.mass-hero__copy .eyebrow { margin-bottom: 18px; }
.mass-hero h1 {
  margin: 0 0 10px 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: var(--track-display);
  color: var(--ink);
}
.mass-hero__body {
  margin: 0 0 12px 0;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-soft);
  max-width: 48ch;
  text-wrap: pretty;
}
.mass-hero__body--last { margin-bottom: 30px; }
.mass-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.mass-hero__license {
  margin: 0;
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--slate-mist);
}

.mass-hero__media { flex: 1.2 1 420px; min-width: 300px; position: relative; }
.mass-hero__photo {
  position: relative;
  border-radius: var(--r-card-xl);
  overflow: hidden;
  box-shadow: 0 40px 70px -34px rgba(22, 58, 67, 0.5), 0 0 0 8px rgba(255, 255, 255, 0.35);
  transform: rotate(0.4deg);
}
.mass-hero__photo img { display: block; width: 100%; height: auto; }
.mass-hero__photo-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(100, 183, 198, 0.1) 0%, rgba(0, 0, 0, 0) 40%, rgba(22, 58, 67, 0.12) 100%);
  pointer-events: none;
}
.mass-hero__float {
  left: clamp(-10px, -1vw, -18px);
  bottom: 20px;
  border-radius: var(--r-card-sm);
  padding: 14px 20px;
}
.mass-hero__float .float-card__value { font-size: 14px; }

/* =========================== Section jump strip =========================== */

.jump {
  background: var(--ink);
  padding: 18px var(--gutter);
}
.jump__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}

/* =========================== Massage options =========================== */

.menu { background: linear-gradient(180deg, var(--tint-green) 0%, var(--tint-blue) 100%); }
.menu__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(40px, 5vw, 56px) auto;
}
.menu__head h2 { margin-bottom: 18px; }
.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.therapy-card {
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-card-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform var(--hover-slow), box-shadow var(--hover-slow);
}
.therapy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-lg); }
.therapy-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.therapy-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
}
.therapy-card__price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--coral);
  white-space: nowrap;
}
.therapy-card__desc {
  margin: 0 0 20px 0;
  font-size: var(--fs-ui);
  line-height: 1.65;
  color: var(--body);
  flex: 1;
  text-wrap: pretty;
}
.therapy-card .link-arrow { align-self: flex-start; font-size: var(--fs-small); }
.therapy-card .link-arrow:hover { color: var(--coral); border-color: var(--coral); }

.therapy-card--dark {
  background: linear-gradient(155deg, var(--ink) 0%, var(--teal-mid) 100%);
  border: none;
  color: var(--on-dark);
  box-shadow: var(--shadow-card-lg);
}
.therapy-card--dark .eyebrow {
  font-size: 11px;
  letter-spacing: var(--track-label);
  margin-bottom: 8px;
}
.therapy-card--dark h3 { margin-bottom: 12px; color: var(--cream); }
.therapy-card--dark p {
  margin: 0 0 18px 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--on-dark-muted);
  flex: 1;
  text-wrap: pretty;
}
.therapy-card--dark .btn { align-self: flex-start; font-weight: 800; }

.menu__more {
  background: var(--wash-white);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 22px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  box-shadow: var(--shadow-card-soft);
}
.menu__more-copy { flex: 1 1 320px; min-width: 260px; }
.menu__more-title {
  margin: 0 0 4px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
}
.menu__more-copy p:last-child {
  margin: 0;
  font-size: var(--fs-ui);
  line-height: 1.6;
  color: var(--body);
  text-wrap: pretty;
}
.menu__more .link-arrow { font-size: var(--fs-small); white-space: nowrap; }
.menu__more .link-arrow:hover { color: var(--coral); border-color: var(--coral); }

/* =========================== Add-ons (dark) =========================== */

.addons {
  background: linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 60%, var(--plum) 130%);
  color: var(--on-dark);
}
.addons__blob {
  top: -140px; right: -100px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(232, 210, 142, 0.14), rgba(232, 210, 142, 0) 70%);
  filter: blur(30px);
  animation-duration: 12s;
}
.addons__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
  margin-bottom: clamp(36px, 4vw, 48px);
}
.addons__copy { flex: 1 1 400px; min-width: 300px; }
.addons__copy h2 { margin-bottom: 18px; color: var(--cream); }
.addons__copy .prose { margin-bottom: 0; color: var(--on-dark-muted); }
.addons__media {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 460px;
  position: relative;
  margin: 0 auto;
}
.addons__media img {
  display: block;
  width: 100%;
  border-radius: var(--r-card-lg);
  box-shadow: 0 32px 58px -28px rgba(0, 0, 0, 0.6);
  transform: rotate(-1deg);
  transition: transform var(--hover-card);
}
.addons__media img:hover { transform: rotate(0deg) scale(1.01); }
.addons__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.addon-card {
  background: rgba(220, 238, 244, 0.07);
  border: 1px solid rgba(220, 238, 244, 0.14);
  border-radius: 20px;
  padding: 24px 26px;
  transition: background var(--hover-slow), transform var(--hover-slow), border-color var(--hover-slow);
}
.addon-card:hover {
  background: rgba(220, 238, 244, 0.12);
  transform: translateY(-3px);
  border-color: rgba(232, 210, 142, 0.4);
}
.addon-card__tag {
  margin: 0 0 8px 0;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: var(--track-label);
  color: var(--accent);
}
.addon-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.addon-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  color: var(--cream);
}
.addon-card__price {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--gold);
  white-space: nowrap;
}
.addon-card__desc {
  margin: 0;
  font-size: var(--fs-small);
  line-height: 1.65;
  color: var(--on-dark-muted);
  text-wrap: pretty;
}
.addon-card__note {
  margin: 10px 0 0 0;
  font-size: var(--fs-micro);
  font-style: italic;
  color: var(--on-dark-faint);
}

/* =========================== About your session =========================== */

.aboutspa { background: linear-gradient(175deg, var(--cream) 0%, var(--sand) 60%, var(--tint-green) 100%); }
.aboutspa__blob {
  top: 10%; right: -160px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(199, 216, 201, 0.5), rgba(199, 216, 201, 0) 70%);
  filter: blur(30px);
}
.aboutspa__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
}
.aboutspa__media {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 480px;
  position: relative;
  margin: 0 auto;
}
.aboutspa__media img {
  display: block;
  width: 100%;
  border-radius: var(--r-card-lg);
  box-shadow: var(--shadow-photo);
  transform: rotate(0.6deg);
}
.aboutspa__float { bottom: -14px; left: 16px; }
.aboutspa__copy { flex: 1 1 400px; min-width: 300px; }
.aboutspa__copy h2 { margin-bottom: 20px; font-size: var(--fs-h2-sm); }
.aboutspa__copy .prose--last { margin-bottom: 26px; }

/* =========================== What to expect =========================== */

.expect {
  background: linear-gradient(180deg, var(--tint-green) 0%, var(--tint-pink) 130%);
  padding: clamp(64px, 8vw, 100px) var(--gutter);
}
.expect__head { max-width: 640px; margin-bottom: clamp(36px, 4vw, 52px); }
.expect__head h2 { margin-bottom: 16px; font-size: var(--fs-h2-sm); }
.expect__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  align-items: start;
}
.expect-card {
  border-radius: var(--r-card-md);
  padding: clamp(26px, 3vw, 36px);
  box-shadow: var(--shadow-card);
}
.expect-card--plain {
  background: var(--wash-white);
  border: 1px solid rgba(22, 58, 67, 0.07);
}
.expect-card--blue { border: 1px solid rgba(74, 127, 168, 0.1); }
.expect-card--pink { border: 1px solid rgba(199, 138, 178, 0.15); }
.expect-card h3 {
  margin: 0 0 18px 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--ink);
}

/* =========================== Healing Touch cross-link =========================== */

.htx {
  background: linear-gradient(175deg, var(--tint-mint) 0%, var(--tint-green) 100%);
  padding: clamp(56px, 7vw, 88px) var(--gutter);
}
.htx__card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(28px, 4vw, 52px);
  background: linear-gradient(155deg, var(--green-dark) 0%, var(--green-mid) 100%);
  border-radius: var(--r-card-xl);
  padding: clamp(30px, 4vw, 52px);
  color: var(--tint-mint);
  box-shadow: 0 30px 56px -32px rgba(46, 74, 60, 0.6);
  position: relative;
  overflow: hidden;
}
.htx__card .blob {
  top: -80px; right: -70px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(199, 216, 201, 0.28), rgba(199, 216, 201, 0) 70%);
  filter: blur(22px);
}
.htx__img {
  flex: 0 0 auto;
  width: clamp(120px, 22vw, 200px);
  height: clamp(120px, 22vw, 200px);
  object-fit: cover;
  border-radius: var(--r-card-md);
  box-shadow: 0 18px 36px -16px rgba(0, 0, 0, 0.5);
  transform: rotate(-2deg);
}
.htx__content { flex: 1 1 340px; min-width: 280px; position: relative; }
.htx__content .eyebrow { margin-bottom: 12px; }
.htx__content h2 {
  margin: 0 0 14px 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.18;
  color: var(--cream);
}
.htx__content .prose {
  margin-bottom: 22px;
  color: var(--on-dark-green);
  max-width: 56ch;
}
.htx__card .btn--cream { color: var(--green-dark); }
.htx__links {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}

/* =========================== Final CTA =========================== */

.mass-cta .prose { max-width: 56ch; margin-bottom: 10px; }
.mass-cta__fine {
  margin: 0 auto 30px auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--on-dark-faint);
}
