/* ── CLEO CLINIC · Global Styles v2 ── */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;1,200;1,300&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --white:      #FFFFFF;
  --cream:      #FAF8F4;
  --gold:       #A97C50;
  --gold-mid:   #C9A96E;
  --gold-light: #E8D5B0;
  --gold-pale:  #F7F0E6;
  --blue:       #7A9FB8;
  --blue-light: #B8D0E0;
  --blue-pale:  #EBF2F7;
  --text:       #2E2A26;
  --text-mid:   #7A6F65;
  --text-light: #ABA39A;
  --border:     rgba(169,124,80,0.18);
  --border-mid: rgba(169,124,80,0.28);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 19.2px; } /* 16 * 1.2 = 19.2px (+20%) */
body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

h1, h2, h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: 0.06em;
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 2.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}

.logo { display: flex; align-items: center; height: 65px; flex-shrink: 0; }
.logo img { height: 65px; width: auto; display: block; }
.logo-text-fallback {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 200;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: lowercase;
}

nav { display: flex; align-items: center; gap: 0; }

nav > a {
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  padding: 0.5rem 0.9rem;
  transition: color 0.2s;
  white-space: nowrap;
}
nav > a:hover { color: var(--text); }

.dropdown { position: relative; }
.dropdown-toggle {
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 0.3rem;
  border: none; background: none;
}
.dropdown-toggle:hover { color: var(--text); }
.dropdown-toggle .chevron { transition: transform 0.2s; display: flex; }
.dropdown:hover .dropdown-toggle .chevron { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: 3px;
  min-width: 195px;
  padding: 0.45rem 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 10px 36px rgba(46,42,38,0.1);
}
.dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.3rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--gold-pale); color: var(--text); }

.btn-nav-reserva {
  margin-left: 0.6rem;
  padding: 0.5rem 1.3rem;
  background: var(--gold);
  color: var(--white) !important;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.22s !important;
  white-space: nowrap;
}
.btn-nav-reserva:hover { background: #8a6340 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all 0.3s; }

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  max-height: calc(100vh - 68px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  letter-spacing: 0.06em;
}
.mobile-nav .mob-section-title {
  font-family: 'Jost', sans-serif;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border: none;
}
.mobile-nav a.sub { padding-left: 1rem; font-size: 0.82rem; }
.mobile-nav .btn-reserva-mob {
  margin-top: 1rem;
  display: block;
  padding: 0.75rem;
  background: var(--gold);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  text-align: center;
}

/* ── HERO ── */
.hero {
  padding-top: 88px;
  min-height: 86vh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -160px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -130px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,159,184,0.13) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem 2.5rem;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--blue-light);
}

.hero h1 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(2rem, 4.8vw, 3.84rem);
  font-weight: 100;
  color: var(--text);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1.08;
}
.hero h1 .accent {
  font-weight: 300;
  color: var(--gold);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.85em;
}

.hero-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 0.85rem; margin: 1.4rem 0 1.4rem;
}
.hero-divider::before, .hero-divider::after { content: ''; width: 50px; height: 1px; background: var(--gold-light); }
.hero-divider-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.55; }

.hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto 1rem;
  line-height: 2;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.hero-feature svg { color: var(--gold); flex-shrink: 0; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border);
  padding-top: 2.25rem;
  flex-wrap: wrap;
  gap: 0;
}
.hero-stat {
  padding: 0 2.5rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2.1rem;
  font-weight: 200;
  color: var(--gold);
  letter-spacing: 0.08em;
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-top: 0.3rem;
}

