/* =========================================================================
   Nightlife Entertainment — hoja de estilo del diseño
   Paleta pedida por el cliente: púrpura, oro y plata (mercado de bodas).

   ⚠️ REGLA DE LA CASA: nunca letter-spacing. Ni en titulares, ni en botones,
      ni en el logotipo. Aquí no hay una sola declaración de letter-spacing.
   ========================================================================= */

:root {
  /* --- púrpura: del más profundo al más claro */
  --ink:        #140C1F;   /* casi negro, con fondo morado */
  --plum-900:   #1F1030;
  --plum-800:   #2A1642;
  --plum-700:   #3A1F5C;
  --plum-600:   #4E2A7A;
  --plum-500:   #6B3FA0;   /* púrpura de marca */
  --plum-300:   #A77FD4;
  --plum-100:   #EEE6F8;

  /* --- oro */
  --gold-600:   #907217;   /* 4,56:1 sobre blanco (era #A9861B, 3,44) */
  --gold-500:   #C9A227;   /* oro de marca */
  --gold-400:   #E0BE55;
  --gold-200:   #F2E2AE;

  /* --- plata */
  --silver-600: #717685;   /* 4,53:1 sobre blanco (era #8A8F9C, 3,24) */
  --silver-400: #B9BFCB;
  --silver-200: #DCE0E8;
  --silver-50:  #F6F7FA;

  --white:      #FFFFFF;

  /* --- tipografía */
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* --- medidas */
  --wrap: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 18px 50px rgba(20, 12, 31, .16);
  --shadow-sm: 0 6px 20px rgba(20, 12, 31, .10);
  --gold-line: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

/* ---------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  /* La cabecera pegajosa mide 79 px: sin esto, #packages aterriza debajo */
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--plum-600); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

p { margin: 0 0 1.1em; }

ul { margin: 0 0 1.1em; padding-left: 1.2em; }

/* Accesibilidad: el foco SIEMPRE visible, y en oro para que se vea sobre púrpura */
:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Salto al contenido, para quien navega con teclado o lector de pantalla */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-500);
  color: var(--ink);
  padding: 12px 20px;
  z-index: 200;
  font-weight: 600;
}
.skip:focus { left: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 .6em;
}

/* ---------------------------------------------------------------- botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .98rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(201, 162, 39, .32);
}
.btn--gold:hover { box-shadow: 0 14px 34px rgba(201, 162, 39, .44); }

.btn--plum {
  background: var(--plum-600);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(78, 42, 122, .28);
}
.btn--plum:hover { background: var(--plum-500); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .45);
}
.btn--ghost:hover { border-color: var(--gold-400); color: var(--gold-200); }

.btn--outline {
  background: transparent;
  color: var(--plum-600);
  border-color: var(--silver-400);
}
.btn--outline:hover { border-color: var(--plum-500); }

.btn--sm { padding: 11px 22px; font-size: .9rem; }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------- topbar */
.topbar {
  background: var(--ink);
  color: var(--silver-200);
  font-size: .86rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar__group { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar a {
  color: var(--silver-200);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .45em;
  overflow-wrap: anywhere;
}
/* El nowrap solo donde hace falta: un número de teléfono partido en tres
   líneas se lee mal, pero un correo largo debe poder partirse. */
.topbar a[href^="tel"],
.topbar a[href^="https://wa.me"] { white-space: nowrap; }
.topbar a:hover { color: var(--gold-400); }
/* Los iconos son SVG sin atributo width: sin esto se pintan a 32 px y
   desmontan la barra. Medido en pantalla, no supuesto. */
.topbar svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: .85;
}
.topbar__client {
  color: var(--gold-400);
  font-weight: 600;
}

/* ---------------------------------------------------------------- cabecera */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--silver-200);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
}
.logo {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.logo__name {
  font-family: var(--serif);
  font-size: 1.52rem;
  font-weight: 700;
  color: var(--plum-700);
}
.logo__tag {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: .35em;
  padding: 10px 14px;
  border: 0;
  background: transparent;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav__link:hover { background: var(--plum-100); color: var(--plum-700); }
.nav__link.is-active { color: var(--plum-600); font-weight: 600; }
/* Una hija del desplegable es la pagina actual (fallo silencioso: la clase
   estaba en el HTML sin ninguna regla que la recogiera) */
.nav__item.is-current > .nav__link { color: var(--plum-600); font-weight: 600; }

.nav__item { position: relative; }
.caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .6;
}
.nav__sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 268px;
  background: var(--white);
  border: 1px solid var(--silver-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
}
.nav__item:hover .nav__sub,
.nav__item:focus-within .nav__sub { display: block; }
.nav__sub a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  text-decoration: none;
  font-size: .94rem;
}
.nav__sub a:hover { background: var(--plum-100); color: var(--plum-700); }
.nav__sub small { display: block; color: var(--silver-600); font-size: .8rem; }

