/* ==========================================================================
   Hilos de Elisa — landing
   ========================================================================== */

:root {
  --cream: #FBF6EE;
  --surface: #FFF9F0;
  --panel: #F3E9DA;
  --panel-2: #E9D6C3;

  --ink: #33291F;
  --ink-2: #4A3D30;
  --body: #5C4E3F;
  --body-2: #6B5B4A;
  --muted: #7C6A57;
  --muted-2: #907E6A;

  --line: #EADFCD;
  --line-2: #DCCDB8;
  --line-3: #D4C3AC;
  --line-4: #C4AE93;

  --brand: #B15A38;
  --brand-dark: #8C4426;
  --brand-light: #C96C46;
  --on-brand: #FFF9F0;
  --mint: #6DBFB0;

  --dark: #33291F;
  --dark-card: #453729;
  --dark-text: #F5EBDB;
  --dark-body: #C7B6A0;
  --dark-muted: #B9A891;
  --dark-muted-2: #8E7C66;
  --dark-line: #4A3D30;
  --footer-text: #E9DCCA;

  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --sans: 'Karla', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap: 1200px;
  --bar-h: 92px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: var(--bar-h);
}

p { text-wrap: pretty; }

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }

img { max-width: 100%; }

input, select, textarea, button { font-family: inherit; font-size: inherit; color: inherit; }

::selection { background: var(--panel-2); }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* El link de "saltar al contenido" aparece solo cuando recibe foco */
.skip-link:focus {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 100;
  width: auto; height: auto;
  margin: 0; padding: 12px 20px;
  clip: auto; overflow: visible;
  background: var(--brand);
  color: var(--on-brand);
  border-radius: 999px;
  font-weight: 600;
}

/* --------------------------------------------------------------- primitives */

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.wrap--narrow { max-width: 900px; }

.eyebrow {
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 14px;
}

.h1, .h2, .h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -.015em; margin: 0; }
.h1 { font-size: clamp(40px, 5.4vw, 74px); line-height: 1.02; letter-spacing: -.02em; text-wrap: balance; }
.h2 { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.08; text-wrap: balance; }
.h2--lg { font-size: clamp(34px, 4.4vw, 60px); line-height: 1.04; }
.h3 { font-size: 27px; line-height: 1.15; }

.lede { font-size: 17px; line-height: 1.62; color: var(--body); margin: 0; }

.btn {
  display: inline-block;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease;
}
.btn--primary { background: var(--brand); color: var(--on-brand); }
.btn--primary:hover { background: var(--brand-dark); color: var(--on-brand); }
.btn--ghost { background: transparent; color: var(--ink-2); border-color: var(--line-3); }
.btn--ghost:hover { background: var(--panel); color: var(--ink-2); }
.btn--outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn--outline:hover { background: var(--brand); color: var(--on-brand); }
.btn--sm { padding: 13px 24px; font-size: 15px; }
.btn--lg { padding: 18px 34px; font-size: 17px; }
.btn--block { display: block; width: 100%; padding: 19px 24px; font-size: 17.5px; }

/* on the dark section the primary button lightens on hover instead */
.section--dark .btn--primary:hover,
.site-footer .btn--primary:hover { background: var(--brand-light); }

.dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--mint);
  flex-shrink: 0;
  display: block;
}

.media { position: relative; display: block; overflow: hidden; border-radius: 10px; background: var(--panel); }
.media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.media--4x5 { aspect-ratio: 4 / 5; }
.media--3x4 { aspect-ratio: 3 / 4; }
.media--3x2 { aspect-ratio: 3 / 2; }
.media--1x1 { aspect-ratio: 1 / 1; }
.media--4x3 { aspect-ratio: 4 / 3; }

/* ------------------------------------------------------------------- header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 246, 238, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand { display: flex; flex-direction: column; line-height: 1; color: var(--ink); margin-right: auto; }
.brand:hover { color: var(--ink); }
.brand__name { font-family: var(--serif); font-size: 25px; letter-spacing: -.01em; }
.brand__tag {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 5px;
}
.site-nav { display: flex; gap: 28px; font-size: 14.5px; font-weight: 500; }
.site-nav a { color: var(--body); }
.site-nav a:hover { color: var(--brand); }
.site-header .btn { padding: 12px 22px; font-size: 14.5px; }

/* --------------------------------------------------------------------- hero */

