/* ===== RESET & TOKENS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ivory:      #F6F2EC;
  --sand:       #E8DFD3;
  --charcoal:   #121212;
  --bronze:     #8C6A43;
  --bronze-lt:  #A67C52;
  --burnt:      #2B2926;
  --stone:      #D8CDC0;
  --white:      #FFFFFF;
  --f-head:     'Cormorant Garamond', Georgia, serif;
  --f-body:     'Inter', -apple-system, sans-serif;
  --nav-h:      76px;
  --max-w:      1200px;
  --sec-v:      120px;
  --radius:     8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 16px;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== TYPOGRAPHY ATOMS ===== */
.section-eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.25rem;
}
.section-eyebrow.center { display: block; text-align: center; }
.section-eyebrow.light  { color: var(--stone); }

.section-title {
  font-family: var(--f-head);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.section-title.center { text-align: center; }
.section-title.light  { color: var(--ivory); }

.section-intro {
  max-width: 620px;
  margin: 0 auto 4.5rem;
  text-align: center;
  font-size: .95rem;
  color: rgba(18,18,18,.58);
  line-height: 1.82;
}

.section-header { margin-bottom: 4.5rem; }
.section-header .section-title { margin-bottom: .75rem; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--burnt);
  color: var(--ivory);
  padding: .95rem 2.5rem;
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid var(--burnt);
  cursor: pointer;
  transition: background .25s, transform .25s;
}
.btn-primary:hover { background: var(--charcoal); border-color: var(--charcoal); transform: translateY(-2px); }
.btn-primary:disabled { background: var(--stone); border-color: var(--stone); color: rgba(18,18,18,.4); cursor: not-allowed; transform: none; }

.btn-secondary {
  display: inline-block;
  color: var(--ivory);
  padding: .95rem 2.5rem;
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid rgba(246,242,236,.4);
  transition: border-color .25s, background .25s;
}
.btn-secondary:hover { border-color: var(--ivory); background: rgba(255,255,255,.08); }

.btn-ivory {
  display: inline-block;
  background: var(--ivory);
  color: var(--burnt);
  padding: .95rem 2.5rem;
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid var(--ivory);
  transition: background .25s, color .25s;
}
.btn-ivory:hover { background: transparent; color: var(--ivory); }

.btn-outline {
  display: inline-block;
  color: var(--charcoal);
  padding: .9rem 2.4rem;
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid var(--charcoal);
  transition: background .25s, color .25s;
}
.btn-outline:hover { background: var(--charcoal); color: var(--ivory); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease;
}
#navbar.scrolled {
  background: rgba(246,242,236,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--stone);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--f-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: .04em;
  transition: color .4s;
  white-space: nowrap;
  flex-shrink: 0;
}
#navbar.scrolled .nav-logo { color: var(--charcoal); }

.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: filter .4s;
}
#navbar.scrolled .nav-logo-img { filter: brightness(0); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(246,242,236,.78);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a[data-active] { color: var(--ivory); }
#navbar.scrolled .nav-links a { color: rgba(18,18,18,.6); }
#navbar.scrolled .nav-links a:hover,
#navbar.scrolled .nav-links a[data-active] { color: var(--charcoal); }

.nav-cta {
  display: inline-block;
  color: var(--ivory);
  padding: .6rem 1.4rem;
  font-family: var(--f-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid rgba(246,242,236,.45);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .25s, border-color .25s, color .25s;
}
.nav-cta:hover { background: var(--ivory); color: var(--charcoal); border-color: var(--ivory); }
#navbar.scrolled .nav-cta { border-color: var(--charcoal); color: var(--charcoal); }
#navbar.scrolled .nav-cta:hover { background: var(--charcoal); color: var(--ivory); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: .3s;
}
#navbar.scrolled .nav-toggle span { background: var(--charcoal); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--burnt);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(43,41,38,.72) 0%,
    rgba(43,41,38,.48) 55%,
    rgba(43,41,38,.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding: calc(var(--nav-h) + 5rem) 2rem 7rem;
}

.hero-eyebrow {
  font-family: var(--f-body);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(246,242,236,.5);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--f-head);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  letter-spacing: -.03em;
  color: var(--ivory);
  line-height: .93;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-family: var(--f-head);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(246,242,236,.72);
  margin-bottom: 3.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 56px;
  background: rgba(246,242,236,.25);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50%       { opacity: .7; transform: scaleY(.55); }
}

