/* ============================================================
   JT PORTFOLIO — theme.css
   Fase 1: estilos inline extraídos a clases + design tokens.

   Convención: prefijo `jt-`. Cada clase de este archivo se puede
   pegar tal cual en el campo "CSS Classes" de cualquier widget
   de Elementor (Avanzado → CSS Classes).

   Los tokens de :root se mapean 1:1 a los Global Colors /
   Global Fonts de Elementor en la Fase 2.
   ============================================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Superficies */
  --jt-bg:            #08080a;
  --jt-bg-alt:        #0b0b0d;
  --jt-surface:       #0d0d10;
  --jt-surface-2:     #0f0f12;
  --jt-surface-3:     #0c0c0f;

  /* Tinta */
  --jt-ink:           #eeeae4;
  --jt-ink-soft:      #b8b3ac;
  --jt-ink-soft-2:    #cfc9c0;
  --jt-muted:         #8a867f;
  --jt-muted-dim:     #5a5750;

  /* Acento */
  --jt-gold:          #d8b26b;

  /* Líneas */
  --jt-line:          rgba(238, 234, 228, 0.14);
  --jt-line-soft:     rgba(238, 234, 228, 0.08);
  --jt-line-faint:    rgba(238, 234, 228, 0.05);
  --jt-line-dash:     rgba(238, 234, 228, 0.18);
  --jt-line-gold:     rgba(216, 178, 107, 0.40);

  /* Tipografía */
  --jt-font-display:  'Syne', system-ui, sans-serif;
  --jt-font-body:     'Space Grotesk', system-ui, sans-serif;
  --jt-font-mono:     'Space Mono', ui-monospace, monospace;

  /* Métrica */
  --jt-gutter:        6vw;
  --jt-maxw:          1500px;
  --jt-radius:        8px;

  /* Easings (equivalentes CSS de los eases GSAP del original) */
  --jt-ease-out:      cubic-bezier(0.215, 0.610, 0.355, 1);   /* ≈ power3.out */
  --jt-ease-expo:     cubic-bezier(0.190, 1.000, 0.220, 1);   /* ≈ expo.out   */
}

/* ---------- 2. RESET / BASE ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--jt-bg);
  color: var(--jt-ink);
  font-family: var(--jt-font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--jt-gold); color: var(--jt-bg); }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--jt-gold); }

@keyframes jt-spin   { to { transform: rotate(360deg); } }
@keyframes jt-marquee{ to { transform: translateX(-50%); } }

/* ---------- 3. ESTADOS INICIALES DE ANIMACIÓN ----------
   Sólo se aplican si <html> tiene .jt-motion (lo añade el script
   inline del <head>). Si el JS o el CDN de GSAP fallan, la clase
   se retira y el contenido queda visible. Anti-FOUC + failsafe. */
.jt-motion [data-reveal]   { opacity: 0; transform: translateY(34px); }
.jt-motion [data-chain]    { opacity: 0; transform: translateY(40px); }
.jt-motion .jt-split__word { transform: translateY(110%); }

html:not(.jt-motion) .jt-preloader { display: none; }

.jt-split__mask { display: inline-block; overflow: hidden; vertical-align: top; }
.jt-split__word { display: inline-block; will-change: transform; }

/* ---------- 4. UTILIDADES ---------- */
.jt-container   { max-width: var(--jt-maxw); margin: 0 auto; }
.jt-accent      { color: var(--jt-gold); }
.jt-accent-i    { color: var(--jt-gold); font-style: italic; font-weight: 700; }
.jt-ink-strong  { color: var(--jt-ink); }
.jt-mono        { font-family: var(--jt-font-mono); }
.jt-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;
}

