/* MASSAGE — Ultra-minimal zen · Full-screen centered hero · Horizontal service strips */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --void: #090f0f;
  --dark: #0f1818;
  --dark2: #172020;
  --dark3: #1f2c2c;
  --sage: #6a9478;
  --sage-l: #8ab49a;
  --amber: #c4905a;
  --amber-l: #dda870;
  --cream: #ede5d8;
  --mist: #8a9e9a;
  --font-d: "Playfair Display", serif;
  --font-b: "Lato", sans-serif;
  --tr: 0.4s ease;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-b);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.75;
}
a {
  text-decoration: none;
  color: inherit;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

/* ── NAV — minimal ─── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--tr);
}
#navbar.scrolled {
  background: rgba(9, 15, 15, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(106, 148, 120, 0.12);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nl-mark {
  color: var(--sage);
  font-size: 1rem;
}
.nl-name {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  transition: color var(--tr);
}
.nav-links a:hover {
  color: var(--cream);
}
.nav-cta {
  color: var(--sage) !important;
  border: 1px solid var(--sage) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 20px;
  font-weight: 700 !important;
  transition:
    background var(--tr) !important,
    color var(--tr) !important;
}
.nav-cta:hover {
  background: var(--sage) !important;
  color: var(--dark) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
}
.mobile-menu {
  display: none;
  background: rgba(9, 15, 15, 0.98);
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(106, 148, 120, 0.15);
}
.mobile-menu.open {
  display: block;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.mobile-menu a {
  font-size: 1.05rem;
  color: var(--cream);
}

/* ── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--sage);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition:
    background var(--tr),
    transform var(--tr),
    box-shadow var(--tr);
  font-family: var(--font-b);
}
.btn-primary:hover {
  background: var(--sage-l);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(106, 148, 120, 0.25);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--mist);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.88rem 2.4rem;
  border-radius: 25px;
  border: 1px solid rgba(237, 229, 216, 0.2);
  cursor: pointer;
  transition:
    border-color var(--tr),
    color var(--tr);
  font-family: var(--font-b);
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── HERO — full-screen centered, breathing rings ─── */
#hero {
  min-height: 100vh;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(106, 148, 120, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}
/* Breathing concentric rings */
.hero-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hr {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}
.hr1 {
  width: 750px;
  height: 750px;
  border-color: rgba(106, 148, 120, 0.07);
  animation: breathe 7s ease-in-out infinite;
}
.hr2 {
  width: 550px;
  height: 550px;
  border-color: rgba(106, 148, 120, 0.1);
  animation: breathe 7s ease-in-out infinite 1.5s;
}
.hr3 {
  width: 380px;
  height: 380px;
  border-color: rgba(196, 144, 90, 0.12);
  animation: breathe 7s ease-in-out infinite 3s;
}
.hr4 {
  width: 220px;
  height: 220px;
  border-color: rgba(196, 144, 90, 0.18);
  animation: breathe 7s ease-in-out infinite 4.5s;
}
@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 2rem;
  max-width: 680px;
}
.hero-pre {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2rem;
  display: block;
}
.hero-content h1 {
  font-family: var(--font-d);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.75rem;
}
.hero-content h1 em {
  color: var(--sage);
  font-style: italic;
}
.hero-sub {
  font-size: 1rem;
  color: var(--mist);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.hero-scroll-link {
  display: block;
  margin-top: 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 300;
  transition: color var(--tr);
}
.hero-scroll-link:hover {
  color: var(--cream);
}

/* ── SERVICES — alternating full-width horizontal strips ─── */
#services {
  background: var(--dark);
}
.services-header {
  text-align: center;
  padding: 8rem 2rem 4rem;
}
.services-header h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
}
.services-header h2 em {
  color: var(--sage);
  font-style: italic;
}
/* Each strip is full-width */
.service-strip {
  display: grid;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  transition: background var(--tr);
}
.service-strip:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.service-strip:hover {
  background: rgba(106, 148, 120, 0.03);
}
.ss-left {
  grid-template-columns: 120px 1fr auto;
}
.ss-right {
  grid-template-columns: auto 1fr 120px;
  background: rgba(255, 255, 255, 0.015);
}
.ss-num {
  font-family: var(--font-d);
  font-size: 5rem;
  color: rgba(106, 148, 120, 0.08);
  line-height: 1;
  padding: 2.5rem 3rem;
  font-style: italic;
  font-weight: 700;
  white-space: nowrap;
}
.ss-right .ss-num {
  order: 3;
}
.ss-content {
  padding: 2.5rem 3rem;
}
.ss-right .ss-content {
  order: 2;
}
.ss-content h3 {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ss-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  border: 1px solid rgba(196, 144, 90, 0.35);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.ss-content p {
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.75;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 0.75rem;
}
.ss-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.ss-options span {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.28rem 0.8rem;
  background: rgba(106, 148, 120, 0.08);
  color: var(--sage-l);
  border-radius: 3px;
}
.ss-book {
  padding: 2.5rem 3rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  transition: color var(--tr);
  white-space: nowrap;
  opacity: 0;
}
.ss-right .ss-book {
  order: 1;
}
.service-strip:hover .ss-book {
  opacity: 1;
}

/* ── ABOUT — centered with pull quote ─── */
#about {
  padding: 9rem 2rem;
  background: var(--void);
  text-align: center;
}
.about-center {
  max-width: 720px;
  margin: 0 auto;
}
.about-symbol {
  font-size: 3.5rem;
  color: var(--sage);
  display: block;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px rgba(106, 148, 120, 0.3));
}
.about-quote {
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.5;
  margin: 0.75rem 0 2.5rem;
}
.about-text p {
  font-size: 0.95rem;
  color: var(--mist);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.about-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.as-item {
  text-align: center;
}
.as-num {
  font-family: var(--font-d);
  font-size: 3rem;
  color: var(--sage);
  font-style: italic;
  display: inline;
}
.as-item p {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 0.35rem;
}
.as-div {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
}

/* ── BENEFITS — single horizontal icon row ─── */
#benefits {
  padding: 6rem 2rem;
  background: var(--dark2);
}
.benefits-bar {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.benefits-bar h2 {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 3.5rem;
}
.ben-row {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.ben-item {
  flex: 1;
  padding: 2rem 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  transition: background var(--tr);
}
.ben-item:last-child {
  border-right: none;
}
.ben-item:hover {
  background: rgba(106, 148, 120, 0.05);
}
.ben-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.75rem;
}
.ben-item h4 {
  font-family: var(--font-d);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.ben-item p {
  font-size: 0.78rem;
  color: var(--mist);
  line-height: 1.6;
  font-weight: 300;
}

/* ── THERAPISTS — clean list, no avatar boxes ─── */
#therapists {
  padding: 8rem 0;
  background: var(--dark);
}
.therapists-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.th-header {
  text-align: center;
  margin-bottom: 4rem;
}
.th-header h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
}
.th-header p {
  color: var(--mist);
  margin-top: 0.6rem;
  font-weight: 300;
}
.th-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.th-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  align-items: start;
}
.th-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.thi-mark {
  font-size: 1.2rem;
  color: var(--sage);
  margin-top: 0.3rem;
  filter: drop-shadow(0 0 8px rgba(106, 148, 120, 0.4));
}
.thi-content h3 {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.thi-role {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  display: block;
  margin-bottom: 0.65rem;
}
.thi-content p {
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-weight: 300;
}
.thi-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.thi-tags span {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.22rem 0.7rem;
  background: rgba(106, 148, 120, 0.08);
  color: var(--sage-l);
  border: 1px solid rgba(106, 148, 120, 0.15);
  border-radius: 2px;
}

/* ── BOOKING — full-width centered minimal form ─── */
#booking {
  padding: 8rem 0;
  background: var(--void);
}
.booking-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}
.bk-header {
  text-align: center;
  margin-bottom: 3rem;
}
.bk-header h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin: 0.6rem 0 0.75rem;
}
.bk-header p {
  color: var(--mist);
  font-size: 0.9rem;
  font-weight: 300;
}
.bk-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--mist);
}
.bk-sep {
  color: rgba(255, 255, 255, 0.15);
}
.bk-form {
  display: grid;
  gap: 1.1rem;
}
.bkf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.fg label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
}
.fg-opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.7rem;
}
.fg input,
.fg select,
.fg textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(237, 229, 216, 0.12);
  color: var(--cream);
  padding: 0.85rem 0;
  font-family: var(--font-b);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--tr);
  resize: vertical;
  background: none;
}
.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(237, 229, 216, 0.2);
}
.fg select option {
  background: var(--dark2);
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-bottom-color: var(--sage);
}
.bk-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
}
.bks-icon {
  font-size: 3rem;
  color: var(--sage);
  display: block;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 16px rgba(106, 148, 120, 0.4));
}
.bk-success h3 {
  font-family: var(--font-d);
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.bk-success p {
  color: var(--mist);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* ── FOOTER ─── */
footer {
  background: var(--void);
  border-top: 1px solid rgba(106, 148, 120, 0.1);
  padding: 5rem 0 0;
}
.footer-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  text-align: center;
}
.ft-brand {
}
.ftb-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 1rem;
}
.ftb-logo span {
  color: var(--sage);
}
.ft-brand > p {
  color: var(--mist);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.ft-social {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}
.ft-social a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(237, 229, 216, 0.3);
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(237, 229, 216, 0.1);
  border-radius: 3px;
  transition:
    color var(--tr),
    border-color var(--tr);
}
.ft-social a:hover {
  color: var(--cream);
  border-color: rgba(237, 229, 216, 0.3);
}
.ft-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
}
.ft-col a {
  display: block;
  color: var(--mist);
  font-size: 0.88rem;
  margin-bottom: 0.65rem;
  font-weight: 300;
  transition: color var(--tr);
}
.ft-col a:hover {
  color: var(--cream);
}
.ft-col p {
  color: var(--mist);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 0.4rem;
  font-weight: 300;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 2rem;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: rgba(237, 229, 216, 0.2);
}