.hero-image-band {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 190px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.hero-band-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0.85rem;
  cursor: pointer;
}
.hero-band-item:nth-child(1) { background: var(--gold-pale); }
.hero-band-item:nth-child(2) { background: var(--blue-pale); }
.hero-band-item:nth-child(3) { background: #F2EBE0; }
.hero-band-item:nth-child(4) { background: #E8F0F6; }
.hero-band-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hero-band-item:hover img { transform: scale(1.05); }
.hero-band-label {
  position: relative; z-index: 2;
  font-family: 'Jost', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: rgba(255,255,255,0.84);
  padding: 0.22rem 0.6rem;
  border-radius: 2px;
}
.band-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--text); color: var(--white);
  font-family: 'Jost', sans-serif; font-size: 0.74rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 2px; transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2rem;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: 'Jost', sans-serif; font-size: 0.74rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 2px; transition: all 0.25s;
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 1rem 2.5rem;
  background: var(--gold); color: var(--white) !important;
  font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 2px; transition: background 0.25s, transform 0.2s;
}
.btn-gold:hover { background: #8a6340; transform: translateY(-2px); }

/* ── SERVICES STRIP ── */
.services-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-strip-inner {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.services-strip-inner::-webkit-scrollbar { display: none; }

.services-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  white-space: nowrap;
  padding: 1.15rem 1.75rem;
  border-right: 1px solid var(--border);
  transition: background 0.22s, color 0.22s;
  position: relative;
  flex: 1;
}
.services-strip a:hover { background: var(--gold-pale); color: var(--gold); }
.services-strip a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.22s ease;
  transform-origin: left;
}
.services-strip a:hover::after { transform: scaleX(1); }
.strip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-light); flex-shrink: 0; transition: background 0.2s; }
.services-strip a:hover .strip-dot { background: var(--gold); }
/* INDIBA strip link highlight */
.strip-indiba { color: var(--gold) !important; }
.strip-indiba .strip-dot { background: var(--gold) !important; }

/* ── SECTIONS ── */
section { padding: 5rem 6rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 200;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.section-header p { font-size: 0.88rem; color: var(--text-mid); max-width: 700px; margin: 0.7rem auto 0; line-height: 1.9; white-space: nowrap; }

/* ── SERVICES GRID ── */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 0.7rem;
  cursor: pointer; transition: background 0.22s;
  text-decoration: none; color: inherit; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue-light));
  transform: scaleX(0); transition: transform 0.3s ease; transform-origin: left;
}
.service-card:hover { background: var(--cream); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 30px; height: 30px; color: var(--gold); }
.service-card h3 {
  font-family: 'Josefin Sans', sans-serif; font-size: 1.1rem;
  font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text);
}
.service-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.8; }
.service-card .card-link {
  font-size: 0.68rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--gold); margin-top: 0.5rem;
  display: flex; align-items: center; gap: 0.4rem; transition: gap 0.2s;
}
.service-card:hover .card-link { gap: 0.7rem; }

/* ── INDIBA ── */
.indiba-section { background: var(--cream); padding: 5rem 6rem; }
.indiba-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.indiba-text h2 { font-size: clamp(2rem, 3.5vw, 2.9rem); font-weight: 200; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.indiba-text h2 em { font-style: italic; color: var(--gold); font-weight: 300; text-transform: none; letter-spacing: 0.03em; }
.indiba-text p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.95; margin-bottom: 0.85rem; text-align: justify; }
.indiba-badges { display: flex; gap: 0.65rem; margin: 1.5rem 0 2rem; flex-wrap: wrap; }
.indiba-badges-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.indiba-badge {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-pale); border: 1px solid var(--blue-light);
  padding: 0.38rem 0.8rem; border-radius: 2px;
}
.indiba-badges-grid .indiba-badge { justify-content: center; }
.ba-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: start; }
.ba-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-slot { position: relative; aspect-ratio: 4/3; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ba-clickable { cursor: zoom-in; }
.ba-zoom-icon {
  position: absolute; bottom: 0.4rem; right: 0.4rem;
  background: rgba(255,255,255,0.82);
  color: var(--text-mid);
  font-size: 0.85rem;
  width: 24px; height: 24px;
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
  pointer-events: none;
  z-index: 3;
}
.ba-clickable:hover .ba-zoom-icon { opacity: 1; }
.ba-slot img { width: 100%; height: 100%; object-fit: cover; }
.ba-slot.after { background: var(--blue-pale); }
.ba-slot-placeholder { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--text-light); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.ba-slot-placeholder svg { color: var(--gold-light); }
.ba-label { position: absolute; top: 0.5rem; left: 0.5rem; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; padding: 0.2rem 0.55rem; border-radius: 2px; background: rgba(255,255,255,0.85); color: var(--text-mid); }
.ba-slot.after .ba-label { color: var(--blue); }
.ba-caption { padding: 0.7rem 1rem; font-size: 0.74rem; color: var(--text-mid); border-top: 1px solid var(--border); letter-spacing: 0.04em; text-align: center; }

/* ── RESERVA ── */
.reserva-section { background: var(--text); padding: 5rem 6rem; text-align: center; }
.reserva-section .section-label { color: var(--gold-light); }
.reserva-section h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 200; color: var(--white); margin-bottom: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }
.reserva-section p { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-bottom: 2.5rem; line-height: 1.9; }