.header__cta { margin-left: 8px; }

.burger {
  display: none;
  width: 46px; height: 46px;
  margin-left: auto;
  border: 1px solid var(--silver-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  padding: 12px 11px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--plum-700);
  border-radius: 2px;
}
.burger span + span { margin-top: 5px; }

/* ---------------------------------------------------------------- hero */
.hero {
  position: relative;
  background:
    radial-gradient(1000px 520px at 78% 8%, rgba(107, 63, 160, .55), transparent 60%),
    radial-gradient(760px 420px at 12% 92%, rgba(201, 162, 39, .20), transparent 62%),
    linear-gradient(160deg, var(--plum-900) 0%, var(--ink) 58%, var(--plum-800) 100%);
  color: var(--white);
  overflow: hidden;
}
/* puntos de luz: la pista de baile, sin una sola imagen */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(3px 3px at 18% 28%, rgba(224, 190, 85, .75), transparent 60%),
    radial-gradient(2px 2px at 34% 62%, rgba(255, 255, 255, .55), transparent 60%),
    radial-gradient(4px 4px at 68% 22%, rgba(224, 190, 85, .55), transparent 60%),
    radial-gradient(2px 2px at 82% 56%, rgba(255, 255, 255, .45), transparent 60%),
    radial-gradient(3px 3px at 54% 84%, rgba(167, 127, 212, .65), transparent 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 92px 0 84px;
}
.hero .eyebrow { color: var(--gold-400); }
.hero__title { color: var(--white); margin-bottom: .35em; }
.hero__title em { font-style: normal; color: var(--gold-400); }
.hero__lead {
  font-size: 1.16rem;
  color: rgba(255, 255, 255, .84);
  max-width: 34em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 34px; }
.hero__points { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.hero__points li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, .88);
  font-size: .98rem;
}
.hero__points li::before {
  content: "";
  position: absolute;
  left: 0; top: .42em;
  width: 16px; height: 9px;
  border-left: 2px solid var(--gold-400);
  border-bottom: 2px solid var(--gold-400);
  transform: rotate(-45deg);
}

/* el marco donde irán SUS fotos */
.hero__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  border: 1px solid rgba(224, 190, 85, .42);
  background:
    linear-gradient(140deg, rgba(107, 63, 160, .55), rgba(20, 12, 31, .85)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.028) 0 12px, transparent 12px 24px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
  box-shadow: var(--shadow);
}
.hero__frame p { color: rgba(255, 255, 255, .58); font-size: .92rem; margin: 0; }
.hero__frame strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold-200);
  margin-bottom: .4em;
}
.hero__badge {
  position: absolute;
  right: -18px;
  bottom: 34px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--ink);
  border-radius: var(--radius);
  padding: 16px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  max-width: 190px;
}
.hero__badge strong { display: block; font-family: var(--serif); font-size: 2rem; line-height: 1; }
.hero__badge span { font-size: .78rem; font-weight: 600; }

/* ---------------------------------------------------------------- secciones */
.section { padding: 84px 0; }
.section--tint { background: var(--silver-50); }
.section--plum {
  background: linear-gradient(160deg, var(--plum-800), var(--ink));
  color: var(--white);
}
.section--plum h2, .section--plum h3 { color: var(--white); }
.section--plum .eyebrow { color: var(--gold-400); }
.section--plum p { color: rgba(255, 255, 255, .82); }

.section__head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section__head p { color: #4A4453; margin: 0; }
.section--plum .section__head p { color: rgba(255, 255, 255, .8); }
/* 🐞 Misma especificidad que `.svc p` / `.frame p`, que iban después y ganaban:
   texto gris oscuro sobre púrpura oscuro. Esto lo resuelve en el CSS y permite
   borrar 12 estilos en línea del HTML. */
.section--plum .svc {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .16);
}
.section--plum .svc p,
.section--plum .frame p { color: rgba(255, 255, 255, .78); }
.section--plum .frame {
  border-color: rgba(224, 190, 85, .4);
  background: linear-gradient(140deg, rgba(107, 63, 160, .5), rgba(20, 12, 31, .75));
}
.section--plum .frame strong { color: var(--gold-200); }
.svc__ico strong { font-family: var(--serif); font-size: 1.6rem; }
.section__head--left { margin-left: 0; text-align: left; }