/* ---------- 5. BOTONES ---------- */
.jt-btn {
  display: inline-block;
  border-radius: 100px;
  font-family: inherit;
  text-align: center;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
}
.jt-btn--solid    { background: var(--jt-ink); color: var(--jt-bg); padding: 9px 18px; font-weight: 700; }
.jt-btn--solid:hover { color: var(--jt-bg); }
.jt-btn--lg       { padding: 18px 40px; font-size: 17px; }
.jt-btn--outline  { border: 1px solid rgba(238, 234, 228, .3); padding: 18px 40px; font-weight: 500; font-size: 17px; }
.jt-btn--spec {
  font-family: var(--jt-font-mono); font-size: 12px; letter-spacing: .04em;
  background: none; border: 1px solid rgba(238, 234, 228, .35);
  color: var(--jt-ink); padding: 7px 14px;
}
.jt-btn--spec.is-on { background: var(--jt-gold); color: var(--jt-bg); border-color: var(--jt-gold); }

/* ---------- 6. PRELOADER ---------- */
.jt-preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--jt-bg);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: var(--jt-gutter);
  pointer-events: none;
}
.jt-preloader__mark {
  font-family: var(--jt-font-display); font-weight: 800;
  font-size: clamp(48px, 9vw, 140px); line-height: .9; letter-spacing: -.03em;
}
.jt-preloader__line        { display: block; overflow: hidden; }
.jt-preloader__line > span { display: block; }
.jt-preloader__line--gold > span { color: var(--jt-gold); }
.jt-preloader__reg  { color: var(--jt-ink); }
.jt-preloader__meta {
  font-family: var(--jt-font-mono); font-size: 12px;
  text-align: right; color: var(--jt-muted); line-height: 1.7;
}
.jt-preloader__count {
  font-size: clamp(40px, 6vw, 84px); color: var(--jt-ink);
  font-weight: 700; line-height: 1;
}

/* ---------- 7. CURSOR CUSTOM ---------- */
.jt-cursor-dot, .jt-cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 999;
  pointer-events: none; transform: translate(-50%, -50%);
  display: none;
}
.jt-cursor-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--jt-gold); mix-blend-mode: difference;
}
.jt-cursor-ring {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(238, 234, 228, .4);
  transition: width .3s, height .3s, background .3s, border-color .3s;
}
.jt-cursor-ring.is-grown {
  width: 64px; height: 64px;
  background: rgba(216, 178, 107, .12);
  border-color: rgba(216, 178, 107, .6);
}
@media (hover: hover) and (pointer: fine) {
  .jt-cursor-dot, .jt-cursor-ring { display: block; }
}

/* ---------- 8. NAV ---------- */
.jt-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--jt-gutter);
  mix-blend-mode: difference;
}
.jt-nav__brand {
  font-family: var(--jt-font-display); font-weight: 800;
  font-size: 20px; letter-spacing: -.02em;
}
.jt-nav__menu {
  display: flex; align-items: center; gap: 28px;
  font-family: var(--jt-font-mono); font-size: 12px; letter-spacing: .04em;
}
.jt-nav__link { opacity: .75; }
.jt-nav__link:hover { opacity: 1; }

/* ---------- 9. SECCIÓN GENÉRICA ---------- */
.jt-section {
  position: relative;
  padding: 16vh var(--jt-gutter);
  border-top: 1px solid var(--jt-line-soft);
}
.jt-section__head {
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap; gap: 20px; margin-bottom: 9vh;
}
.jt-section__head--tight { margin-bottom: 8vh; }
.jt-section__title {
  font-family: var(--jt-font-display); font-weight: 700;
  font-size: clamp(30px, 4.4vw, 76px); line-height: 1;
  letter-spacing: -.02em; max-width: 900px;
}
.jt-section__title-dim { color: var(--jt-muted); }
.jt-section__index {
  font-family: var(--jt-font-mono); font-size: 12px;
  color: var(--jt-muted); text-align: right;
}

