/* ===================================================================
   RETIRO PARA ARTISTAS VIAJEROS — hoja de estilos
   Mismo espíritu que ellayeraldina.com: fondo blanco, mucho aire,
   la imagen como protagonista, cero cajas/sombras/degradados.
   El color de la obra entra solo en detalles pequeños.
   =================================================================== */

/* ---------- Paleta y variables ---------- */
:root {
  /* Fondo y texto */
  --paper: #ffffff;
  --ink: #241a12;        /* texto principal, casi negro cálido */
  --ink-soft: #4a3d33;   /* texto secundario */
  --line: #e7e0d6;       /* líneas finas de separación */

  /* Wordmark / acentos, tomados de la obra de Yeraldina */
  --ocre: #c08234;       /* wordmark sobre blanco */
  --ocre-dark: #9c6a26;
  --gold: #ffda9c;       /* wordmark sobre fondos oscuros / fotos */
  --terracotta: #b8532f; /* botón principal */
  --terracotta-dark: #9c4223;
  --cobalt: #2c4d82;
  --olive: #6f7a45;
  --magenta: #ab3f66;

  /* Tipografía */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Cardo", Georgia, "Times New Roman", serif;

  /* Medidas */
  --text-w: 40rem;   /* ancho cómodo de lectura */
  --img-w: 46rem;    /* ancho de las imágenes apiladas */
  --pad: clamp(1.25rem, 5vw, 2.5rem);
}

/* ---------- Reset ligero ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; margin: 0 0 1rem; }
p { margin: 0 0 1.1em; }

/* Foco visible para accesibilidad de teclado */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75em 1.25em;
  z-index: 100;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ---------- Encabezado ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--pad);
  position: relative;
  z-index: 20;
}

.wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--ocre);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.menu-toggle {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-toggle__bar {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:first-child {
  transform: translateY(3.75px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad);
}
.menu-panel[hidden] { display: none; }
.menu-panel ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}
.menu-panel a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--ink);
}
.menu-panel a:hover { color: var(--ocre); }
.menu-panel__cta {
  margin-top: 0.75rem;
  color: var(--terracotta) !important;
}

/* ---------- Secciones y ritmo vertical ---------- */
.section {
  max-width: var(--text-w);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5.5rem) var(--pad) 0;
}
.section:last-of-type { padding-bottom: clamp(3rem, 8vw, 5.5rem); }

.section--prose h2 { margin-bottom: 1.75rem; }

h2 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
}
h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
}

.section-note {
  color: var(--ink-soft);
  font-style: italic;
}
.section-note--inline {
  font-style: italic;
  color: var(--ink-soft);
  font-weight: normal;
  font-size: 0.85em;
}

/* ---------- Hero ---------- */
.hero { padding-bottom: clamp(2.5rem, 6vw, 4rem); }
.hero picture,
.hero img {
  width: 100%;
  max-width: var(--img-w);
  margin: 0 auto;
  height: auto;
}
.hero__info {
  max-width: var(--text-w);
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 2.5rem) var(--pad) 0;
  text-align: center;
}
.hero__meta {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9em 2em;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.btn:hover { background: var(--terracotta-dark); }

.btn--outline {
  background: none;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
  padding: 0.75em 1.75em;
  font-size: 0.95rem;
}
.btn--outline:hover {
  background: var(--terracotta);
  color: #fff;
}

/* ---------- Cita central (sección Palomino) ---------- */
.lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 1.75rem;
  padding-left: 0;
  border: none;
}

/* ---------- Listas ---------- */
.check-list li,
.plain-list li {
  padding: 0.65em 0 0.65em 1.3em;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.check-list li:first-child,
.plain-list li:first-child { border-top: 1px solid var(--line); }
.check-list li::before,
.plain-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--terracotta);
}

.no-incluye {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-style: italic;
  color: var(--ink-soft);
}

/* ---------- Fotos apiladas dentro del texto ---------- */
.stacked-photo {
  width: 100%;
  max-width: var(--img-w);
  margin: 0 auto 1.75rem;
  border-radius: 2px;
}
#que-haremos .stacked-photo { margin-top: 2.25rem; margin-bottom: 0; }
#quien-soy .stacked-photo,
#el-lugar .stacked-photo { margin-bottom: 1.75rem; }

/* ---------- Precios ---------- */
.waitlist-note {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ocre-dark);
}

.price-list {
  margin-top: 2rem;
}
.price-card {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}
.price-list .price-card:last-child {
  border-bottom: 1px solid var(--line);
}
.price-card h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6em;
}
.price-card__desc { color: var(--ink-soft); }
.price-card__price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.price-card__price span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: normal;
  color: var(--ink-soft);
}
.price-card__installments {
  color: var(--ocre-dark);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.badge {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  border-radius: 999px;
  padding: 0.25em 0.75em;
}

/* ---------- FAQ ---------- */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.1em 0;
}
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  font-family: var(--font-display);
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--terracotta);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.faq details[open] summary::after {
  content: "–";
}
.faq details p {
  margin: 0.9em 0 0;
  color: var(--ink-soft);
}

/* ---------- Cierre ---------- */
.section--close {
  text-align: center;
}
.section--close p { color: var(--ink-soft); }

/* ---------- Pie de página ---------- */
.site-footer {
  text-align: center;
  padding: clamp(3rem, 8vw, 4rem) var(--pad) clamp(2.5rem, 6vw, 3.5rem);
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.wordmark--footer {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--ocre); }
.site-footer p { margin: 0.35em 0; }

/* ---------- Pantallas más grandes ---------- */
@media (min-width: 700px) {
  body { font-size: 1.125rem; }
  .hero__info { text-align: center; }
}