.hero {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 76px 24px 88px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 64px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
}
.pill .dot { width: 7px; height: 7px; }

.hero__copy { font-size: 18.5px; line-height: 1.62; color: var(--body); max-width: 500px; margin: 0 0 30px; }

.price-band {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 18px 24px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  margin-bottom: 26px;
  max-width: 520px;
}
.price-band__amount { font-family: var(--serif); font-size: 52px; line-height: 1; }
.price-band__note { font-size: 15px; line-height: 1.5; color: var(--body); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.hero__actions .btn { padding: 17px 32px; font-size: 16.5px; }
.hero__fineprint { font-size: 14px; color: var(--muted); }

.hero__art { position: relative; }
.hero__inset {
  position: absolute;
  left: -34px;
  bottom: -30px;
  width: 178px;
  border: 6px solid var(--cream);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(51, 41, 31, .14);
}
.hero__inset img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.hero__badge {
  position: absolute;
  right: -18px;
  top: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 14px 28px rgba(51, 41, 31, .1);
  max-width: 172px;
}
.hero__badge b { font-family: var(--serif); font-weight: 400; font-size: 30px; line-height: 1; display: block; }
.hero__badge span { font-size: 12.5px; color: var(--muted); line-height: 1.4; margin-top: 4px; display: block; }

/* ------------------------------------------------------------- value strip */

.strip { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 34px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}
.strip p { font-size: 14.5px; color: var(--body-2); line-height: 1.5; margin: 0; }
.strip .strip__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 5px;
}

/* ----------------------------------------------------------------- sections */

.section { padding-top: 92px; padding-bottom: 92px; }
.section--tint { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--dark { background: var(--dark); color: var(--dark-text); margin-top: 92px; }
.section--dark .wrap { padding-top: 100px; padding-bottom: 100px; }
.section--dark .eyebrow { color: var(--dark-muted); }

.split {
  display: grid;
  grid-template-columns: var(--split, 1fr 1fr);
  gap: 64px;
  align-items: center;
}

/* -------------------------------------------------------------- the dolls */

.dolls__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.dolls__head .h2 { max-width: 620px; line-height: 1.06; }
.dolls__aside { display: flex; flex-direction: column; gap: 16px; max-width: 380px; }
.dolls__aside p { font-size: 16px; line-height: 1.6; color: var(--body-2); margin: 0; }

.carousel-nav { display: flex; gap: 10px; }
.carousel-nav button {
  width: 46px; height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line-3);
  background: transparent;
  font-size: 19px;
  line-height: 1;
  color: var(--brand-dark);
  cursor: pointer;
  transition: background-color 140ms ease;
}
.carousel-nav button:hover { background: var(--panel); }

.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 4px 0 18px;
  margin-bottom: 44px;
  scrollbar-width: thin;
}
.doll-card {
  flex: 0 0 236px;
  scroll-snap-align: start;
  color: inherit;
  transition: transform 160ms ease;
}
.doll-card:hover { transform: translateY(-4px); color: inherit; }
.doll-card .media { margin-bottom: 12px; }
.doll-card__meta { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.doll-card__name { font-family: var(--serif); font-size: 22px; line-height: 1.1; }
.doll-card__price { font-size: 13.5px; font-weight: 600; color: var(--muted-2); }
.doll-card--custom .doll-card__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border: 1px dashed var(--line-4);
  border-radius: 10px;
  background: var(--panel);
  aspect-ratio: 3 / 4;
  padding: 26px;
  margin-bottom: 12px;
}
.doll-card--custom .doll-card__box b { font-family: var(--serif); font-weight: 400; font-size: 28px; line-height: 1.1; }
.doll-card--custom .doll-card__box span { font-size: 15px; color: var(--body-2); line-height: 1.5; }
.doll-card--custom .doll-card__name { color: var(--brand); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}
.dolls__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 10px;
}
.dolls__foot p { font-size: 15.5px; color: var(--muted); margin: 0; max-width: 620px; line-height: 1.55; }

