/* ==========================================================================
   POLO FARM — Design system
   Cargado por el plugin polo-farm-core.php
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */

:root {
  /* Color */
  --pf-crema:      #EDE7DB;
  --pf-lino:       #D6CFC0;
  --pf-tabaco:     #4E4235;
  --pf-tabaco-900: #3A3129;
  --pf-tinta:      #1C1A17;
  --pf-cancha:     #6E7A52;
  --pf-laton:      #A8916B;

  --pf-hairline:       rgba(78, 66, 53, .18);
  --pf-hairline-light: rgba(237, 231, 219, .22);

  /* Tipografía */
  --pf-display: "Fraunces", Georgia, "Times New Roman", serif;
  --pf-sans:    "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --pf-fs-display: clamp(3.25rem, 8vw, 9rem);
  --pf-fs-h2:      clamp(2.25rem, 4.6vw, 4.5rem);
  --pf-fs-h3:      clamp(1.375rem, 2vw, 1.875rem);
  --pf-fs-lead:    clamp(1.125rem, 1.4vw, 1.375rem);
  --pf-fs-body:    1.0625rem;
  --pf-fs-small:   .9375rem;
  --pf-fs-eyebrow: .75rem;

  --pf-lh-display: .96;
  --pf-lh-h2:      1.04;
  --pf-lh-body:    1.62;

  /* Espaciado */
  --pf-section:  clamp(6rem, 12vw, 12.5rem);
  --pf-gutter:   clamp(1.25rem, 5vw, 5rem);
  --pf-max:      1440px;
  --pf-stack-sm: .75rem;
  --pf-stack-md: 1.5rem;
  --pf-stack-lg: 3rem;

  /* Movimiento */
  --pf-ease:     cubic-bezier(.22, 1, .36, 1);
  --pf-dur:      .72s;
  --pf-dur-slow: .9s;
}

/* --------------------------------------------------------------------------
   2. BASE
   -------------------------------------------------------------------------- */

body.pf-site {
  background: var(--pf-crema);
  color: var(--pf-tabaco);
  font-family: var(--pf-sans);
  font-size: var(--pf-fs-body);
  line-height: var(--pf-lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.pf-site ::selection {
  background: var(--pf-tabaco);
  color: var(--pf-crema);
}

body.pf-site :focus-visible {
  outline: 2px solid var(--pf-cancha);
  outline-offset: 3px;
}

/* Contenedores de sección de Elementor */
body.pf-site .pf-section {
  padding-block: var(--pf-section);
  padding-inline: var(--pf-gutter);
}

body.pf-site .pf-section--flush {
  padding-block: 0;
  padding-inline: 0;
}

body.pf-site .pf-dark {
  background: var(--pf-tabaco);
  color: var(--pf-crema);
}

body.pf-site .pf-dark .pf-eyebrow { color: var(--pf-laton); }
body.pf-site .pf-lino-bg { background: var(--pf-lino); }

/* --------------------------------------------------------------------------
   3. TIPOGRAFÍA
   -------------------------------------------------------------------------- */

body.pf-site .pf-eyebrow {
  font-family: var(--pf-sans);
  font-size: var(--pf-fs-eyebrow);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pf-laton);
  margin: 0 0 var(--pf-stack-md);
}

body.pf-site .pf-display {
  font-family: var(--pf-display);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 20, "WONK" 1;
  font-size: var(--pf-fs-display);
  font-weight: 300;
  line-height: var(--pf-lh-display);
  letter-spacing: -.015em;
  margin: 0;
}

body.pf-site .pf-h2 {
  font-family: var(--pf-display);
  font-size: var(--pf-fs-h2);
  font-weight: 300;
  line-height: var(--pf-lh-h2);
  letter-spacing: -.01em;
  margin: 0 0 var(--pf-stack-md);
}

body.pf-site .pf-h3 {
  font-family: var(--pf-display);
  font-size: var(--pf-fs-h3);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 var(--pf-stack-sm);
}

body.pf-site .pf-italic {
  font-style: italic;
  font-variation-settings: "SOFT" 40, "WONK" 1;
}

body.pf-site .pf-lead {
  font-size: var(--pf-fs-lead);
  line-height: 1.5;
  max-width: 34ch;
  margin: 0 0 var(--pf-stack-md);
}

body.pf-site .pf-body p {
  max-width: 46ch;
  margin: 0 0 1.1em;
}

body.pf-site .pf-body p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   4. COMPONENTES
   -------------------------------------------------------------------------- */

/* Botones */
body.pf-site .pf-btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: 1.05em 2.4em;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--pf-tabaco);
  color: var(--pf-crema);
  font-family: var(--pf-sans);
  font-size: var(--pf-fs-small);
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--pf-dur) var(--pf-ease),
              background-color var(--pf-dur) var(--pf-ease),
              color var(--pf-dur) var(--pf-ease);
}