.section__cta { text-align: center; margin-top: 34px; }
.wrap--narrow { max-width: 760px; }
.book__note { text-align: center; margin: 14px 0 0; font-size: .86rem; color: var(--silver-600); }
.form__note { font-size: .85rem; color: var(--silver-600); margin-top: 14px; }

.rule {
  width: 120px; height: 1px;
  margin: 22px auto 0;
  background: var(--gold-line);
}
.section__head--left .section__cta { text-align: center; margin-top: 34px; }
.wrap--narrow { max-width: 760px; }
.book__note { text-align: center; margin: 14px 0 0; font-size: .86rem; color: var(--silver-600); }
.form__note { font-size: .85rem; color: var(--silver-600); margin-top: 14px; }

.rule { margin-left: 0; }

/* ---------------------------------------------------------------- servicios */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc {
  background: var(--white);
  border: 1px solid var(--silver-200);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--gold-400); }
.svc__ico {
  width: 62px; height: 62px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--plum-600), var(--plum-500));
  color: var(--gold-200);
}
.svc__ico svg { width: 28px; height: 28px; }
.svc h3 { margin-bottom: .35em; }
.svc p { color: #4A4453; margin: 0; font-size: .97rem; }

/* ---------------------------------------------------------------- paquetes */
.packages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: start; }
.pkg {
  position: relative;
  background: var(--white);
  border: 1px solid var(--silver-200);
  border-radius: var(--radius);
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .18s ease, box-shadow .18s ease;
}
.pkg:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pkg--featured {
  border-color: var(--gold-500);
  box-shadow: 0 14px 40px rgba(201, 162, 39, .22);
}
.pkg__flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--ink);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.pkg__name { font-size: 1.32rem; margin-bottom: .2em; }
.pkg__hours { font-size: .85rem; color: var(--gold-600); font-weight: 600; margin: 0 0 18px; }
.pkg__price {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--plum-700);
  line-height: 1;
  margin-bottom: 4px;
}
.pkg__from { font-size: .8rem; color: var(--silver-600); margin: 0 0 20px; }
.pkg__list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.pkg__list li {
  position: relative;
  padding-left: 26px;
  font-size: .92rem;
  color: #4A4453;
}
.pkg__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .38em;
  width: 14px; height: 8px;
  border-left: 2px solid var(--gold-500);
  border-bottom: 2px solid var(--gold-500);
  transform: rotate(-45deg);
}
.pkg .btn { margin-top: auto; }

/* ---------------------------------------------------------------- add-ons */
.addons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.addon {
  background: var(--white);
  border: 1px solid var(--silver-200);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.addon:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.addon__media {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  color: var(--gold-200);
  background:
    radial-gradient(420px 220px at 30% 20%, rgba(167, 127, 212, .45), transparent 65%),
    linear-gradient(150deg, var(--plum-700), var(--ink));
  font-size: .82rem;
}
.addon__media svg { width: 44px; height: 44px; opacity: .92; }
.addon__body { padding: 26px 24px; display: flex; flex-direction: column; flex: 1; }
.addon h3 { font-size: 1.2rem; margin-bottom: .3em; }
.addon__price { color: var(--gold-600); font-weight: 700; font-size: .95rem; margin: 0 0 12px; }
.addon p { font-size: .94rem; color: #4A4453; }
.addon__foot { margin-top: auto; padding-top: 14px; }

/* ---------------------------------------------------------------- sobre */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.frame {
  aspect-ratio: 5 / 4;
  border-radius: 18px;
  border: 1px solid rgba(201, 162, 39, .38);
  background:
    linear-gradient(140deg, rgba(107, 63, 160, .30), rgba(20, 12, 31, .10)),
    repeating-linear-gradient(-45deg, rgba(107, 63, 160, .05) 0 14px, transparent 14px 28px),
    var(--silver-50);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
}
.frame strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--plum-700);
  margin-bottom: .35em;
}
.frame p { color: var(--silver-600); font-size: .9rem; margin: 0; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.stat {
  border-left: 2px solid var(--gold-500);
  padding-left: 16px;
}
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--plum-700);
  line-height: 1;
}
.section--plum .stat strong { color: var(--gold-400); }
.stat span { font-size: .85rem; color: var(--silver-600); }
.section--plum .stat span { color: rgba(255, 255, 255, .72); }