/* ===== ABOUT ===== */
.about {
  background: var(--ivory);
  padding: var(--sec-v) 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  top: 2rem; left: 2rem;
  right: -2rem; bottom: -2rem;
  border: 1px solid var(--stone);
  z-index: 0;
  pointer-events: none;
}

.about-content p {
  font-size: .95rem;
  color: rgba(18,18,18,.65);
  margin-bottom: 1.25rem;
  line-height: 1.82;
}

.about-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2.5rem;
}
.pillar {
  padding: .55rem 1.2rem;
  border: 1px solid var(--stone);
}
.pillar-label {
  font-family: var(--f-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* ===== BENEFITS ===== */
.benefits {
  background: var(--sand);
  padding: var(--sec-v) 0;
}
.benefits .section-eyebrow,
.benefits .section-title { margin-bottom: 1rem; }
.benefits .section-title { margin-bottom: 4rem; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--stone);
}

.benefit-item {
  background: var(--ivory);
  text-align: center;
  padding: 3.5rem 2.5rem;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze);
}

.benefit-title {
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: .75rem;
}

.benefit-desc {
  font-size: .875rem;
  color: rgba(18,18,18,.58);
  line-height: 1.78;
}

/* ===== EXPERIENCIAS ===== */
.experiencias {
  background: var(--sand);
  padding: var(--sec-v) 0;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--stone);
  margin-bottom: 1.5px;
}

.exp-card {
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.exp-card-img {
  overflow: hidden;
  aspect-ratio: 5/4;
  flex-shrink: 0;
}
.exp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}
.exp-card:hover .exp-card-img img { transform: scale(1.06); }

.exp-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--stone);
  border-right: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.exp-tag {
  font-family: var(--f-body);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: .75rem;
}

.exp-title {
  font-family: var(--f-head);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: .75rem;
}

.exp-desc {
  font-size: .85rem;
  color: rgba(18,18,18,.58);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.5rem;
}

.exp-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1.25rem;
  border-top: 1px solid var(--stone);
  margin-bottom: 1.25rem;
}

.exp-duration {
  font-size: .72rem;
  color: rgba(18,18,18,.45);
  letter-spacing: .06em;
}

.exp-price {
  font-family: var(--f-head);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
}

.exp-cta {
  display: inline-block;
  font-family: var(--f-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bronze);
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 2px;
  width: fit-content;
  transition: color .2s, border-color .2s;
}
.exp-cta:hover { color: var(--charcoal); border-color: var(--charcoal); }

/* Cuatro Manos featured */
.exp-featured {
  background: var(--burnt);
  padding: 6rem 4rem;
  text-align: center;
}
.exp-featured-inner { max-width: 680px; margin: 0 auto; }

.exp-featured-title {
  font-family: var(--f-head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}
.exp-featured-inner p {
  font-size: .95rem;
  color: rgba(246,242,236,.62);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.exp-featured-prices {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  margin-bottom: 3rem;
}
.featured-price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.featured-price-item span {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(246,242,236,.4);
}
.featured-price-item strong {
  font-family: var(--f-head);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
}

/* ===== MEMBRESÍAS ===== */
.membresias {
  background: var(--sand);
  padding: var(--sec-v) 0;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--stone);
}

.membership-card {
  background: var(--ivory);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
}
.membership-card.gold {
  background: var(--white);
  border-top: 3px solid var(--bronze);
}
.membership-card.black { background: var(--burnt); }

.membership-head {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--stone);
}
.membership-card.black .membership-head { border-bottom-color: rgba(216,205,192,.12); }

.membership-tier {
  display: block;
  font-family: var(--f-head);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: .35rem;
  letter-spacing: -.01em;
}
.membership-card.black .membership-tier { color: var(--ivory); }

.membership-sub {
  font-size: .75rem;
  color: rgba(18,18,18,.42);
  letter-spacing: .06em;
}
.membership-card.black .membership-sub { color: rgba(246,242,236,.4); }