body.pf-site .pf-btn:hover,
body.pf-site .pf-btn:focus-visible {
  background: var(--pf-tinta);
  color: var(--pf-crema);
  transform: translateY(-2px);
}

body.pf-site .pf-btn--ghost {
  background: transparent;
  color: var(--pf-tabaco);
  border-color: var(--pf-hairline);
}

body.pf-site .pf-btn--ghost:hover,
body.pf-site .pf-btn--ghost:focus-visible {
  background: var(--pf-tabaco);
  color: var(--pf-crema);
}

body.pf-site .pf-dark .pf-btn {
  background: var(--pf-crema);
  color: var(--pf-tabaco);
}

body.pf-site .pf-dark .pf-btn:hover,
body.pf-site .pf-dark .pf-btn:focus-visible {
  background: var(--pf-lino);
  color: var(--pf-tinta);
}

body.pf-site .pf-dark .pf-btn--ghost {
  background: transparent;
  color: var(--pf-crema);
  border-color: var(--pf-hairline-light);
}

body.pf-site .pf-dark .pf-btn--ghost:hover,
body.pf-site .pf-dark .pf-btn--ghost:focus-visible {
  background: var(--pf-crema);
  color: var(--pf-tabaco);
}

/* Link de texto con subrayado que crece */
body.pf-site .pf-link {
  display: inline-block;
  position: relative;
  color: inherit;
  text-decoration: none;
  font-size: var(--pf-fs-small);
  letter-spacing: .04em;
  padding-bottom: .35em;
}

body.pf-site .pf-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform var(--pf-dur) var(--pf-ease);
}

body.pf-site .pf-link:hover::after,
body.pf-site .pf-link:focus-visible::after {
  transform: scaleX(0);
  transform-origin: right;
}

/* Regla hairline */
body.pf-site .pf-rule {
  height: 1px;
  width: 100%;
  background: var(--pf-hairline);
  border: 0;
  margin: 0;
}

body.pf-site .pf-dark .pf-rule { background: var(--pf-hairline-light); }

/* --------------------------------------------------------------------------
   5. GESTO FIRMA — DAMERO
   -------------------------------------------------------------------------- */

.pf-damero {
  --pf-damero-size: clamp(24px, 4.2vw, 56px);
  --pf-damero-rows: 2;
  display: grid;
  grid-template-columns: repeat(auto-fill, var(--pf-damero-size));
  grid-auto-rows: var(--pf-damero-size);
  width: 100%;
  height: calc(var(--pf-damero-size) * var(--pf-damero-rows));
  overflow: hidden;
  line-height: 0;
}

.pf-damero__cell {
  width: 100%;
  height: 100%;
  background: var(--pf-tinta);
  transform: scale(0);
  transform-origin: center;
}

.pf-damero__cell--off { background: transparent; }

/* Sin JS o con reduced motion, los cuadros ya están puestos */
html:not(.pf-anim) .pf-damero__cell,
.pf-damero.is-in .pf-damero__cell { transform: scale(1); }

.pf-damero--light .pf-damero__cell { background: var(--pf-crema); }