/* ---------------------------------------------------------------- gig log */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post {
  background: var(--white);
  border: 1px solid var(--silver-200);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.post__media {
  aspect-ratio: 3 / 2;
  background:
    radial-gradient(360px 200px at 70% 30%, rgba(201, 162, 39, .30), transparent 65%),
    linear-gradient(150deg, var(--plum-600), var(--plum-900));
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .55);
  font-size: .8rem;
}
.post__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post__meta { font-size: .78rem; color: var(--gold-600); font-weight: 600; margin: 0 0 8px; }
.post h3 { font-size: 1.18rem; margin-bottom: .35em; }
.post p { font-size: .93rem; color: #4A4453; }
.post__link { margin-top: auto; font-weight: 600; text-decoration: none; color: var(--plum-600); }
.post__link:hover { color: var(--gold-600); }
/* Marcador de posición: no es un enlace, así que no se pinta como tal */
.post__link--off { color: var(--silver-600); font-weight: 500; font-style: italic; margin: 0; }

/* ---------------------------------------------------------------- cabecera de página interior */
.pagehead {
  position: relative;
  background:
    radial-gradient(900px 460px at 76% 12%, rgba(107, 63, 160, .55), transparent 62%),
    linear-gradient(160deg, var(--plum-900), var(--ink));
  color: var(--white);
  padding: 62px 0 56px;
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .62);
  margin-bottom: 18px;
}
.crumbs a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.crumbs a:hover { color: var(--gold-400); }
.pagehead h1 { color: var(--white); margin-bottom: .3em; }
.pagehead__lead { color: rgba(255, 255, 255, .82); max-width: 44em; margin: 0; }
.pagehead__meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip {
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .86);
}
.chip--gold { background: rgba(201, 162, 39, .18); border-color: var(--gold-500); color: var(--gold-200); }

/* ---------------------------------------------------------------- cuerpo de página de paquete */
.layout {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 52px;
  align-items: start;
  padding: 72px 0;
}
.prose h2 { margin-top: 1.4em; }
.prose h2:first-child { margin-top: 0; }
.prose ul li { margin-bottom: .5em; }

.aside {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 20px;
}
.book {
  border: 1px solid var(--silver-200);
  border-top: 3px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.book h3 { font-size: 1.25rem; margin-bottom: .2em; }
.book__price {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--plum-700);
  line-height: 1;
  margin: 10px 0 2px;
}
.book__from { font-size: .8rem; color: var(--silver-600); margin: 0 0 20px; }
.book__rows { list-style: none; padding: 0; margin: 0 0 22px; }
.book__rows li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--silver-200);
  font-size: .92rem;
}
.book__rows li:last-child { border-bottom: 0; }
.book__rows b { color: var(--plum-700); }

.card-dark {
  border-radius: var(--radius);
  padding: 26px 24px;
  background: linear-gradient(150deg, var(--plum-700), var(--ink));
  color: var(--white);
}
.card-dark h3 { color: var(--white); font-size: 1.15rem; }
.card-dark p { color: rgba(255, 255, 255, .8); font-size: .93rem; }
/* 🐞 Cazado en QA visual (22-sep): los enlaces heredaban el púrpura de `a` y
   quedaban púrpura oscuro SOBRE púrpura oscuro — ilegibles. El navegador no
   avisa de esto: hay que verlo. */
.card-dark a:not(.btn) {
  color: var(--gold-200);
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 226, 174, .28);
  padding-bottom: 1px;
}
.card-dark a:not(.btn):hover { color: var(--white); border-bottom-color: var(--gold-400); }
.card-dark ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }

/* Las direcciones de correo son largas: que partan en vez de desbordar */
.contact-card a, .footer a, .book__rows a { overflow-wrap: break-word; }

/* ---------------------------------------------------------------- preguntas */
.faq { border-top: 1px solid var(--silver-200); margin-top: 2em; }
.faq__item { border-bottom: 1px solid var(--silver-200); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.faq__q::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.5rem;
  color: var(--gold-600);
  flex-shrink: 0;
}
.faq__item.is-open .faq__q::after { content: "−"; }
.faq__a { display: none; padding: 0 0 20px; color: #4A4453; }
.faq__item.is-open .faq__a { display: block; }

/* ---------------------------------------------------------------- formulario */
.form { max-width: 640px; }
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--plum-700);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #8B95A9;   /* 3,01:1 — el borde es lo único que dibuja el campo */
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--silver-600); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--plum-500);
  box-shadow: 0 0 0 3px rgba(107, 63, 160, .14);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder { color: var(--silver-600); }

