:root {
  --ink: #161728;
  --ink-soft: #34354b;
  --paper: #fbfaf8;
  --cream: #f3eee8;
  --lavender: #d8d7ea;
  --violet: #7557c6;
  --violet-deep: #4c3a89;
  --aqua: #29bed2;
  --mint: #64c9ad;
  --rose: #f2e3df;
  --line: rgba(22, 23, 40, .12);
  --shadow: 0 22px 60px rgba(31, 27, 55, .12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 104px 0; position: relative; }
.soft-section { background: linear-gradient(140deg, #f6f2ef 0%, #f7f5fb 55%, #eef8f8 100%); }
.eyebrow {
  margin: 0 0 12px;
  color: var(--violet-deep);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; letter-spacing: -.025em; }
h1 { margin: 0; font-size: clamp(3.3rem, 7vw, 6.7rem); max-width: 10ch; }
h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 4.7rem); }
h3 { margin: 0; font-size: 1.72rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 250, 248, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(22, 23, 40, .08);
}
.nav-shell {
  width: min(var(--container), calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--aqua), var(--violet));
  color: #fff; font-size: 1.25rem;
  box-shadow: 0 8px 24px rgba(79, 82, 168, .22);
}
.brand strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.13rem; }
.brand small { display: block; color: #6a6877; font-size: .72rem; }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: .92rem; font-weight: 700; }
.site-nav a { position: relative; }
.site-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--aqua), var(--violet)); transform: scaleX(0); transform-origin: right; transition: transform .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { background: var(--ink); color: #fff; padding: 11px 18px; border-radius: 999px; }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--ink); transition: .25s ease; }

.hero {
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(41, 190, 210, .12), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(117, 87, 198, .16), transparent 30%),
    linear-gradient(180deg, #fdfcfb, #f8f6fa);
}
.hero-grid { display: grid; grid-template-columns: 1.07fr .93fr; align-items: center; gap: 50px; }
.hero-lead { max-width: 650px; margin: 24px 0 0; color: var(--ink-soft); font-size: clamp(1.05rem, 1.7vw, 1.25rem); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.button {
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 23px; border-radius: 999px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(120deg, var(--violet-deep), var(--violet), var(--aqua)); box-shadow: 0 15px 35px rgba(80, 66, 150, .22); }
.button-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.6); }
.hero-tags { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.hero-tags span { border: 1px solid var(--line); background: rgba(255,255,255,.62); padding: 8px 12px; border-radius: 999px; font-size: .78rem; font-weight: 700; }

.hero-art { min-height: 530px; position: relative; }
.hero-card {
  position: absolute; border: 1px solid rgba(255,255,255,.58); background: rgba(255,255,255,.58); backdrop-filter: blur(18px);
  box-shadow: var(--shadow); border-radius: var(--radius-lg);
}
.hero-card-main { right: 5%; top: 8%; width: min(390px, 86%); min-height: 390px; padding: 34px; display: flex; flex-direction: column; justify-content: flex-end; }
.mini-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; color: var(--violet-deep); }
.lotus-symbol { font-size: 8.5rem; line-height: 1; margin: auto; color: transparent; -webkit-text-stroke: 1px var(--violet); filter: drop-shadow(0 12px 20px rgba(117,87,198,.18)); }
.hero-card-main p { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.23rem; }
.hero-card-small { left: 0; bottom: 8%; width: 260px; padding: 22px; }
.hero-card-small span { display: block; color: #6e6b7e; font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.hero-card-small strong { display: block; margin-top: 7px; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.halo { position: absolute; border-radius: 50%; filter: blur(1px); }
.halo-a { width: 380px; height: 380px; right: -40px; top: 30px; border: 1px solid rgba(117,87,198,.22); }
.halo-b { width: 260px; height: 260px; left: 20px; bottom: 55px; border: 1px solid rgba(41,190,210,.28); }
.spark { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 24px rgba(41,190,210,.55); }
.s1 { right: 20%; top: 3%; }.s2 { right: 5%; bottom: 26%; background: var(--violet); }.s3 { left: 18%; top: 22%; width: 6px; height: 6px; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .33; pointer-events: none; }
.hero-orb-one { width: 260px; height: 260px; background: var(--aqua); left: -120px; bottom: 40px; }
.hero-orb-two { width: 320px; height: 320px; background: var(--lavender); right: -120px; top: 100px; }

.split-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.statement-card { min-height: 360px; padding: clamp(28px, 5vw, 58px); border-radius: var(--radius-lg); background: rgba(255,255,255,.74); border: 1px solid rgba(22,23,40,.08); box-shadow: 0 15px 40px rgba(31,27,55,.06); }
.statement-card h2 { margin-bottom: 28px; }
.statement-card p:not(.eyebrow) { max-width: 48ch; font-size: 1.1rem; }
.statement-dark { background: var(--ink); color: #fff; }
.statement-dark .eyebrow { color: #a2e7ec; }
.statement-dark p { color: rgba(255,255,255,.82); }
.statement-emphasis { font-family: Georgia, "Times New Roman", serif; font-size: 1.3rem !important; color: #fff !important; }

.about-grid { display: grid; grid-template-columns: .38fr .62fr; gap: 70px; align-items: start; }
.about-heading { position: sticky; top: 120px; }
.name-chip { display: inline-flex; margin-top: 24px; padding: 10px 14px; border-radius: 999px; background: var(--cream); border: 1px solid var(--line); font-weight: 800; }
.about-copy { font-size: 1.08rem; color: var(--ink-soft); }
.about-copy p { margin-top: 0; margin-bottom: 20px; }
.about-skills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.about-skills span { padding: 9px 13px; border-radius: 999px; color: var(--ink); background: linear-gradient(135deg, rgba(216,215,234,.52), rgba(238,248,248,.7)); border: 1px solid var(--line); font-size: .8rem; font-weight: 700; }

.services-section { background: #f5f2f7; }
.section-heading { max-width: 760px; margin-bottom: 40px; }
.section-heading > p:not(.eyebrow) { margin: 16px 0 0; color: #666474; font-size: 1.06rem; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn { border: 1px solid var(--line); background: #fff; color: var(--ink); padding: 10px 15px; border-radius: 999px; cursor: pointer; font-weight: 800; font-size: .82rem; }
.filter-btn.is-active { color: #fff; background: var(--ink); border-color: var(--ink); }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.service-card { background: rgba(255,255,255,.9); border: 1px solid rgba(22,23,40,.08); border-radius: var(--radius-md); padding: 28px; box-shadow: 0 12px 34px rgba(31,27,55,.055); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(31,27,55,.10); }
.service-card[hidden] { display: none !important; }
.service-top { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 28px; }
.service-index { font-weight: 900; color: var(--aqua); letter-spacing: .06em; }
.price { border-radius: 999px; padding: 7px 11px; background: #f1eef8; color: var(--violet-deep); font-size: .78rem; font-weight: 900; text-align: right; }
.service-card h3 { margin-bottom: 14px; }
.service-card p { margin: 0; color: #5c5a68; font-size: .92rem; }
.service-card .question { margin-top: 15px; font-family: Georgia, "Times New Roman", serif; color: var(--ink); font-size: 1.03rem; }
.price-list { list-style: none; padding: 0; margin: 22px 0 0; border-top: 1px solid var(--line); }
.price-list li { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .86rem; }
.wide-card { grid-column: 1 / -1; }

.massage-section { background: var(--ink); color: #fff; overflow: hidden; }
.massage-section::before { content: ""; position: absolute; width: 450px; height: 450px; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); top: -180px; right: -80px; }
.section-heading.light .eyebrow { color: #75dfe5; }
.section-heading.light > p:not(.eyebrow) { color: rgba(255,255,255,.64); }
.massage-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.massage-card { min-height: 315px; padding: 28px; border-radius: var(--radius-md); background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035)); border: 1px solid rgba(255,255,255,.11); position: relative; overflow: hidden; }
.massage-card::after { content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%; right: -50px; bottom: -50px; background: radial-gradient(circle, rgba(41,190,210,.22), transparent 70%); }
.massage-number { color: #75dfe5; font-size: .75rem; font-weight: 900; letter-spacing: .15em; margin-bottom: 18px; }
.massage-card h3 { margin-bottom: 14px; }
.massage-card p { margin: 0 0 18px; color: rgba(255,255,255,.72); font-size: .9rem; }
.massage-card > span { display: inline-block; border: 1px solid rgba(255,255,255,.16); padding: 7px 11px; border-radius: 999px; font-size: .78rem; font-weight: 900; color: #fff; }
.massage-card small { display: block; margin-top: 10px; color: rgba(255,255,255,.58); }

.all-therapies { background: linear-gradient(180deg, #faf8f6, #f2f4f9); }
.therapy-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.therapy-cloud span { padding: 11px 14px; border-radius: 16px; border: 1px solid var(--line); background: rgba(255,255,255,.76); font-size: .86rem; font-weight: 700; box-shadow: 0 8px 18px rgba(31,27,55,.035); }

.gallery-section { background: #f8f5f2; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; align-items: start; }
.gallery-item { border: 0; padding: 0; background: #fff; border-radius: 26px; overflow: hidden; cursor: zoom-in; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease; }
.gallery-item:hover { transform: translateY(-5px); box-shadow: 0 28px 70px rgba(31,27,55,.17); }
.gallery-item img { width: 100%; height: auto; object-fit: contain; }
.gallery-feature { grid-column: 1 / -1; max-width: calc(50% - 10px); justify-self: center; }

.contact-section { background: linear-gradient(140deg, #edfafa, #f3eef8 62%, #f9f2ef); }
.contact-grid { display: grid; grid-template-columns: .43fr .57fr; gap: 48px; align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy p:not(.eyebrow) { color: #676573; }
.contact-copy .button { margin-top: 18px; }
.contact-panel { padding: 16px; border: 1px solid rgba(22,23,40,.08); background: rgba(255,255,255,.72); backdrop-filter: blur(16px); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact-row { display: grid; grid-template-columns: 180px 1fr; gap: 18px; padding: 15px 16px; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-row span { color: #747181; font-size: .78rem; font-weight: 800; }
.contact-row strong { word-break: break-word; }

.site-footer { background: #0f101c; color: #fff; padding: 38px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.footer-inner strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.footer-inner p { margin: 6px 0 0; color: rgba(255,255,255,.58); }
.footer-inner a { color: #9ce5e9; font-weight: 800; }

.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 900; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: #1f9b63; box-shadow: 0 15px 35px rgba(31,155,99,.35); font-weight: 900; letter-spacing: -.04em; }
.whatsapp-float:hover { transform: translateY(-3px); }

.lightbox { width: min(94vw, 900px); max-height: 94vh; padding: 0; border: 0; border-radius: 22px; overflow: hidden; background: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.35); }
.lightbox::backdrop { background: rgba(9,9,16,.78); backdrop-filter: blur(7px); }
.lightbox img { width: 100%; height: auto; max-height: 92vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 10px; right: 10px; z-index: 3; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(15,16,28,.84); color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; }

/* Content is visible by default so the site never depends on JavaScript to render. */
.reveal { opacity: 1; transform: none; }
.reveal.is-visible { animation: reveal-up .55s ease both; }
@keyframes reveal-up {
  from { opacity: .35; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .section-pad { padding: 82px 0; }
  .hero { min-height: auto; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 490px; max-width: 640px; width: 100%; margin: 0 auto; }
  .about-heading, .contact-copy { position: static; }
  .split-cards { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .wide-card { grid-column: auto; }
  .massage-grid { grid-template-columns: 1fr; }
  .contact-grid { gap: 28px; }

  .menu-toggle { display: block; }
  .site-nav {
    position: absolute; left: 20px; right: 20px; top: 72px;
    padding: 18px; border-radius: 18px; background: rgba(255,255,255,.97); box-shadow: var(--shadow); border: 1px solid var(--line);
    display: none; flex-direction: column; align-items: stretch; gap: 6px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 10px 11px; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 700px) {
  .container, .nav-shell { width: min(100% - 28px, var(--container)); }
  .nav-shell { min-height: 72px; }
  .brand small { display: none; }
  .hero { padding-top: 72px; }
  .hero-grid { gap: 28px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.6rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.5rem); }
  .hero-art { min-height: 430px; }
  .hero-card-main { top: 3%; right: 0; width: 88%; min-height: 330px; padding: 25px; }
  .lotus-symbol { font-size: 6.5rem; }
  .hero-card-small { width: 230px; left: 0; bottom: 1%; }
  .split-cards { gap: 14px; }
  .statement-card { min-height: unset; }
  .service-card, .massage-card { padding: 22px; }
  .service-top { align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-feature { grid-column: auto; max-width: none; }
  .contact-row { grid-template-columns: 1fr; gap: 4px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