/* --------------------------------------------------------------------------
   6. ESTADOS INICIALES DE ANIMACIÓN
   Solo se aplican si el JS puso la clase .pf-anim en <html>.
   Sin JS, el contenido se ve completo.
   -------------------------------------------------------------------------- */

html.pf-anim .pf-reveal {
  opacity: 0;
  transform: translateY(28px);
}

html.pf-anim .pf-reveal-line > span {
  display: block;
  overflow: hidden;
}

html.pf-anim .pf-reveal-line > span > span {
  display: block;
  transform: translateY(105%);
}

html.pf-anim .pf-reveal-img { clip-path: inset(0 0 100% 0); }

/* --------------------------------------------------------------------------
   7. SECCIONES
   -------------------------------------------------------------------------- */

/* --- 01 HERO — jx-hero-k3 ------------------------------------------------ */

.jx-hero-k3 {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--pf-gutter) clamp(3rem, 7vh, 6rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--pf-tinta);
}

.jx-hero-k3__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.jx-hero-k3__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  transform: scale(1.06);
}

.jx-hero-k3__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(28, 26, 23, .82) 0%,
    rgba(28, 26, 23, .42) 42%,
    rgba(28, 26, 23, .12) 78%,
    rgba(28, 26, 23, .28) 100%
  );
}

.jx-hero-k3__inner {
  width: 100%;
  max-width: var(--pf-max);
  margin-inline: auto;
  color: var(--pf-crema);
}

.jx-hero-k3__eyebrow {
  font-size: var(--pf-fs-eyebrow);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--pf-lino);
  margin: 0 0 clamp(1.25rem, 3vh, 2.25rem);
}

.jx-hero-k3__title {
  font-family: var(--pf-display);
  font-size: var(--pf-fs-display);
  font-weight: 300;
  line-height: .94;
  letter-spacing: -.02em;
  margin: 0 0 clamp(1.5rem, 3vh, 2.5rem);
  max-width: 15ch;
}

.jx-hero-k3__title em {
  font-style: italic;
  font-variation-settings: "SOFT" 40, "WONK" 1;
}

.jx-hero-k3__lead {
  font-size: var(--pf-fs-lead);
  line-height: 1.5;
  max-width: 38ch;
  color: var(--pf-lino);
  margin: 0 0 clamp(2rem, 4vh, 3rem);
}

.jx-hero-k3__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.jx-hero-k3__mono {
  position: absolute;
  top: clamp(5.5rem, 12vh, 9rem);
  right: var(--pf-gutter);
  width: clamp(88px, 11vw, 168px);
  height: auto;
  z-index: 1;
  opacity: .9;
}

.jx-hero-k3__mono path,
.jx-hero-k3__mono circle {
  fill: none;
  stroke: var(--pf-crema);
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
}

.jx-hero-k3__scroll {
  position: absolute;
  bottom: clamp(1.25rem, 3vh, 2rem);
  right: var(--pf-gutter);
  font-size: .6875rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pf-lino);
  writing-mode: vertical-rl;
}

