:root {
  --bg: #fbf8fc;
  --surface: #ffffff;
  --card: #ffffff;
  --text: #351f36;
  --muted: #765f78;
  --primary: #9b6b9e;
  --primary-2: #d9bfd9;
  --wine: #5a234f;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(90, 35, 79, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(180deg, #fbf8fc 0%, #f2e8f3 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(35, 48, 66, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-2) 100%);
  border: 1px solid rgba(155, 107, 158, 0.45);
  display: grid;
  place-items: center;
  color: var(--wine);
  position: relative;
  box-shadow: 0 8px 20px rgba(90, 35, 79, 0.18);
}

.brand-mark::before {
  content: "LM";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.12em;
  transform: translateX(-1px);
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(90, 35, 79, 0.3);
  border-radius: 50%;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--muted);
  transition: 0.3s ease;
}

.nav a.active,
.nav a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 1.3rem;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(155, 107, 158, 0.45);
  outline-offset: 3px;
}

.hero-grid,
.grid-2,
.contact-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

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

.hero-content h1,
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.08;
  margin: 10px 0 18px;
  overflow-wrap: anywhere;
}

h2,
h3,
h4 {
  overflow-wrap: anywhere;
}

.eyebrow {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

p {
  color: var(--muted);
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--wine), var(--primary));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(90, 35, 79, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #431a3b, var(--wine));
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(35, 48, 66, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.hero-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-stats div {
  background: rgba(155, 107, 158, 0.12);
  padding: 16px 18px;
  border-radius: 16px;
  min-width: 130px;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.image-card,
.service-img,
.gallery-item,
.map-box {
  isolation: isolate;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(155, 107, 158, 0.18), rgba(217, 191, 217, 0.36));
  min-height: 320px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.image-card img,
.service-img img,
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.image-card::before,
.service-img::before,
.gallery-item::before,
.map-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.48) 0,
    rgba(255, 255, 255, 0.35) 10px,
    transparent 10px,
    transparent 20px
  );
}

.content-card,
.info-card,
.testimonial-card,
.contact-form,
.cta-box {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(35, 48, 66, 0.06);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.check-list li::before {
  content: "✓";
  color: var(--primary);
  margin-right: 10px;
}

.section-heading {
  margin-bottom: 26px;
}

.cards-grid,
.gallery-grid {
  display: grid;
  gap: 22px;
}

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

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

.service-card,
.testimonial-card,
.info-card {
  position: relative;
  overflow: hidden;
}

.service-icon {
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 18px;
}

.gallery-item {
  min-height: 220px;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--text);
}

.contact-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(90, 35, 79, 0.16);
  background: #ffffff;
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9a829b;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(155, 107, 158, 0.14);
  outline: none;
}

.map-box {
  display: grid;
  place-items: center;
  color: var(--text);
  margin-bottom: 22px;
}

.map-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form input,
.contact-form textarea {
  min-width: 0;
}

.footer-grid > * {
  min-width: 0;
}

.footer {
  padding: 50px 0 20px;
  background: #f1e7f2;
  border-top: 1px solid rgba(35, 48, 66, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.footer a,
.footer p {
  display: block;
  margin: 8px 0;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 28px;
  border-top: 1px solid rgba(35, 48, 66, 0.06);
  padding-top: 18px;
  text-align: center;
}

.whatsapp-float,
.back-to-top {
  position: fixed;
  right: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 999;
  border: 0;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.whatsapp-float {
  bottom: 84px;
  background: var(--wine);
  color: #fff;
}

.back-to-top {
  bottom: 22px;
  background: linear-gradient(135deg, #9b6b9e, #d9bfd9);
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-image,
.service-img {
  min-height: 220px;
}

.cta-box {
  text-align: center;
}

.text-link {
  color: var(--primary);
  font-weight: 600;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.package-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(35, 48, 66, 0.06);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.featured-package {
  border-color: rgba(155, 107, 158, 0.45);
  transform: translateY(-8px);
}

.package-card h3 {
  margin: 12px 0 8px;
}

.package-price {
  display: block;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 16px;
}

.package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.package-list li {
  color: var(--muted);
  margin: 10px 0;
}

.package-list li::before {
  content: "✓";
  color: var(--primary);
  margin-right: 10px;
}

.massage-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.massage-details h3 {
  margin-top: 0;
}