/* ── INFO ── */
.info-section { background: var(--white); padding: 4rem 6rem; }
.info-grid { display: grid; gap: 2.5rem; }
.info-grid-4 { grid-template-columns: repeat(4, 1fr); }
.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.info-item-header {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.info-item-icon { width: 28px; height: 28px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.info-item h4 { font-family: 'Jost', sans-serif; font-size: 0.67rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.info-item p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.8; }
.info-item > a { font-size: 0.82rem; color: var(--text-mid); }
.info-item > a:hover { color: var(--gold); }

/* Map embed */
.map-embed { border-radius: 3px; overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { display: block; }

/* Hours list */
.hours-list { display: flex; flex-direction: column; gap: 0.55rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-size: 0.8rem; color: var(--text); font-weight: 400; white-space: nowrap; }
.hours-time { font-size: 0.78rem; color: var(--text-mid); text-align: right; }
.hours-closed .hours-day, .hours-closed .hours-time { color: var(--text-light); }

/* Contact links */
.contact-links { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.contact-link:last-of-type { border-bottom: none; }
.contact-link:hover { color: var(--gold); }
.contact-link svg { color: var(--gold); flex-shrink: 0; }

.contact-btns { display: flex; gap: 0.55rem; margin-top: 0.5rem; flex-wrap: wrap; }
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  transition: opacity 0.2s, transform 0.2s;
  flex: 1;
  justify-content: center;
  min-width: 120px;
}
.contact-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.contact-btn-wa {
  background: #25D366;
  color: var(--white);
}
.contact-btn-ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
}

/* ── FOOTER ── */
footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 0.6rem 6rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  overflow: hidden;
}
.footer-logo { display: flex; align-items: center; height: 22px; overflow: hidden; }
.footer-logo img { height: 40px; width: auto; margin-top: 0; }
.footer-logo-text { font-family: 'Josefin Sans', sans-serif; font-size: 0.9rem; font-weight: 200; letter-spacing: 0.14em; color: var(--gold); text-transform: lowercase; }
footer p { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.06em; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ── PAGE INTERIORS ── */
.page-hero { padding-top: 72px; background: var(--cream); border-bottom: 1px solid var(--border); text-align: center; }
.page-hero-inner { padding: 3.5rem 6rem 3rem; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 200; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.75rem; }
.page-hero p { font-size: 0.88rem; color: var(--text-mid); max-width: 540px; margin: 0 auto; line-height: 1.9; }

.services-list { background: var(--white); padding: 3.5rem 6rem; }
.service-row { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); gap: 1.5rem; }
.service-row:last-child { border-bottom: none; }
.service-row-name { font-family: 'Jost', sans-serif; font-size: 0.88rem; color: var(--text); min-width: 180px; }
.service-row-desc { font-size: 0.8rem; color: var(--text-mid); flex: 1; }
.service-row-price { font-family: 'Josefin Sans', sans-serif; font-size: 1.1rem; font-weight: 200; color: var(--gold); white-space: nowrap; letter-spacing: 0.06em; }

/* Fade animation */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (min-width: 1400px) {
  section, .indiba-section, .reserva-section, .info-section { padding-left: 8rem; padding-right: 8rem; }
  .services-list, .page-hero-inner { padding-left: 8rem; padding-right: 8rem; }
  footer { padding-left: 8rem; padding-right: 8rem; }
  header { padding: 0 4rem; }
}

@media (max-width: 1100px) {
  section, .indiba-section, .reserva-section, .info-section { padding-left: 3rem; padding-right: 3rem; }
  .info-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .services-list, .page-hero-inner { padding-left: 3rem; padding-right: 3rem; }
  footer { padding-left: 3rem; padding-right: 3rem; }
  header { padding: 0 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .indiba-inner { gap: 3rem; }
  .hero-stat { padding: 0 1.5rem; }
}

/* ══════════════════════════════════════
   MOBILE — Pixel 7 / iPhone / Android
   ══════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── HEADER — initial: 25% slimmer than before ── */
  nav { display: none; }
  .hamburger { display: flex; }

  header {
    position: fixed;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    padding: 0 1rem;
    height: 76px;
    transition: height 0.3s ease, box-shadow 0.3s ease;
  }
  /* Scrolled state — added via JS */
  header.scrolled {
    height: 42px;           /* 50% of 114px */
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  }
  header .logo {
    grid-column: 2;
    justify-self: center;
  }
  header .hamburger {
    grid-column: 3;
    justify-self: end;
	align-self: center;
  }

  .logo {
    height: 65px;         
    margin: 0 auto;
    transition: height 0.3s ease;
    overflow: hidden;
  }
  .logo img {
    height: 65px;
    transition: height 0.3s ease;
  }
  header.scrolled .logo       { height: 28px; }
  header.scrolled .logo img   { height: 28px; }

  .mobile-nav { top: 64px; max-height: calc(100vh - 64px); transition: top 0.3s ease; }
  header.scrolled ~ .mobile-nav { top: 57px; max-height: calc(100vh - 57px); }

  /* ── HERO ── */
  .hero { padding-top: 72px; min-height: auto; }
  .hero-inner {
    padding: 2.25rem 1rem 1.75rem;
    max-width: 100%;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }
  .hero h1 { font-size: clamp(1.6rem, 6.5vw, 2.4rem); letter-spacing: 0.08em; }
  .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.14em; gap: 0.5rem; max-width: 100%; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 20px; }
  .hero-sub { font-size: 0.83rem; margin-bottom: 0.75rem; padding: 0; max-width: 100%; margin-left: 0; margin-right: 0; }
  .hero-features { gap: 0.75rem; margin-bottom: 1.75rem; flex-wrap: wrap; justify-content: center; }
  .hero-feature { font-size: 0.67rem; }
  .hero-actions { gap: 0.65rem; margin-bottom: 2rem; }
  .btn-primary, .btn-outline { padding: 0.7rem 1.25rem; font-size: 0.7rem; }

  .hero-stats { padding-top: 1.5rem; }
  .hero-stat { padding: 0 0.6rem; }
  .hero-stat-num { font-size: 1.2rem; letter-spacing: 0.04em; }
  .hero-stat-label { font-size: 0.52rem; letter-spacing: 0.08em; }

  /* ── HERO IMAGE BAND — 2×2 grid ── */
  .hero-image-band {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 110px 110px;
    height: 220px;
    overflow: visible;
  }
  .hero-band-item { min-height: 110px; }
  .hero-band-label { font-size: 0.62rem; padding: 0.22rem 0.5rem; }

  /* ── SERVICES STRIP — 2+2+2+1 ── */
  .services-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
  }
  .services-strip a {
    padding: 0.9rem 0.5rem;
    font-size: 0.67rem;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    flex: unset;
    justify-content: center;
  }
  /* Even items: no right border */
  .services-strip-inner a:nth-child(2n) { border-right: none; }
  /* 5th and 6th (row above Bronceado): keep bottom border so Bronceado has a top border */
  /* All rows have border-bottom already; last row (Bronceado) needs a visible top separator */
  /* Row 3 (items 5+6) keep bottom border = top separator for Bronceado */
  .services-strip-inner a:nth-child(5),
  .services-strip-inner a:nth-child(6) {
    border-bottom: 1px solid var(--border);
  }
  .services-strip-inner a:last-child {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
    border-top: none; /* border comes from items 5+6 above */
  }

  /* ── SECTIONS ── */
  section, .indiba-section, .info-section { padding: 2.5rem 1rem; }
  .services-list { padding: 2rem 1rem; }
  .page-hero-inner { padding: 2.25rem 1rem 1.75rem; }

  /* Overflow kill */
  .hero, .hero-stats, .hero-features, .services-strip,
  section, .indiba-section,
  .info-section, .services-section, footer {
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  /* ── SECTION HEADER ── */
  .section-header { margin-bottom: 2rem; }
  .section-header h2 { font-size: 1.6rem; }
  .section-header p { font-size: 0.82rem; white-space: normal; max-width: 100%; padding: 0; }
  .page-hero p { max-width: 100%; }

  /* ── SERVICE CARDS ── */
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card { padding: 1.5rem 1rem; gap: 0.5rem; }
  .service-card h3 { font-size: 0.85rem; }
  .service-card p { font-size: 0.75rem; line-height: 1.6; }
  .service-card .card-link { font-size: 0.62rem; }
  .service-icon { width: 24px; height: 24px; }

  /* ── INDIBA ── */
  .indiba-inner { grid-template-columns: 1fr; gap: 2rem; }
  .indiba-text h2 { font-size: 1.7rem; }
  .indiba-text p { font-size: 0.82rem; }

  /* ── INFO ── */
  .info-grid-4 { grid-template-columns: 1fr; gap: 1.75rem; }
  .contact-btns { flex-direction: row; }
  .hours-row { flex-direction: column; align-items: flex-start; gap: 0.15rem; }
  .hours-time { text-align: left; }

  /* ── SERVICE LIST pages ── */
  .service-row { flex-wrap: wrap; gap: 0.3rem; }
  .service-row-desc { flex: 100%; padding: 0; }
  .service-row-name { flex: 1; }

  /* ── FOOTER ── */
  footer {
    padding: 0.75rem 1rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-align: center;
  }
  .footer-logo { justify-content: center; }
  .footer-links { justify-content: center; gap: 1.25rem; }
  footer p { font-size: 0.65rem; }
}