/* ---------- 10. HERO ---------- */
.jt-hero {
  position: relative; min-height: 100vh;
  padding: 0 var(--jt-gutter);
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.jt-hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .55; }
.jt-hero__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 90% at 70% 20%, rgba(8, 8, 10, 0) 30%, var(--jt-bg) 78%);
}
.jt-hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--jt-maxw); margin: 0 auto; }
.jt-hero__title {
  font-family: var(--jt-font-display); font-weight: 800;
  font-size: clamp(44px, 8.4vw, 148px); line-height: .92;
  letter-spacing: -.035em; margin: 0; text-wrap: balance;
}
.jt-hero__grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 40px; margin-top: 48px; align-items: end;
}
.jt-hero__lede {
  font-size: clamp(16px, 1.5vw, 21px); line-height: 1.5;
  color: var(--jt-ink-soft); max-width: 560px; margin: 0; font-weight: 300;
}
.jt-hero__stats {
  display: flex; gap: 44px; justify-content: flex-end;
  font-family: var(--jt-font-mono);
  border-top: 1px solid var(--jt-line); padding-top: 20px;
}
.jt-hero__cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-family: var(--jt-font-mono); font-size: 11px; color: var(--jt-muted);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.jt-hero__cue-line {
  width: 1px; height: 44px; display: block;
  background: linear-gradient(var(--jt-muted), transparent);
}

.jt-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--jt-font-mono); font-size: 13px;
  color: var(--jt-muted); letter-spacing: .04em; margin-bottom: 34px;
}
.jt-eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--jt-gold); box-shadow: 0 0 12px var(--jt-gold);
  flex: none;
}

.jt-stat__value {
  font-family: var(--jt-font-display); font-weight: 800;
  font-size: clamp(34px, 4vw, 58px); line-height: 1;
}
.jt-stat__label { font-size: 11px; color: var(--jt-muted); margin-top: 4px; }

/* ---------- 11. ABOUT / EXPERTISE ---------- */
.jt-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.jt-about__sticky { position: sticky; top: 14vh; display: flex; flex-direction: column; gap: 26px; }
.jt-about__hint {
  font-size: 14px; color: var(--jt-muted); line-height: 1.6;
  margin: 0; font-family: var(--jt-font-mono);
}

.jt-exp-list { display: flex; flex-direction: column; }
.jt-exp {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 22px; align-items: center; padding: 30px 0;
  border-top: 1px solid var(--jt-line);
  cursor: pointer;
  transition: padding-left .4s var(--jt-ease-out), color .4s var(--jt-ease-out);
}
.jt-exp:last-child { border-bottom: 1px solid var(--jt-line); }
.jt-exp.is-active { padding-left: 18px; color: #fff; }
.jt-exp__key   { font-family: var(--jt-font-mono); font-size: 12px; color: var(--jt-muted); }
.jt-exp__title {
  font-family: var(--jt-font-display); font-weight: 700;
  font-size: clamp(22px, 2.6vw, 40px); letter-spacing: -.01em;
}
.jt-exp__arrow {
  font-family: var(--jt-font-mono); font-size: 20px; color: var(--jt-muted);
  transition: transform .4s var(--jt-ease-out), color .4s var(--jt-ease-out);
}
.jt-exp.is-active .jt-exp__arrow { transform: translateX(6px); color: var(--jt-gold); }

.jt-exp-stage {
  position: relative; aspect-ratio: 4 / 3;
  border: 1px solid var(--jt-line); border-radius: 6px;
  overflow: hidden; background: var(--jt-surface);
}
.jt-exp-panel {
  position: absolute; inset: 0; padding: 34px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; transition: opacity .5s; pointer-events: none;
}
.jt-exp-panel.is-active { opacity: 1; }
.jt-exp-panel__kicker { font-family: var(--jt-font-mono); font-size: 12px; color: var(--jt-gold); }
.jt-exp-panel__media {
  flex: 1; margin: 18px 0; border-radius: 4px;
  background: repeating-linear-gradient(135deg, var(--jt-line-faint) 0 10px, transparent 10px 20px);
  border: 1px dashed var(--jt-line-dash);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--jt-font-mono); font-size: 11px; color: var(--jt-muted);
  overflow: hidden;
}
.jt-exp-panel__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jt-exp-panel__body { font-size: 15px; color: var(--jt-ink-soft); line-height: 1.5; }