.callout {
  border: 1px dashed var(--line-3);
  border-radius: 12px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.callout h3 { font-family: var(--serif); font-weight: 400; font-size: 30px; margin: 0 0 8px; }
.callout p { font-size: 16px; color: var(--body-2); margin: 0; max-width: 560px; line-height: 1.55; }
.callout .btn { padding: 14px 26px; font-size: 15.5px; }

/* ------------------------------------------------------------------ proceso */

.proceso__head { max-width: 720px; margin-bottom: 60px; }
.proceso__head p { font-size: 18px; line-height: 1.6; color: var(--dark-body); margin: 18px 0 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-bottom: 52px;
}
.step { background: var(--dark-card); border-radius: 16px; padding: 32px 28px 30px; }
.step__media {
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 4 / 3;
  margin: -32px -28px 24px;
  border-radius: 16px 16px 12px 12px;
}
.step__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.step__n {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--on-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 22px;
}
.step h3 { margin: 0 0 12px; }
.step p { font-size: 15.5px; line-height: 1.6; color: var(--dark-body); margin: 0; }

.proceso__cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.proceso__cta span { font-size: 15.5px; color: var(--dark-body); }

/* ------------------------------------------------------------- chat mockup */

.note-inline {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  background: var(--panel);
  border-radius: 10px;
  font-size: 15px;
  color: var(--body);
  line-height: 1.5;
  margin-bottom: 28px;
}

.chat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 22px 44px rgba(51, 41, 31, .09);
}
.chat__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #EFE4D2;
  margin-bottom: 18px;
}
.chat__avatar {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: var(--panel-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--brand-dark);
}
.chat__who { display: flex; flex-direction: column; line-height: 1.3; }
.chat__who strong { font-size: 15px; }
.chat__who span { font-size: 12.5px; color: var(--muted-2); }
.chat__log { display: flex; flex-direction: column; gap: 12px; }
.bubble { max-width: 82%; padding: 11px 15px; font-size: 14.5px; line-height: 1.5; }
.bubble--out { align-self: flex-end; max-width: 78%; background: var(--panel-2); border-radius: 14px 14px 4px 14px; }
.bubble--in { align-self: flex-start; background: var(--panel); border-radius: 14px 14px 14px 4px; }
.chat__shots { align-self: flex-start; display: flex; gap: 8px; }
.chat__shots img { width: 92px; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 10px; display: block; }

/* ----------------------------------------------------------- personalización */

.swatches { display: flex; flex-direction: column; gap: 22px; margin-bottom: 34px; }
.swatch-group__label { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.swatch-row { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch { width: 34px; height: 34px; border-radius: 999px; border: 1px solid var(--line-2); display: block; }
.swatch-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.swatch-pair h3 { font-family: var(--sans); font-size: 14px; font-weight: 700; margin: 0 0 8px; }
.swatch-pair p { font-size: 14.5px; color: var(--body-2); line-height: 1.55; margin: 0; }

.includes {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 34px;
}
.includes__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid #EFE4D2;
  margin-bottom: 24px;
}
.includes__price b { font-family: var(--serif); font-weight: 400; font-size: 62px; line-height: 1; }
.includes__price span { font-size: 15px; color: var(--muted); line-height: 1.45; }
.includes__label {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.checklist li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
}
.checklist .dot { margin-top: 7px; }

/* ---------------------------------------------------------------- qué recibes */

.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 34px; margin: 32px 0 34px; }
.specs h3 { font-family: var(--sans); font-size: 16px; font-weight: 700; margin: 0 0 6px; }
.specs p { font-size: 15px; line-height: 1.55; color: var(--body-2); margin: 0; }

/* ------------------------------------------------------------------- elisa */

.elisa__art { position: relative; }
.elisa__art > .media { background: var(--panel-2); }
.elisa__inset {
  position: absolute;
  right: -30px;
  bottom: -34px;
  width: 168px;
  border: 6px solid var(--panel);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(51, 41, 31, .16);
}
.elisa__inset img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.elisa p { font-size: 17.5px; line-height: 1.62; color: var(--body); margin: 0 0 18px; max-width: 560px; }
.elisa p:last-of-type { margin-bottom: 30px; }
.stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid var(--line-2);
  margin-bottom: 32px;
}
.stats b { font-family: var(--serif); font-weight: 400; font-size: 38px; line-height: 1; display: block; }
.stats span { font-size: 13.5px; color: var(--muted); margin-top: 4px; display: block; }