.jx-hero-k3__damero {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

@media (max-width: 767px) {
  .jx-hero-k3 { min-height: 92svh; }
  .jx-hero-k3__mono { top: auto; bottom: 42%; right: auto; left: var(--pf-gutter); }
  .jx-hero-k3__scroll { display: none; }
}

/* --- 02 MANIFIESTO — jx-mani-p8 ----------------------------------------- */

.jx-mani-p8 {
  background: var(--pf-crema);
  text-align: center;
}

.jx-mani-p8__inner {
  max-width: 62rem;
  margin-inline: auto;
}

.jx-mani-p8__title {
  font-family: var(--pf-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0 0 clamp(2rem, 4vw, 3.5rem);
}

.jx-mani-p8__title em {
  font-style: italic;
  font-variation-settings: "SOFT" 40, "WONK" 1;
}

.jx-mani-p8__body {
  max-width: 52ch;
  margin-inline: auto;
  font-size: var(--pf-fs-lead);
  line-height: 1.6;
}

.jx-mani-p8__body p { margin: 0 0 1.2em; }
.jx-mani-p8__body p:last-child { margin-bottom: 0; }

/* --- 03 EL LUGAR — jx-lugar-r2 ------------------------------------------ */

.jx-lugar-r2 { padding-inline: 0; background: var(--pf-crema); }

.jx-lugar-r2__media {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.jx-lugar-r2__media img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

.jx-lugar-r2__grid {
  max-width: var(--pf-max);
  margin-inline: auto;
  padding-inline: var(--pf-gutter);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.jx-lugar-r2__head { grid-column: 1 / span 6; }
.jx-lugar-r2__text { grid-column: 8 / span 5; }

@media (max-width: 1023px) {
  .jx-lugar-r2__media { aspect-ratio: 4 / 3; }
  .jx-lugar-r2__head,
  .jx-lugar-r2__text { grid-column: 1 / -1; }
}

/* --- 04 EL SALÓN — jx-salon-v6 ------------------------------------------ */

.jx-salon-v6 { background: var(--pf-lino); overflow: hidden; }

.jx-salon-v6__grid {
  max-width: var(--pf-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.jx-salon-v6__text { grid-column: 1 / span 5; }
.jx-salon-v6__media { grid-column: 6 / span 8; }

.jx-salon-v6__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.jx-salon-v6__ficha {
  list-style: none;
  margin: clamp(2rem, 3vw, 3rem) 0 var(--pf-stack-lg);
  padding: 0;
  border-top: 1px solid var(--pf-hairline);
}

.jx-salon-v6__ficha li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .95em 0;
  border-bottom: 1px solid var(--pf-hairline);
  font-size: var(--pf-fs-small);
}

.jx-salon-v6__ficha dt,
.jx-salon-v6__ficha .k {
  letter-spacing: .04em;
  color: var(--pf-tabaco);
  opacity: .72;
}

.jx-salon-v6__ficha .v {
  font-family: var(--pf-display);
  font-size: 1.25rem;
  font-weight: 400;
  text-align: right;
}

@media (max-width: 1023px) {
  .jx-salon-v6__text,
  .jx-salon-v6__media { grid-column: 1 / -1; }
  .jx-salon-v6__media { order: -1; }
}

/* --- 05 TRES CAMINOS — jx-cam-t4 ---------------------------------------- */

.jx-cam-t4 { background: var(--pf-crema); padding-inline: 0; }

.jx-cam-t4__head {
  max-width: var(--pf-max);
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
  padding-inline: var(--pf-gutter);
}

.jx-cam-t4__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--pf-hairline);
  border-block: 1px solid var(--pf-hairline);
}

.jx-cam-t4__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(24rem, 42vw, 34rem);
  padding: clamp(1.75rem, 3vw, 3rem);
  background: var(--pf-crema);
  color: var(--pf-tabaco);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}

.jx-cam-t4__img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.jx-cam-t4__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--pf-ease);
}

.jx-cam-t4__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(28,26,23,.88) 8%, rgba(28,26,23,.28) 62%, rgba(28,26,23,.08) 100%);
  transition: opacity var(--pf-dur) var(--pf-ease);
}

.jx-cam-t4__card:hover .jx-cam-t4__img img,
.jx-cam-t4__card:focus-visible .jx-cam-t4__img img {
  transform: scale(1.045);
}

.jx-cam-t4__num {
  position: absolute;
  top: clamp(1.5rem, 3vw, 2.5rem);
  left: clamp(1.75rem, 3vw, 3rem);
  width: 34px;
  height: 34px;
  z-index: 1;
}

.jx-cam-t4__num rect { fill: var(--pf-crema); }
.jx-cam-t4__num rect.off { fill: transparent; }

.jx-cam-t4__title {
  font-family: var(--pf-display);
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--pf-crema);
  margin: 0 0 .5em;
}

.jx-cam-t4__desc {
  color: var(--pf-lino);
  font-size: var(--pf-fs-small);
  line-height: 1.55;
  max-width: 30ch;
  margin: 0 0 1.4em;
}