.membership-benefits {
  flex: 1;
  margin-bottom: 2.5rem;
}
.membership-benefits li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--stone);
  font-size: .85rem;
  color: rgba(18,18,18,.72);
}
.membership-card.black .membership-benefits li {
  color: rgba(246,242,236,.68);
  border-bottom-color: rgba(216,205,192,.1);
}
.membership-benefits li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bronze);
  flex-shrink: 0;
}

.membership-cta {
  display: block;
  text-align: center;
  padding: .9rem;
  font-family: var(--f-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--stone);
  color: var(--charcoal);
  transition: background .25s, border-color .25s, color .25s;
}
.membership-cta:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--ivory); }
.membership-card.black .membership-cta { border-color: rgba(216,205,192,.25); color: var(--ivory); }
.membership-card.black .membership-cta:hover { background: var(--ivory); border-color: var(--ivory); color: var(--charcoal); }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--ivory);
  padding: var(--sec-v) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  border-top: 1px solid var(--stone);
}

.testimonial-item {
  padding-top: 2.5rem;
}

.testimonial-quote {
  font-family: var(--f-head);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

.testimonial-author {
  font-family: var(--f-body);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(18,18,18,.4);
  font-style: normal;
}

/* ===== INSTALACIONES ===== */
.instalaciones {
  background: var(--ivory);
  padding: var(--sec-v) 0;
}

.instalaciones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}

.instalacion-item {
  position: relative;
  overflow: hidden;
}
.instalacion-item.tall { grid-row: span 2; }

.instalacion-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform .65s ease;
  display: block;
}
.instalacion-item.tall img { min-height: 600px; }
.instalacion-item:hover img { transform: scale(1.04); }

.instalacion-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-family: var(--f-body);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(43,41,38,.68);
  padding: .4rem .9rem;
}

/* ===== TEAM ===== */
.team {
  background: var(--sand);
  padding: var(--sec-v) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--stone);
  margin-bottom: 1.5px;
}

.team-card {
  background: var(--ivory);
  overflow: hidden;
}

.team-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--stone);
}
.team-imgs img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform .55s ease;
}
.team-card:hover .team-imgs img { transform: scale(1.05); }

.team-info {
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--stone);
  border-top: none;
}
.team-info h3 {
  font-family: var(--f-head);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: .2rem;
}
.team-info p {
  font-size: .72rem;
  color: rgba(18,18,18,.45);
  letter-spacing: .04em;
}

.team-join {
  background: var(--ivory);
  border: 1px solid var(--stone);
  padding: 4rem;
  text-align: center;
}
.team-join p {
  font-family: var(--f-head);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 1.75rem;
}

/* ===== CONTACTO ===== */
.contacto {
  background: var(--burnt);
  padding: var(--sec-v) 0;
}

.contacto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contacto-info .section-eyebrow { margin-bottom: 1rem; }
.contacto-info .section-title   { margin-bottom: 3rem; }

.info-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(216,205,192,.1);
}

.info-label {
  font-family: var(--f-body);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(216,205,192,.38);
  padding-top: .15rem;
}