/* ── Very narrow (≤390px) ── */
@media (max-width: 390px) {
  header { height: 100px; }
  header.scrolled { height: 52px; }
  .logo { height: 36px; }
  .logo img { height: 36px; }
  header.scrolled .logo     { height: 44px; }
  header.scrolled .logo img { height: 44px; }
  .mobile-nav { top: 100px; max-height: calc(100vh - 100px); }
  .hero { padding-top: 100px; }
  .hero h1 { font-size: 1.45rem; letter-spacing: 0.06em; }
  .hero-sub { font-size: 0.78rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stat-num { font-size: 1.1rem; }
  .hero-stat-label { font-size: 0.5rem; }
}

/* ── Landscape phones ── */
@media (max-width: 768px) and (orientation: landscape) {
  header { height: 72px; }
  header.scrolled { height: 44px; }
  .logo { height: 62px; }
  .logo img { height: 62px; }
  header.scrolled .logo     { height: 36px; }
  header.scrolled .logo img { height: 36px; }
  .mobile-nav { top: 72px; max-height: calc(100vh - 72px); }
  .hero { padding-top: 72px; }
  .hero-inner { padding: 1.25rem 1.25rem 0.75rem; }
  .hero h1 { font-size: 1.6rem; }
  .hero-stats { padding-top: 1rem; }
  .hero-image-band { grid-template-rows: 80px 80px !important; }
}


/* ── LIGHTBOX ── */
.ba-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20,16,12,0.94);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1.5rem;
}
.ba-lightbox.open { display: flex; }