/* ---------- 12. SHOWROOM (pin horizontal) ---------- */
.jt-showroom { position: relative; background: var(--jt-bg-alt); }
.jt-showroom__pin { height: 100vh; overflow: hidden; position: relative; }
.jt-showroom__track { height: 100vh; display: flex; align-items: center; will-change: transform; }

.jt-showroom__intro,
.jt-showroom__outro {
  flex: none; height: 100vh; padding: 0 5vw;
  display: flex; flex-direction: column; justify-content: center;
}
.jt-showroom__intro { width: 44vw; min-width: 520px; }
.jt-showroom__outro { width: 34vw; min-width: 400px; }

.jt-showroom__title {
  font-family: var(--jt-font-display); font-weight: 800;
  font-size: clamp(40px, 6vw, 110px); line-height: .92; letter-spacing: -.03em;
}
.jt-showroom__lede { color: var(--jt-muted); max-width: 360px; margin-top: 26px; line-height: 1.6; font-weight: 300; }
.jt-showroom__hint {
  font-family: var(--jt-font-mono); font-size: 13px;
  display: block; margin-top: 14px; color: var(--jt-gold);
}
.jt-showroom__label { font-family: var(--jt-font-mono); font-size: 12px; color: var(--jt-muted); margin-bottom: 16px; }
.jt-showroom__next {
  font-family: var(--jt-font-display); font-weight: 800;
  font-size: clamp(30px, 3.4vw, 58px); line-height: 1; letter-spacing: -.02em;
}
.jt-showroom__progress {
  position: absolute; bottom: 40px; left: 5vw;
  width: calc(100% - 10vw); height: 1px; background: var(--jt-line);
}
.jt-showroom__bar { height: 100%; width: 0; background: var(--jt-gold); }

.jt-project {
  flex: none; width: 38vw; min-width: 440px; height: 64vh; margin: 0 2vw;
  position: relative; overflow: hidden;
  border: 1px solid var(--jt-line); border-radius: var(--jt-radius);
  background: var(--jt-surface-2);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 38px;
  contain: layout paint;
}
.jt-project:hover { color: inherit; }
.jt-project__texture {
  position: absolute; inset: 0; z-index: 0;
  background: repeating-linear-gradient(135deg, rgba(238, 234, 228, .05) 0 12px, transparent 12px 24px);
}
.jt-project__texture--gold {
  background: repeating-linear-gradient(135deg, rgba(216, 178, 107, .06) 0 12px, transparent 12px 24px);
}
.jt-project__media { position: absolute; inset: 0; z-index: 0; }
.jt-project__media img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .35; }
.jt-project__cat {
  position: absolute; top: 34px; left: 38px; z-index: 1;
  font-family: var(--jt-font-mono); font-size: 12px; color: var(--jt-muted);
}
.jt-project__body  { position: relative; z-index: 1; }
.jt-project__title { font-family: var(--jt-font-display); font-weight: 700; font-size: clamp(28px, 3vw, 46px); line-height: 1; }
.jt-project__desc  { color: var(--jt-ink-soft); margin-top: 12px; line-height: 1.5; max-width: 340px; }

.jt-tags {
  display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap;
  font-family: var(--jt-font-mono); font-size: 11px; color: var(--jt-gold);
}
.jt-tag { border: 1px solid var(--jt-line-gold); padding: 4px 10px; border-radius: 100px; }

/* ---------- 13. PROCESS + MARQUEE ---------- */
.jt-chain-wrap { display: flex; flex-direction: column; border-top: 1px solid var(--jt-line); }
.jt-chain {
  display: grid; grid-template-columns: 80px 1fr 1.2fr; gap: 30px;
  padding: 34px 0; border-bottom: 1px solid var(--jt-line); align-items: baseline;
}
.jt-chain__index { font-family: var(--jt-font-mono); font-size: 13px; color: var(--jt-gold); }
.jt-chain__title { font-family: var(--jt-font-display); font-weight: 700; font-size: clamp(22px, 2.4vw, 38px); }
.jt-chain__desc  { color: var(--jt-muted); line-height: 1.6; font-weight: 300; }