.info-value {
  font-size: .875rem;
  color: rgba(246,242,236,.68);
  line-height: 1.72;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #25d366;
  color: var(--white);
  padding: .85rem 1.75rem;
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.btn-wa:hover { background: #1fba59; transform: translateY(-2px); }

.btn-tg {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #0088cc;
  color: var(--white);
  padding: .85rem 1.75rem;
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.btn-tg:hover { background: #0077b5; transform: translateY(-2px); }

/* Form */
.form-title {
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: .5rem;
}
.form-note {
  font-size: .82rem;
  color: rgba(246,242,236,.38);
  margin-bottom: 2.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group   { display: flex; flex-direction: column; gap: .45rem; }
.form-group label {
  font-family: var(--f-body);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(216,205,192,.38);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(246,242,236,.05);
  border: 1px solid rgba(216,205,192,.18);
  color: var(--ivory);
  padding: 1rem 1.2rem;
  font-family: var(--f-body);
  font-size: .9rem;
  width: 100%;
  resize: vertical;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .2s;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238C6A43' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 2.5rem;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(246,242,236,.18); }
.form-group input:not(:disabled):focus,
.form-group textarea:not(:disabled):focus { outline: none; border-color: var(--bronze); }
.form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled { opacity: .4; cursor: not-allowed; }
.form-btn { margin-top: .25rem; }
.form-disclaimer {
  font-size: .75rem;
  color: rgba(246,242,236,.22);
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  padding: 4.5rem 0 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: start;
  border-bottom: 1px solid rgba(246,242,236,.07);
}

.footer-logo {
  font-family: var(--f-head);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: .4rem;
}
.footer-tagline {
  font-size: .68rem;
  color: rgba(246,242,236,.25);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  align-items: center;
}
.footer-nav a {
  font-family: var(--f-body);
  font-size: .75rem;
  color: rgba(246,242,236,.4);
  letter-spacing: .08em;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--ivory); }

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a { color: rgba(246,242,236,.3); transition: color .2s; }
.footer-social a:hover { color: var(--ivory); }

.footer-cta {
  display: inline-block;
  color: var(--ivory);
  padding: .65rem 1.5rem;
  font-family: var(--f-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid rgba(246,242,236,.2);
  transition: border-color .25s, background .25s;
}
.footer-cta:hover { border-color: var(--ivory); background: rgba(246,242,236,.06); }

.footer-disclaimer {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(246,242,236,.12);
}
.footer-disclaimer p {
  font-size: .7rem;
  line-height: 1.7;
  color: rgba(246,242,236,.55);
  text-align: center;
}
.footer-disclaimer strong {
  color: rgba(246,242,236,.75);
  font-weight: 500;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: .72rem;
  color: rgba(246,242,236,.18);
}
.footer-payment {
  display: flex;
  gap: .6rem;
  font-size: .68rem;
  color: rgba(246,242,236,.18);
}
.footer-payment .sep { opacity: .4; }

/* ===== FLOATING WA ===== */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.38);
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }

/* ===== FADE IN ===== */
.fi {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.fi.visible {
  opacity: 1;
  transform: translateY(0);
}
.fi.delay-1 { transition-delay: .1s; }
.fi.delay-2 { transition-delay: .2s; }
.fi.delay-3 { transition-delay: .3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .exp-grid      { grid-template-columns: repeat(2, 1fr); }
  .team-grid     { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --sec-v: 80px; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--ivory);
    padding: 2rem 3rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--stone);
    box-shadow: 0 8px 24px rgba(18,18,18,.08);
  }
  .nav-links.open a { color: var(--charcoal) !important; font-size: .85rem; }

  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap::after { display: none; }
  .about-img { aspect-ratio: 16/9; }

  .benefits-grid { grid-template-columns: 1fr; }

  .exp-grid { grid-template-columns: 1fr; }
  .exp-featured { padding: 4rem 2rem; }
  .exp-featured-prices { gap: 2rem; }

  .membership-grid { grid-template-columns: 1fr; background: transparent; gap: 1rem; }
  .membership-card.gold { border-top-width: 2px; }

  .testimonials-grid { grid-template-columns: 1fr; gap: 0; border-top: none; }
  .testimonial-item { border-top: 1px solid var(--stone); }

  .instalaciones-grid { grid-template-columns: 1fr; }
  .instalacion-item.tall { grid-row: auto; }
  .instalacion-item.tall img { min-height: 340px; }

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

  .contacto-inner { grid-template-columns: 1fr; gap: 4rem; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .footer-right { align-items: center; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  :root { --sec-v: 60px; }
  #navbar { padding: 0 1.5rem; }

  .hero-title { font-size: clamp(3rem, 13vw, 4.5rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; text-align: center; }

  .benefit-item { padding: 2.5rem 1.5rem; }

  .exp-featured-prices { gap: 1.5rem; }
  .featured-price-item strong { font-size: 2.2rem; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-join { padding: 2.5rem; }

  .info-row { grid-template-columns: 1fr; gap: .3rem; }

  .footer-payment { flex-wrap: wrap; justify-content: center; }
}

/* ===== HERO — no-image variant ===== */
.hero {
  background: radial-gradient(ellipse at 30% 60%, #3a3531 0%, #2B2926 55%, #1c1a18 100%);
}
.hero-bg { display: none; }

/* ===== SERVICIOS ===== */
.servicios {
  background: var(--ivory);
  padding: var(--sec-v) 0;
}

.svc-block {
  margin-bottom: 5rem;
}
.svc-block:last-of-type { margin-bottom: 0; }

.svc-block--alt {
  background: var(--sand);
  margin: 0 -2rem;
  padding: 4rem 2rem;
}

.svc-block-head {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 0;
  padding-bottom: 1.5rem;
  border-bottom: 1.5px solid var(--charcoal);
}

.svc-num {
  font-family: var(--f-body);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--bronze);
}

.svc-block-title {
  font-family: var(--f-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: -.02em;
}

.svc-list { margin: 0; }

.svc-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--stone);
}
.svc-item:last-child { border-bottom: none; }

.svc-main {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: .45rem;
}

.svc-name {
  font-family: var(--f-head);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
}

.svc-price {
  font-family: var(--f-head);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  white-space: nowrap;
  flex-shrink: 0;
}

.svc-sub {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.svc-duration {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--bronze);
  white-space: nowrap;
  flex-shrink: 0;
}

.svc-desc {
  font-size: .85rem;
  color: rgba(18,18,18,.55);
  line-height: 1.65;
}

.svc-footer {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--stone);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.svc-note {
  font-size: .8rem;
  color: rgba(18,18,18,.45);
  max-width: 520px;
  line-height: 1.65;
}

/* ===== THERAPIST CARD (TC) ===== */
.masajistas-section {
  background: var(--ivory);
  padding: var(--sec-v) 0 3rem;
}

.therapists-wrap {
  margin-bottom: 3rem;
}

.therapists-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 2rem 1.5rem;
  margin: 0 -2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--stone) transparent;
}
.therapists-grid::-webkit-scrollbar { height: 3px; }
.therapists-grid::-webkit-scrollbar-track { background: transparent; }
.therapists-grid::-webkit-scrollbar-thumb { background: var(--stone); border-radius: 2px; }

.tc {
  background: var(--ivory);
  border: 1px solid var(--stone);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
  flex: 0 0 340px;
  scroll-snap-align: center;
}
.tc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(18,18,18,.1);
}

.tc-header {
  padding: 1.5rem 1.5rem .75rem;
  text-align: center;
}
.tc-name {
  font-family: var(--f-head);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -.01em;
}
.tc-avail {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .35rem;
}
.tc-avail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Carousel */
.tc-carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--sand);
}
.tc-track {
  display: flex;
  height: 100%;
  transition: transform .42s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.tc-slide {
  flex: 0 0 100%;
  height: 100%;
}
.tc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(216,205,192,.7);
  background: rgba(246,242,236,.88);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--charcoal);
  transition: background .2s, border-color .2s;
  padding: 0;
  z-index: 2;
}
.tc-arrow:hover { background: var(--ivory); border-color: var(--stone); }
.tc-prev { left: .75rem; }
.tc-next { right: .75rem; }