/* ------------------------------------------------------------ testimonios */

.testimonios .h2 { margin-bottom: 48px; max-width: 640px; line-height: 1.06; }
.testimonios__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; margin-bottom: 44px; }
.tcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tcard--wide { grid-column: span 3; }
.tcard--tall { grid-column: span 2; }
.tcard__media { background: var(--panel); }
.tcard__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tcard--wide .tcard__media { aspect-ratio: 3 / 2; }
.tcard--tall .tcard__media { aspect-ratio: 4 / 5; }
.tcard__body { padding: 28px 30px 30px; }
.tcard--tall .tcard__body { padding: 24px 26px 26px; }
.tcard blockquote { font-family: var(--serif); font-size: 24px; line-height: 1.4; margin: 0 0 18px; }
.tcard--tall blockquote { font-size: 21px; line-height: 1.42; margin-bottom: 16px; }
.tcard cite { font-style: normal; font-size: 14px; color: var(--muted); }

/* --------------------------------------------------------------------- faq */

.faq-list { margin-bottom: 42px; border-bottom: 1px solid var(--line-2); }
.faq { border-top: 1px solid var(--line-2); }
.faq__q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-size: 17.5px;
  font-weight: 600;
}
.faq__sign { font-family: var(--serif); font-size: 26px; color: var(--brand); line-height: 1; flex-shrink: 0; }
.faq__a { font-size: 16.5px; line-height: 1.62; color: var(--body); margin: 0 0 24px; padding-right: 60px; }
.faq__a[hidden] { display: none; }

/* ------------------------------------------------------------------- pedido */

/* El checkout cierra la página: bloque centrado, sin nada que distraiga al lado. */
.pedido__head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.pedido__head .h2 { font-size: clamp(32px, 4vw, 54px); line-height: 1.04; margin-bottom: 18px; }
.pedido__head p { font-size: 17.5px; line-height: 1.62; color: var(--body); margin: 0; }

.pedido__layout { max-width: 560px; margin: 0 auto; }

.summary {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 22px 44px rgba(51, 41, 31, .08);
}
.summary__product {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid #EFE4D2;
  margin-bottom: 22px;
}
.summary__thumb {
  width: 64px; height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--panel);
  flex-shrink: 0;
}
.summary__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.summary__title { display: flex; flex-direction: column; line-height: 1.35; }
.summary__title strong { font-family: var(--serif); font-weight: 400; font-size: 23px; }
.summary__title span { font-size: 13.5px; color: var(--muted); }
.summary__label {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 12px;
}

.packs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.pack {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: pointer;
  text-align: left;
}
.pack::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 2px solid var(--brand);
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
}
.pack[aria-checked="true"]::after { opacity: 1; }
.pack__radio {
  width: 20px; height: 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line-4);
  background: var(--surface);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pack__radio::after {
  content: '';
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0;
}
.pack[aria-checked="true"] .pack__radio::after { opacity: 1; }
.pack__text { display: flex; flex-direction: column; line-height: 1.4; margin-right: auto; gap: 3px; }
.pack__title { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 15.5px; font-weight: 700; }
.pack__save {
  background: var(--brand);
  color: var(--on-brand);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.pack__note { font-size: 13.5px; color: var(--muted); font-weight: 400; }
.pack__price { font-family: var(--serif); font-size: 25px; line-height: 1; white-space: nowrap; }

/* Entrega express: complemento opcional, se lee distinto a los paquetes */
.express-hint {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--brand-dark);
  background: var(--panel-2);
  border-radius: 8px;
  padding: 11px 14px;
  margin: 0 0 10px;
}
.express-hint::before { content: '→'; flex-shrink: 0; }
.express-hint[hidden] { display: none; }