.ba-lb-content {
  position: relative;
  max-width: min(90vw, 680px);
  max-height: 70vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.ba-lb-content img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.ba-lb-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 2rem;
  color: rgba(255,255,255,0.4);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.ba-lb-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}
.ba-lb-close:hover { background: rgba(255,255,255,0.22); }

.ba-lb-prev, .ba-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.8rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 10;
  line-height: 1;
}
.ba-lb-prev { left: 0.75rem; }
.ba-lb-next { right: 0.75rem; }
.ba-lb-prev:hover, .ba-lb-next:hover { background: rgba(255,255,255,0.2); }

.ba-lb-caption {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  margin-top: 1rem;
  text-align: center;
}
.ba-lb-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.ba-lb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.2s;
}
.ba-lb-dot.active { background: var(--gold); }

@media (max-width: 768px) {
  .ba-lb-prev { left: 0.25rem; }
  .ba-lb-next { right: 0.25rem; }
  .ba-lb-prev, .ba-lb-next { width: 38px; height: 38px; font-size: 1.5rem; }
  .ba-lb-content { max-height: 55vh; }
  .ba-lb-content img { max-height: 55vh; }
}

/* ── Mobile scrolled-slim header ── */
@media (max-width: 768px) {
  header.mob-slim {
    height: 42px;
    padding: 0 0.75rem;
  }
  header.mob-slim .logo { height: 100px; }
  header.mob-slim .logo img { height: 100px; }
  body.mob-slim-active .mobile-nav { top: 42px; max-height: calc(100vh - 42px); }
}