.tc-dots {
  position: absolute;
  bottom: .85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}
.tc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(246,242,236,.45);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.tc-dot.active {
  background: var(--ivory);
  transform: scale(1.25);
}

/* Footer / accordion */
.tc-footer {
  padding: 0 1.5rem 1.25rem;
}

.tc-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  background: none;
  border: none;
  border-top: 1px solid var(--stone);
  cursor: pointer;
  font-family: var(--f-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bronze);
  transition: color .2s;
}
.tc-toggle:hover { color: var(--charcoal); }

.tc-chevron {
  transition: transform .32s ease;
  flex-shrink: 0;
}
.tc-toggle[aria-expanded="true"] .tc-chevron { transform: rotate(180deg); }

.tc-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease;
}

.tc-dl { display: flex; flex-direction: column; }
.tc-dl-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(216,205,192,.55);
}
.tc-dl-row:last-child { border-bottom: none; }
.tc-dl-row dt {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(18,18,18,.42);
  flex-shrink: 0;
}
.tc-dl-row dd {
  font-size: .85rem;
  color: var(--charcoal);
  text-align: right;
}

.tc-join {
  background: var(--ivory);
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 3.5rem 2rem;
  text-align: center;
}
.tc-join p {
  font-family: var(--f-head);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.tc-join-sub {
  font-family: var(--f-body);
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}
.tc-join-sub strong {
  color: var(--bronze);
  font-weight: 500;
}


/* ===== RESPONSIVE — new components ===== */

@media (max-width: 900px) {
  .svc-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .tc { flex: 0 0 calc(100vw - 5rem); }
  .svc-main { flex-direction: column; gap: .25rem; }
  .svc-price { font-size: 1.1rem; }
}

/* ===== EXPERIENCIAS — STACKED HORIZONTAL CARDS ===== */

/* Subsection structure */
.exp-subsection {
  margin-bottom: 5rem;
}
.exp-subsection:last-child { margin-bottom: 0; }

.exp-sub-head {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 0;
  border-bottom: 1.5px solid var(--charcoal);
}

.exp-sub-num {
  font-family: var(--f-body);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--bronze);
}