@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------------------------------------------------------------- contacto */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  background: rgba(255, 255, 255, .04);
}
.contact-card__ico {
  width: 54px; height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 39, .18);
  color: var(--gold-400);
}
.contact-card__ico svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: .25em; }
.contact-card a {
  color: var(--gold-200);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
}
.contact-card a:hover { color: var(--white); }

/* ---------------------------------------------------------------- cta */
.cta {
  background:
    radial-gradient(700px 360px at 20% 20%, rgba(201, 162, 39, .22), transparent 62%),
    linear-gradient(150deg, var(--plum-700), var(--plum-900));
  color: var(--white);
  padding: 74px 0;
  text-align: center;
}
.cta h2 { color: var(--white); }
.cta p { color: rgba(255, 255, 255, .82); max-width: 44em; margin: 0 auto 28px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------------------------------------------------------------- pie */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  padding: 62px 0 0;
  font-size: .94rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 46px;
}
.footer h3 {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { color: rgba(255, 255, 255, .72); text-decoration: none; }
.footer a:hover { color: var(--gold-400); }
.footer .logo__name { color: var(--white); }
.footer__brand p { margin: 16px 0 0; max-width: 32em; }

.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.socials a:hover { border-color: var(--gold-400); background: rgba(201, 162, 39, .12); }
.socials svg { width: 18px; height: 18px; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .86rem;
  color: rgba(255, 255, 255, .55);
}

/* =========================================================================
   RESPONSIVE — los mismos cortes que usamos en el proyecto anterior
   ========================================================================= */

@media (max-width: 1180px) {
  .packages { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; padding: 68px 0 64px; }
  .hero__frame { aspect-ratio: 16 / 10; }
  .hero__badge { right: 18px; }
  .layout { grid-template-columns: 1fr; gap: 40px; }
  .aside { position: static; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .trio, .addons, .posts, .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav, .header__cta { display: none; }
  .burger { display: block; }

  .nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--silver-200);
    box-shadow: var(--shadow);
    padding: 12px 16px 20px;
    max-height: calc(100dvh - 79px);
    overflow-y: auto;
  }
  .nav.is-open .nav__link { width: 100%; justify-content: space-between; padding: 14px 12px; }
  .nav.is-open .nav__item { width: 100%; }
  .nav.is-open .nav__sub {
    position: static;
    display: none;
    border: 0;
    box-shadow: none;
    padding: 0 0 8px 12px;
    min-width: 0;
  }
  .nav.is-open .nav__item.is-open .nav__sub { display: block; }
  .nav.is-open .nav__item:hover .nav__sub { display: none; }
  .nav.is-open .nav__item.is-open:hover .nav__sub { display: block; }

  .header__inner { position: relative; }
  .section { padding: 64px 0; }
  .trio, .addons, .posts, .contact-grid { grid-template-columns: 1fr; }
  .stats { gap: 12px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .topbar { font-size: .8rem; }
  /* Medido en el QA: estos enlaces daban 21 px de alto. Pulsar para llamar es
     la conversión principal en móvil y era el objetivo más difícil del sitio. */
  .topbar a { min-height: 44px; padding: 4px 2px; }
  .socials a { width: 44px; height: 44px; }
  .footer ul { gap: 4px; }
  .footer ul a { display: inline-block; padding: 10px 0; }
  .crumbs a { display: inline-block; padding: 6px 0; }
  .post__link { display: inline-block; padding: 10px 0; }
  .topbar__inner { justify-content: center; gap: 12px; padding: 8px 0; }
  .packages { grid-template-columns: 1fr; }
  .hero__inner { padding: 54px 0 56px; }
  .hero__actions .btn { width: 100%; }
  .hero__badge { position: static; margin: 18px auto 0; max-width: none; }
  .stats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .cta__actions .btn { width: 100%; }
  .section { padding: 52px 0; }
}

/* Quien pide menos movimiento, no lo tiene */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .btn:hover, .pkg:hover, .svc:hover, .addon:hover { transform: none; }
}

/* Impresión: que una pareja pueda imprimir los precios y se lea */
@media print {
  .header, .cta, .footer, .btn { display: none !important; }
  /* La barra superior SE QUEDA: es donde están el teléfono y el correo, y una
     pareja que imprime los precios necesita poder llamar. */
  .topbar { background: none !important; color: #000 !important; }
  .topbar a { color: #000 !important; }
  body { color: #000; font-size: 12pt; }
  .hero, .pagehead, .section--plum { background: none !important; color: #000 !important; }
  .hero__title, .pagehead h1 { color: #000 !important; }
}