.express {
  width: 100%;
  background: var(--cream);
  border: 1px dashed var(--line-4);
  border-radius: 10px;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: pointer;
  text-align: left;
  margin-bottom: 22px;
  transition: border-color 140ms ease, background-color 140ms ease;
}
.express[aria-checked="true"] {
  border-style: solid;
  border-color: var(--brand);
  background: var(--surface);
}
.express__box {
  width: 20px; height: 20px;
  border-radius: 5px;
  border: 1.5px solid var(--line-4);
  background: var(--surface);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.express[aria-checked="true"] .express__box { background: var(--brand); border-color: var(--brand); }
.express__box::after {
  content: '';
  width: 10px; height: 6px;
  border-left: 2px solid var(--on-brand);
  border-bottom: 2px solid var(--on-brand);
  transform: rotate(-45deg) translate(1px, -1px);
  opacity: 0;
}
.express[aria-checked="true"] .express__box::after { opacity: 1; }
.express__text { display: flex; flex-direction: column; line-height: 1.4; margin-right: auto; gap: 3px; }
.express__title { font-size: 15.5px; font-weight: 700; }
.express__note { font-size: 13.5px; color: var(--muted); }
.express__price { font-family: var(--serif); font-size: 22px; line-height: 1; white-space: nowrap; }

/* Un botón de pago sin Payment Link configurado no debe poder cobrar */
.btn.is-disabled { opacity: .5; pointer-events: none; }

.lines { display: flex; flex-direction: column; gap: 12px; font-size: 15.5px; margin-bottom: 20px; }
.line { display: flex; justify-content: space-between; gap: 16px; }
.line dt { color: var(--body); margin: 0; }
.line dd { font-weight: 600; margin: 0; }
.line--save dd { color: var(--brand-dark); }
.line[hidden] { display: none; }

.total {
  border-top: 1px solid #EFE4D2;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
}
.total dt { font-size: 16px; font-weight: 700; margin: 0; }
.total dd { font-family: var(--serif); font-size: 40px; line-height: 1; margin: 0; }

.summary__fineprint { font-size: 12.5px; color: var(--muted-2); text-align: center; line-height: 1.5; margin-top: 12px; }
.reassure {
  list-style: none;
  margin: 22px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid #EFE4D2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reassure li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
}
.reassure .dot { width: 7px; height: 7px; margin-top: 6px; }
.summary__help { margin-top: 20px; font-size: 14px; color: var(--body-2); line-height: 1.55; text-align: center; }

/* ---------------------------------------------------------- página gracias */

.page-gracias { padding-bottom: 0; }
.page-gracias .site-header { position: static; }

.gracias {
  max-width: 620px;
  margin: 0 auto;
  padding: 64px 24px 88px;
  text-align: center;
}
.gracias__mark {
  width: 64px; height: 64px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gracias__mark svg { width: 34px; height: 34px; }
.gracias__title { font-size: clamp(34px, 5vw, 54px); margin-bottom: 20px; }
.gracias__lede { font-size: 18px; line-height: 1.62; color: var(--body); margin: 0 0 36px; }

.gracias__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 32px;
  text-align: left;
}
.gracias__card .lines { margin: 0; }
.gracias__card[hidden] { display: none; }

.gracias__cta { display: block; }
.gracias__hint { font-size: 14px; color: var(--muted); margin: 14px 0 0; }

.gracias__next { margin-top: 56px; text-align: left; }
.gracias__next .eyebrow { text-align: center; }

.next-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 24px; }
.next-steps li { display: flex; gap: 18px; align-items: flex-start; }
.next-steps__n {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--panel);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
}
.next-steps h3 { font-family: var(--sans); font-size: 16.5px; font-weight: 700; margin: 8px 0 6px; }
.next-steps p { font-size: 15.5px; line-height: 1.55; color: var(--body-2); margin: 0; }

.gracias__reassure {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line-2);
  text-align: left;
}
.gracias__back { margin-top: 40px; font-size: 15px; }

@media (max-width: 640px) {
  .gracias { padding: 44px 18px 64px; }
  .gracias__card { padding: 20px; }
}

/* ------------------------------------------------------------------ footer */

.site-footer { background: var(--dark); color: var(--footer-text); }
.site-footer__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}
.site-footer__brand { font-family: var(--serif); font-size: 27px; margin-bottom: 10px; }
.site-footer p { font-size: 15px; line-height: 1.6; color: var(--dark-muted); margin: 0 0 20px; max-width: 320px; }
.site-footer h2 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dark-muted-2);
  margin: 0 0 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.footer-links a { color: var(--footer-text); }