.jx-cam-t4__cue {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  color: var(--pf-crema);
  font-size: .8125rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.jx-cam-t4__cue span {
  display: block;
  width: 26px;
  height: 1px;
  background: currentColor;
  transition: width var(--pf-dur) var(--pf-ease);
}

.jx-cam-t4__card:hover .jx-cam-t4__cue span,
.jx-cam-t4__card:focus-visible .jx-cam-t4__cue span { width: 46px; }

@media (max-width: 900px) {
  .jx-cam-t4__track {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .jx-cam-t4__track::-webkit-scrollbar { display: none; }
  .jx-cam-t4__card { scroll-snap-align: center; min-height: 26rem; }
}

/* --- 06 DÍA Y NOCHE — jx-dn-m9 ------------------------------------------ */

.jx-dn-m9 { padding: 0; background: var(--pf-tinta); }

.jx-dn-m9__stage {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.jx-dn-m9__layer {
  position: absolute;
  inset: 0;
}

.jx-dn-m9__layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jx-dn-m9__layer--night { opacity: 0; }

html:not(.pf-anim) .jx-dn-m9__layer--night { opacity: 1; }

.jx-dn-m9__copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--pf-gutter);
  padding-bottom: clamp(3rem, 8vh, 6rem);
  background: linear-gradient(to top, rgba(28,26,23,.85), rgba(28,26,23,0));
  color: var(--pf-crema);
}

.jx-dn-m9__inner {
  max-width: var(--pf-max);
  margin-inline: auto;
}

.jx-dn-m9__title {
  font-family: var(--pf-display);
  font-size: clamp(2.25rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.03;
  margin: 0 0 1rem;
  max-width: 16ch;
}

.jx-dn-m9__title em { font-style: italic; }

.jx-dn-m9__states { position: relative; min-height: 5.5em; max-width: 42ch; }

.jx-dn-m9__state {
  position: absolute;
  inset: 0;
  font-size: var(--pf-fs-lead);
  line-height: 1.5;
  color: var(--pf-lino);
  margin: 0;
}

.jx-dn-m9__state--night { opacity: 0; }

html:not(.pf-anim) .jx-dn-m9__states { min-height: 0; }
html:not(.pf-anim) .jx-dn-m9__state { position: static; opacity: 1; margin-bottom: 1em; }

.jx-dn-m9__foot {
  margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
  font-size: var(--pf-fs-small);
  color: var(--pf-lino);
  opacity: .8;
}

@media (max-width: 767px) {
  .jx-dn-m9__stage { height: 78svh; }
}

/* --- 07 INCLUIDO — jx-incl-b5 ------------------------------------------- */

.jx-incl-b5 { background: var(--pf-tabaco); color: var(--pf-crema); }

.jx-incl-b5__grid {
  max-width: var(--pf-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
}

.jx-incl-b5__head { grid-column: 1 / span 4; }
.jx-incl-b5__items { grid-column: 6 / span 7; }

.jx-incl-b5__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--pf-hairline-light);
  border: 1px solid var(--pf-hairline-light);
}

.jx-incl-b5__item {
  background: var(--pf-tabaco);
  padding: clamp(1.5rem, 2.4vw, 2.25rem);
}

.jx-incl-b5__item i {
  font-size: 1.5rem;
  color: var(--pf-laton);
  display: block;
  margin-bottom: 1.1rem;
}

.jx-incl-b5__item h3 {
  font-family: var(--pf-sans);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin: 0 0 .4em;
  color: var(--pf-crema);
}

.jx-incl-b5__item p {
  margin: 0;
  font-size: .875rem;
  line-height: 1.5;
  color: var(--pf-lino);
  opacity: .82;
}

@media (max-width: 1023px) {
  .jx-incl-b5__head,
  .jx-incl-b5__items { grid-column: 1 / -1; }
  .jx-incl-b5__list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .jx-incl-b5__list { grid-template-columns: 1fr; }
}

/* --- 08 ADICIONALES — jx-adic-w1 ---------------------------------------- */

.jx-adic-w1 { background: var(--pf-crema); }

.jx-adic-w1__inner { max-width: var(--pf-max); margin-inline: auto; }

.jx-adic-w1__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.jx-adic-w1__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1px, .2vw, 2px);
  background: var(--pf-hairline);
  border: 1px solid var(--pf-hairline);
}

