:root {
  --ink: #241b18;
  --ink-soft: #6e5c53;
  --paper: #f4ede5;
  --paper-deep: #e9dccd;
  --white: #fffcf9;
  --wine: #7d2b3b;
  --wine-dark: #5c1f2b;
  --gold: #a9824c;
  --line: #ddccbb;
  --radius: 3px;
  --max-width: 1120px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 .4em;
  text-wrap: balance;
}
h2 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 .75em; color: var(--ink-soft); max-width: 62ch; }
em { font-style: italic; color: var(--wine); }
a { color: var(--wine); }

.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .5rem;
}

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

.section { padding: 4.5rem 0; }
.section-alt { background: var(--paper-deep); }
.section-sub { max-width: 46ch; }

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.brand em { font-style: italic; }
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.btn-call {
  text-decoration: none;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* Hero */
.hero { padding: 3.5rem 0 4.5rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}
.hero-seal {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 24px -10px rgba(36, 27, 24, .3);
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 500;
}
.hero h1 em { font-style: italic; font-weight: 500; }
.hero-sub { font-size: 1.05rem; max-width: 40ch; }
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.75rem; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .9rem 1.1rem;
  display: flex;
  align-items: baseline;
  gap: .5rem;
  box-shadow: 0 12px 28px -12px rgba(36, 27, 24, .35);
}
.hero-badge strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--wine);
  line-height: 1;
}
.hero-badge span {
  font-size: .72rem;
  color: var(--ink-soft);
  letter-spacing: .04em;
  line-height: 1.3;
}

/* Botones */
.btn {
  display: inline-block;
  padding: .8rem 1.6rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--wine); color: var(--white); }
.btn-primary:hover { background: var(--wine-dark); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--wine); color: var(--wine); }

/* Galería: filmstrip deslizable (scroll-snap, sin autoplay) */
.filmstrip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: .6rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.filmstrip img {
  flex: 0 0 auto;
  width: clamp(210px, 58vw, 320px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  scroll-snap-align: start;
  display: block;
}
.filmstrip::-webkit-scrollbar { height: 6px; }
.filmstrip::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
.filmstrip::-webkit-scrollbar-track { background: transparent; }

/* Tratamientos: lista seleccionable (elegís uno, reservás con el botón de abajo) */
.treatment-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
@media (min-width: 720px) {
  .treatment-list { grid-template-columns: 1fr 1fr; }
}
.treatment-row {
  display: block;
  width: 100%;
  padding: 1.4rem;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  transition: background-color .15s ease;
}
@media (min-width: 720px) {
  .treatment-row:nth-child(odd) { border-right: 1px solid var(--line); }
}
.treatment-row:hover { background: rgba(125, 43, 59, .06); }
.treatment-row.selected {
  background: var(--wine);
}
.treatment-row.selected h3,
.treatment-row.selected p { color: var(--white); }
.treatment-row h3 { margin-bottom: .25rem; }
.treatment-row p { margin: 0; font-size: .92rem; }

.treatment-cta { text-align: center; margin-top: 2rem; }
.btn-disabled {
  opacity: .55;
  pointer-events: none;
  cursor: default;
}

/* Grillas genéricas */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

/* Precios */
.price-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0 1rem;
}
@media (min-width: 720px) {
  .price-groups { grid-template-columns: 1fr 1fr; }
}
.price-group {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 20px -14px rgba(36, 27, 24, .35);
}
.price-group h3 {
  font-size: 1rem;
  font-style: italic;
  color: var(--wine);
  border-bottom: 1px solid var(--gold);
  padding-bottom: .5rem;
  margin-bottom: .6rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .4rem 0;
  font-size: .92rem;
  border-bottom: 1px dotted var(--line);
}
.price-row span:first-child { color: var(--ink); }
.price-row span:last-child {
  font-weight: 600;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  color: var(--ink-soft);
}

/* Selector de zonas */
.zone-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.75rem 0;
}
.zone-chip {
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .85rem;
  cursor: pointer;
}
.zone-chip.selected {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--white);
}
.zone-summary p { margin-bottom: 1rem; }

/* Franja de estadísticas */
.band { background: var(--wine); padding: 3rem 0; }
.band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 720px) {
  .band-grid { grid-template-columns: repeat(3, 1fr); text-align: left; }
}
.band-stat strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: .4rem;
}
.band-stat span {
  color: #e7c9c9;
  font-size: .88rem;
  max-width: 24ch;
  display: inline-block;
}

/* Reseñas: cita editorial */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
@media (min-width: 720px) {
  .quote-grid { grid-template-columns: repeat(3, 1fr); }
}
.review { margin: 0; }
.review p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  position: relative;
  padding-left: 1.1rem;
}
.review p::before {
  content: "“";
  position: absolute;
  left: -.3rem;
  top: -.3rem;
  font-size: 2.2rem;
  color: var(--gold);
  font-style: normal;
}
.review cite {
  font-style: normal;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.reviews-link { margin-top: 2rem; }
.reviews-link a { font-weight: 600; text-decoration: none; }

/* Reserva: abre en pestaña aparte, en vez de embeber el iframe de TidyCal */
.booking-cta {
  margin-top: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.booking-cta p { max-width: 40ch; margin-left: auto; margin-right: auto; }
.booking-cta .btn { margin-top: .5rem; }

/* Iframes */
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 1.5rem;
}
.map-frame iframe { display: block; border: 0; }

.info-block p { margin-bottom: .6rem; }

/* Formulario */
.lead-form {
  max-width: 480px;
  margin: 1.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.lead-form input, .lead-form textarea {
  padding: .8rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  resize: vertical;
}
.lead-form button { margin-top: .25rem; align-self: flex-start; }
.form-status { font-size: .9rem; min-height: 1.2em; }
.form-status.ok { color: var(--wine); }
.form-status.error { color: #b3261e; }
.form-alt { font-size: .9rem; margin-top: 1rem; }
.form-alt a { font-weight: 600; }

/* Footer */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}
.footer p { margin: 0 0 .25rem; }
.footer-small { font-size: .8rem; }

/* WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,.4);
  z-index: 30;
}
.whatsapp-float svg { width: 26px; height: 26px; }