.jt-stack { margin-top: 9vh; }
.jt-stack__label { font-family: var(--jt-font-mono); font-size: 12px; color: var(--jt-muted); margin-bottom: 24px; }
.jt-marquee-mask {
  overflow: hidden; padding: 26px 0;
  border-top: 1px solid var(--jt-line); border-bottom: 1px solid var(--jt-line);
}
.jt-marquee {
  display: flex; gap: 60px; white-space: nowrap; width: max-content;
  font-family: var(--jt-font-display); font-weight: 700;
  font-size: clamp(30px, 4vw, 64px); color: var(--jt-ink);
}
.jt-marquee__sep { color: var(--jt-muted); }

/* ---------- 14. CTA / FOOTER ---------- */
.jt-cta {
  position: relative; overflow: hidden;
  padding: 16vh var(--jt-gutter) 5vh;
  background: var(--jt-bg); border-top: 1px solid var(--jt-line-soft);
}
.jt-cta__inner  { max-width: var(--jt-maxw); margin: 0 auto; text-align: center; }
.jt-cta__kicker { font-family: var(--jt-font-mono); font-size: 13px; color: var(--jt-muted); margin-bottom: 5vh; }
.jt-cta__mega {
  display: inline-block;
  font-family: var(--jt-font-display); font-weight: 800;
  font-size: clamp(52px, 13vw, 220px); line-height: .88; letter-spacing: -.04em;
}
.jt-cta__mega > span { display: block; }
.jt-cta__mega-alt    { color: var(--jt-gold); font-style: italic; }
.jt-cta__actions { display: flex; justify-content: center; gap: 20px; margin-top: 7vh; flex-wrap: wrap; }

.jt-footer {
  max-width: var(--jt-maxw); margin: 14vh auto 0;
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 30px;
  border-top: 1px solid var(--jt-line); padding-top: 34px;
}
.jt-footer__mark {
  font-family: var(--jt-font-display); font-weight: 800;
  font-size: clamp(40px, 7vw, 110px); line-height: .9; letter-spacing: -.03em;
}
.jt-footer__cols { display: flex; gap: 44px; font-family: var(--jt-font-mono); font-size: 12px; color: var(--jt-muted); }
.jt-footer__col-title { color: var(--jt-ink); margin-bottom: 10px; }
.jt-footer__list { line-height: 1.9; }
.jt-legal {
  max-width: var(--jt-maxw); margin: 40px auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-family: var(--jt-font-mono); font-size: 11px; color: var(--jt-muted-dim);
}

/* ---------- 15. SPEC MODE ---------- */
.jt-spec-slot { opacity: 0; transform: translateY(16px); pointer-events: none; }
.jt-spec-slot--hero    { position: absolute; left: var(--jt-gutter); bottom: 6vh; z-index: 3; max-width: 440px; }
.jt-spec-slot--flow    { margin-top: 6vh; }
.jt-spec-slot--showroom{ position: relative; padding: 0 var(--jt-gutter) 8vh; }
.jt-spec-slot--footer  { max-width: var(--jt-maxw); margin: 6vh auto 0; }

.jt-spec {
  background: var(--jt-surface-3);
  border: 1px solid rgba(216, 178, 107, .32);
  border-radius: var(--jt-radius);
  font-family: var(--jt-font-mono); font-size: 12px;
  overflow: hidden;
}
.jt-spec__head {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  border-bottom: 1px solid rgba(238, 234, 228, .1); color: var(--jt-gold);
}
.jt-spec__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; }
.jt-spec__col  { padding: 16px; border-right: 1px solid rgba(238, 234, 228, .08); min-width: 0; }
.jt-spec__col:last-child { border-right: 0; }
.jt-spec__col-title { color: var(--jt-muted); margin-bottom: 10px; }
.jt-spec__pre {
  margin: 0; font-family: inherit; font-size: 11.5px;
  color: var(--jt-ink-soft-2); line-height: 1.6; white-space: pre-wrap;
}
.jt-spec__list { color: var(--jt-ink-soft-2); line-height: 1.6; }