/* ── BA full-width slots ── */
.ba-full-slot {
  position: relative; width: 100%; overflow: hidden;
  cursor: zoom-in; background: var(--cream); display: block;
}
.ba-full-slot img {
  width: 100%; height: 200px; object-fit: cover;
  display: block; transition: transform 0.4s ease;
}
.ba-full-slot:hover img { transform: scale(1.02); }
.ba-full-labels {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.4rem 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
  pointer-events: none;
}
.ba-full-label-left, .ba-full-label-right {
  font-family: 'Jost', sans-serif; font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); background: rgba(0,0,0,0.28);
  padding: 0.18rem 0.55rem; border-radius: 2px;
}
.ba-full-label-sep { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.ba-full-slot .ba-zoom-icon {
  position: absolute; top: 0.5rem; right: 0.5rem; bottom: auto;
  background: rgba(255,255,255,0.82); color: var(--text-mid);
  font-size: 0.85rem; width: 24px; height: 24px; border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s; pointer-events: none;
}
.ba-full-slot:hover .ba-zoom-icon { opacity: 1; }
.ba-card-empty { opacity: 0.5; }
.ba-empty-slot {
  width: 100%; height: 200px; background: var(--cream);
  border: 2px dashed var(--border-mid);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.6rem; color: var(--text-light);
  font-family: 'Jost', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.1em; cursor: default;
}
.ba-empty-slot svg { color: var(--gold-light); }
.ba-caption strong { color: var(--text); font-weight: 500; }
.ba-caption em { color: var(--gold); font-style: normal; font-weight: 400; }
.ba-caption code {
  font-size: 0.68rem; color: var(--text-light);
  background: var(--cream); padding: 0.1rem 0.3rem; border-radius: 2px;
}
@media (max-width: 768px) {
  .ba-gallery { grid-template-columns: 1fr; }
  .ba-full-slot img { height: 160px; }
  .ba-empty-slot { height: 160px; }
}