.footer-links a:hover { color: #FFF; }
.site-footer__legal { border-top: 1px solid var(--dark-line); }
.site-footer__legal div {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--dark-muted-2);
}

/* --------------------------------------------------------------- sticky bar */

.buybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: rgba(255, 249, 240, .96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 26px rgba(51, 41, 31, .08);
  padding-bottom: env(safe-area-inset-bottom);
}
.buybar__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.buybar__thumb {
  width: 46px; height: 46px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  flex-shrink: 0;
}
.buybar__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.buybar__text { display: flex; flex-direction: column; line-height: 1.35; margin-right: auto; min-width: 0; }
.buybar__title { font-size: 15px; font-weight: 600; }
.buybar__sub { font-size: 13px; color: var(--muted); }
.buybar__packs { display: flex; align-items: center; gap: 6px; }
.qty {
  position: relative;
  min-width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--cream);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  color: var(--body);
}
.qty::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 2px solid var(--brand);
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
}
.qty[aria-checked="true"]::after { opacity: 1; }
.buybar__total { font-family: var(--serif); font-size: 30px; line-height: 1; white-space: nowrap; }
.buybar .btn { padding: 14px 28px; font-size: 15.5px; }

/* ================================================================ responsive */

@media (max-width: 1040px) {
  .site-nav { gap: 20px; font-size: 14px; }
  .split { gap: 44px; }
}

@media (max-width: 900px) {
  :root { --bar-h: 84px; }

  .site-nav { display: none; }

  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 24px 64px;
  }
  .hero__art { max-width: 520px; }
  .hero__inset { left: auto; right: 16px; bottom: -22px; width: 132px; border-width: 5px; }
  .hero__badge { right: -8px; top: 16px; padding: 12px 15px; max-width: 152px; }
  .hero__copy { max-width: none; }

  .split { grid-template-columns: 1fr !important; gap: 40px; }
  .split--flip > .split__art { order: -1; }

  .elisa__inset { right: 16px; bottom: -24px; width: 132px; }

  .section { padding-top: 64px; padding-bottom: 64px; }
  .section--dark { margin-top: 64px; }
  .section--dark .wrap { padding-top: 68px; padding-bottom: 68px; }

}

@media (max-width: 820px) {
  .testimonios__grid { grid-template-columns: 1fr 1fr; }
  .tcard--wide, .tcard--tall { grid-column: span 1; }
  .tcard--wide .tcard__media { aspect-ratio: 4 / 3; }
}

@media (max-width: 640px) {
  .wrap { padding-left: 18px; padding-right: 18px; }

  .site-header__inner { padding: 12px 18px; gap: 14px; }
  .brand__name { font-size: 21px; }
  .brand__tag { font-size: 9.5px; letter-spacing: .14em; }
  .site-header .btn { padding: 10px 16px; font-size: 13.5px; }

  .hero { padding: 36px 18px 56px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .price-band { padding: 16px 18px; gap: 14px; }
  .price-band__amount { font-size: 44px; }

  .strip__inner { padding: 28px 18px; gap: 22px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .dolls__head { gap: 24px; }
  .dolls__aside { max-width: none; }
  .callout { padding: 24px 22px; }
  .callout .btn, .dolls__foot .btn { width: 100%; }

  .specs { grid-template-columns: 1fr; gap: 22px; }
  .swatch-pair { grid-template-columns: 1fr; }
  .includes { padding: 28px 22px; }
  .includes__price b { font-size: 52px; }

  .testimonios__grid { grid-template-columns: 1fr; }
  .tcard blockquote { font-size: 21px; }

  .faq__a { padding-right: 0; }

  .summary { padding: 24px 20px; }
  .pack { padding: 14px; gap: 11px; }
  .pack__price { font-size: 22px; }

  .site-footer__inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 18px 32px; }

  .buybar__inner { padding: 10px 14px; gap: 10px; }
  .buybar__thumb, .buybar__text { display: none; }
  .buybar__packs { margin-right: auto; }
  .buybar__total { font-size: 26px; }
  .buybar .btn { padding: 13px 20px; font-size: 14.5px; }
}