.jx-adic-w1__item {
  position: relative;
  background: var(--pf-crema);
  padding: clamp(1.75rem, 2.6vw, 2.5rem);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: background-color var(--pf-dur) var(--pf-ease),
              color var(--pf-dur) var(--pf-ease);
}

.jx-adic-w1__item:hover { background: var(--pf-tabaco); color: var(--pf-crema); }
.jx-adic-w1__item:hover i { color: var(--pf-laton); }
.jx-adic-w1__item:hover p { color: var(--pf-lino); }

.jx-adic-w1__item i {
  font-size: 1.375rem;
  color: var(--pf-tabaco);
  line-height: 1;
  margin-top: .15em;
  transition: color var(--pf-dur) var(--pf-ease);
}

.jx-adic-w1__item h3 {
  font-family: var(--pf-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 .25em;
}

.jx-adic-w1__item p {
  margin: 0;
  font-size: .875rem;
  line-height: 1.5;
  opacity: .78;
  transition: color var(--pf-dur) var(--pf-ease);
}

@media (max-width: 1023px) { .jx-adic-w1__list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .jx-adic-w1__list { grid-template-columns: 1fr; } }

/* --- 09 GALERÍA — jx-gal-z7 --------------------------------------------- */

.jx-gal-z7 {
  padding-block: 0;
  padding-inline: 0;
  background: var(--pf-tinta);
  overflow: hidden;
}

.jx-gal-z7__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.5rem, 1vw, 1rem);
  padding: clamp(.5rem, 1vw, 1rem);
  align-items: start;
}

.jx-gal-z7__col {
  display: grid;
  gap: clamp(.5rem, 1vw, 1rem);
  will-change: transform;
}

.jx-gal-z7__col--b { margin-top: clamp(2rem, 6vw, 6rem); }
.jx-gal-z7__col--c { margin-top: clamp(1rem, 3vw, 3rem); }

.jx-gal-z7 figure { margin: 0; overflow: hidden; }

.jx-gal-z7 img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.jx-gal-z7 figure:nth-child(even) img { aspect-ratio: 4 / 3; }

@media (max-width: 767px) {
  .jx-gal-z7__grid { grid-template-columns: repeat(2, 1fr); }
  .jx-gal-z7__col--c { display: none; }
  .jx-gal-z7__col--b { margin-top: clamp(1.5rem, 8vw, 3rem); }
}

/* --- 10 CIERRE — jx-cta-h2 ---------------------------------------------- */

.jx-cta-h2 {
  background: var(--pf-tabaco);
  color: var(--pf-crema);
  text-align: center;
  padding-inline: var(--pf-gutter);
}

.jx-cta-h2__inner { max-width: 54rem; margin-inline: auto; }

.jx-cta-h2__damero { margin-bottom: clamp(3rem, 6vw, 5rem); }

.jx-cta-h2__title {
  font-family: var(--pf-display);
  font-size: clamp(2.25rem, 5.2vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 0 0 var(--pf-stack-md);
}

.jx-cta-h2__title em { font-style: italic; }

.jx-cta-h2__lead {
  font-size: var(--pf-fs-lead);
  color: var(--pf-lino);
  max-width: 42ch;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.jx-cta-h2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   8. REDUCED MOTION
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html.pf-anim .pf-reveal { opacity: 1; transform: none; }
  html.pf-anim .pf-reveal-line > span > span { transform: none; }
  html.pf-anim .pf-reveal-img { clip-path: none; }
  .pf-damero__cell { transform: scale(1); }
  .jx-dn-m9__layer--night { opacity: 1; }
  .jx-dn-m9__states { min-height: 0; }
  .jx-dn-m9__state { position: static; opacity: 1; margin-bottom: 1em; }
  .jx-hero-k3__media img { transform: none; }

  body.pf-site *,
  body.pf-site *::before,
  body.pf-site *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