/* ============================================================
   16. RESPONSIVE
   El original no tenía ni una media query. Estos breakpoints
   coinciden con los de Elementor (Tablet 1024 / Mobile 767)
   para que lo que ajustes en el editor sea coherente.
   ============================================================ */

@media (max-width: 1024px) {
  .jt-about__grid { gap: 40px; }
  .jt-nav__menu   { gap: 18px; }
  .jt-spec__grid  { grid-template-columns: 1fr; }
  .jt-spec__col   { border-right: 0; border-bottom: 1px solid rgba(238, 234, 228, .08); }
  .jt-spec__col:last-child { border-bottom: 0; }
}

@media (max-width: 900px) {
  :root { --jt-gutter: 7vw; }

  .jt-hero__grid   { grid-template-columns: 1fr; gap: 34px; }
  .jt-hero__stats  { justify-content: flex-start; }

  .jt-about__grid  { grid-template-columns: 1fr; }
  .jt-about__sticky{ position: static; }

  /* Showroom: el pin horizontal se desactiva en JS (gsap.matchMedia)
     y la pista pasa a ser un stack vertical nativo. */
  .jt-showroom__pin   { height: auto; overflow: visible; }
  .jt-showroom__track {
    height: auto; flex-direction: column; align-items: stretch;
    padding: 14vh var(--jt-gutter); gap: 24px; transform: none !important;
  }
  .jt-showroom__intro,
  .jt-showroom__outro { width: auto; min-width: 0; height: auto; padding: 0; }
  .jt-showroom__outro { margin-top: 4vh; }
  .jt-project         { width: auto; min-width: 0; height: auto; min-height: 58vh; margin: 0; }
  .jt-showroom__progress { display: none; }

  .jt-chain        { grid-template-columns: 44px 1fr; gap: 8px 18px; }
  .jt-chain__desc  { grid-column: 2; margin-top: 6px; }

  .jt-footer       { align-items: flex-start; }
  .jt-legal        { flex-direction: column; }
}

@media (max-width: 767px) {
  .jt-nav__link         { display: none; }   /* En WP lo sustituye el widget Nav Menu de Elementor */
  .jt-nav__menu         { gap: 12px; }
  .jt-section           { padding: 12vh var(--jt-gutter); }
  .jt-section__head     { margin-bottom: 6vh; }
  .jt-section__index    { text-align: left; }
  .jt-hero__stats       { gap: 28px; }
  .jt-exp               { padding: 22px 0; gap: 14px; }
  .jt-exp-panel         { padding: 22px; }
  .jt-cta__actions      { flex-direction: column; align-items: stretch; }
  .jt-btn--lg,
  .jt-btn--outline      { padding: 16px 24px; font-size: 15px; }
  .jt-footer__cols      { gap: 28px; flex-wrap: wrap; }
  .jt-spec-slot--hero   { position: relative; left: auto; bottom: auto; max-width: none; margin-top: 5vh; }
}

/* ---------- 17. ACCESIBILIDAD ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .jt-preloader, .jt-cursor-dot, .jt-cursor-ring, .jt-hero__canvas { display: none !important; }
}

:where(a, button, [tabindex]):focus-visible {
  outline: 2px solid var(--jt-gold);
  outline-offset: 3px;
}

/* ---------- 18. GUARDAS PARA EL EDITOR DE ELEMENTOR ----------
   Se activan solo dentro del iframe del editor. Evitan que
   mix-blend-mode, position:fixed y los pins tapen los controles. */
.elementor-editor-active .jt-preloader,
.elementor-editor-active .jt-cursor-dot,
.elementor-editor-active .jt-cursor-ring { display: none !important; }

.elementor-editor-active .jt-nav { position: relative; mix-blend-mode: normal; }

.elementor-editor-active .jt-showroom__pin   { height: auto; overflow: visible; }
.elementor-editor-active .jt-showroom__track { height: auto; transform: none !important; }