@media (max-width: 1024px) {
  .service-strip {
    grid-template-columns: 1fr !important;
  }
  .ss-num {
    padding: 2rem 2rem 0;
    font-size: 3rem;
  }
  .ss-content {
    padding: 1rem 2rem;
  }
  .ss-book {
    padding: 0 2rem 2rem;
    opacity: 1;
  }
  .ben-row {
    flex-wrap: wrap;
  }
  .ben-item {
    flex: 1;
    min-width: 30%;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .about-stats {
    flex-direction: column;
    gap: 2rem;
  }
  .as-div {
    width: 60px;
    height: 1px;
  }
  .bkf-row {
    grid-template-columns: 1fr;
  }
  .ben-item {
    min-width: 45%;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── LANGUAGE TOGGLE ─── */
.lang-toggle {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3px;
  margin-left: 1.2rem;
}
.lang-btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.35);
  padding: 2px 10px;
  border-radius: 16px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  font-family: Lato, sans-serif;
  transition: all 0.3s;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.lang-btn.active {
  background: rgba(255, 255, 255, 0.15);
  color: #c8b8a0;
}
body.lang-es .lang-btn {
  color: rgba(255, 255, 255, 0.35);
}
body.lang-es .lang-btn.active {
  background: rgba(255, 255, 255, 0.15);
  color: #c8b8a0;
}