.exp-sub-title {
  font-family: var(--f-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: -.02em;
}

/* Card stack */
.exp-stack {
  display: flex;
  flex-direction: column;
}

/* Horizontal card */
.exp-hcard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  border-bottom: 1px solid var(--stone);
  overflow: hidden;
}
.exp-hcard:first-child { border-top: 1px solid var(--stone); }

/* Alternating image side for editorial rhythm */
.exp-hcard:nth-child(even) .exp-hcard-img { order: 2; }
.exp-hcard:nth-child(even) .exp-hcard-body { order: 1; }

.exp-hcard-img {
  overflow: hidden;
}
.exp-hcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}
.exp-hcard:hover .exp-hcard-img img { transform: scale(1.05); }

.exp-hcard-body {
  padding: 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exp-hcard-cat {
  display: block;
  font-family: var(--f-body);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1rem;
}

.exp-hcard-title {
  font-family: var(--f-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}

.exp-hcard-desc {
  font-size: .9rem;
  color: rgba(18,18,18,.6);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.exp-hcard-meta {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stone);
  margin-bottom: 2rem;
}
.exp-hcard-meta.multi {
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}
.exp-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.exp-price-row + .exp-price-row {
  margin-top: .65rem;
  padding-top: .65rem;
  border-top: 1px solid var(--stone);
}

.exp-hcard-duration {
  font-size: .72rem;
  color: rgba(18,18,18,.4);
  letter-spacing: .06em;
}

.exp-hcard-price {
  font-family: var(--f-head);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--charcoal);
}

.exp-hcard-cta {
  display: inline-block;
  font-family: var(--f-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bronze);
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 2px;
  width: fit-content;
  transition: color .2s, border-color .2s;
}
.exp-hcard-cta:hover { color: var(--charcoal); border-color: var(--charcoal); }
.exp-hcard-cta--light { color: rgba(246,242,236,.8); border-bottom-color: rgba(246,242,236,.3); }
.exp-hcard-cta--light:hover { color: var(--ivory); border-bottom-color: var(--stone); }

/* Hero card — Cuatro Manos */
.exp-hcard--hero {
  background: var(--burnt);
  grid-template-columns: 55% 45%;
  min-height: 500px;
  border-color: rgba(216,205,192,.12);
}
.exp-hcard--hero:nth-child(even) .exp-hcard-img { order: 1; }
.exp-hcard--hero:nth-child(even) .exp-hcard-body { order: 2; }

.exp-hcard-badge {
  display: inline-block;
  font-family: var(--f-body);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bronze);
  border: 1px solid rgba(140,106,67,.45);
  padding: .35rem .9rem;
  margin-bottom: 1.5rem;
}

.exp-hcard--hero .exp-hcard-title { color: var(--ivory); }
.exp-hcard--hero .exp-hcard-desc  { color: rgba(246,242,236,.62); }

/* Multi-price display (hero) */
.exp-hcard-prices {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(216,205,192,.14);
}

.price-pill {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.price-pill span {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(246,242,236,.32);
}
.price-pill strong {
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .exp-hcard {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .exp-hcard-img { min-height: 300px; }
  .exp-hcard--hero { grid-template-columns: 1fr; min-height: auto; }
  .exp-hcard--hero .exp-hcard-img { min-height: 340px; }

  /* reset alternating on mobile */
  .exp-hcard:nth-child(even) .exp-hcard-img { order: 1; }
  .exp-hcard:nth-child(even) .exp-hcard-body { order: 2; }

  .exp-hcard-body { padding: 2.5rem 2rem; }
  .exp-hcard-prices { gap: 1.5rem; }
}

@media (max-width: 600px) {
  .exp-hcard-prices { flex-wrap: wrap; gap: 1.25rem; }
  .price-pill strong { font-size: 1.6rem; }
}
