/* =============================================================
   tela-para-toga.css
   TSG (Turbo SEO Guide) — Arletex Design System v3.4
   -------------------------------------------------------------
   CSS de página. Solo carga en /telas/tela-para-toga.
   Construido desde los fragmentos del skill arletex-design
   (tokens, components, openings, compositions, hovers-frames).
   Prefijo de sistema: .ax-*  ·  Scope de página: .tpt
   ============================================================= */


/* =============================================================
   §1. TOKENS
   ============================================================= */
.tpt {
    --ax-ink:          #1F2530;
    --ax-paper:        #FAF6EE;
    --ax-cream:        #F2EDE4;
    --ax-white:        #FFFFFF;
    --ax-orange:       #F15A29;
    --ax-orange-deep:  #B0401A;
    --ax-purple:       #6A52A2;
    --ax-yellow:       #FFEB3B;
    --ax-muted:        #6E6A60;
    --ax-muted-dark:   #A8A39A;
    --ax-rule:         #E5E1D7;
    --ax-rule-on-dark: rgba(250, 246, 238, .22);
    --ax-whatsapp:     #25D366;
    --ax-whatsapp-deep:#0F8C40;
    --ax-pure-black:   #0A0D14;

    --ax-font-display: 'Anton', 'Arial Narrow', sans-serif;
    --ax-font-accent:  'Fraunces', 'Georgia', serif;
    --ax-font-body:    'Lato', system-ui, sans-serif;
    --ax-font-mono:    'JetBrains Mono', ui-monospace, monospace;

    --ax-motion-fast: 180ms;
    --ax-motion-base: 240ms;
    --ax-motion-slow: 420ms;
    --ax-ease-out:    cubic-bezier(.22, 1, .36, 1);

    --ax-shadow-card-hover: 5px 5px 0 var(--ax-orange);
}

.tpt,
.tpt *,
.tpt *::before,
.tpt *::after { box-sizing: border-box; }


/* =============================================================
   §2. SECTION + CONTAINER
   ============================================================= */
.ax-section {
    width: 100%;
    position: relative;
    background: var(--ax-white);
    color: var(--ax-ink);
}
.ax-section--tight   { padding: 32px 0; }
.ax-section--default { padding: clamp(64px, 8vw, 96px) 0; }
.ax-section--hero    { padding: clamp(80px, 11vw, 128px) 0; }

.ax-section--paper { background: var(--ax-paper); color: var(--ax-ink); }
.ax-section--cream { background: var(--ax-cream); color: var(--ax-ink); }
.ax-section--ink   { background: var(--ax-ink);   color: var(--ax-paper); }

.ax-section--top-border { border-top: 2px solid var(--ax-orange); }

/* Side-rule — barra vertical izquierda (§8.3.2) */
.ax-section--side-rule {
    border-left: 3px solid var(--ax-orange);
    padding-left: clamp(20px, 4vw, 56px);
}
.ax-section--side-rule > .ax-container { padding-left: 0; }

/* Double-rule — dos hairlines (§8.3.3) */
.ax-section--double-rule {
    border-top: 1px solid var(--ax-ink);
    border-bottom: 1px solid var(--ax-ink);
}

/* Bleed-edge — sin marco, full-bleed (§8.3.5) */
.ax-section--bleed { padding: 0; border: none; }
.ax-section--bleed > .ax-container { max-width: none; padding: 0; }

.ax-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 56px);
}
.ax-container--narrow { max-width: 760px; }
.ax-container--wide   { max-width: 1600px; }


/* =============================================================
   §3. TIPOGRAFÍA
   ============================================================= */
.ax-display-heavy {
    font-family: var(--ax-font-display);
    font-weight: 400;
    font-size: clamp(3rem, 7vw, 5.25rem) !important;
    line-height: .9;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: var(--ax-ink);
    margin: 0;
}
.ax-display-heavy--xl {
    font-size: clamp(3.5rem, 11vw, 8rem) !important;
    line-height: .85;
    letter-spacing: -.02em;
}
.ax-display-medium {
    font-family: var(--ax-font-display);
    font-weight: 400;
    font-size: clamp(1.75rem, 3.4vw, 2.75rem) !important;
    line-height: .95;
    letter-spacing: -.005em;
    text-transform: uppercase;
    color: var(--ax-ink);
    margin: 0;
}
.ax-section--ink .ax-display-heavy,
.ax-section--ink .ax-display-medium { color: var(--ax-paper); }

/* H3 de bloque — un escalón menor que el H2 display-medium */
.ax-display-medium--sub { font-size: clamp(1.45rem, 2.7vw, 2.1rem) !important; }

/* Headings con enlace (H3 que es link a la TSG de la tela) */
.ax-display-heavy a,
.ax-display-medium a {
    color: inherit;
    text-decoration: none;
    transition: color var(--ax-motion-fast) var(--ax-ease-out);
}
.ax-display-heavy a:hover,
.ax-display-medium a:hover { color: var(--ax-orange); }

/* <em> Fraunces — voz humana (N-04: lowercase, sin rotate) */
.ax-display-heavy em,
.ax-display-medium em,
em.ax-accent {
    font-family: var(--ax-font-accent);
    font-style: italic;
    font-weight: 400;
    color: var(--ax-orange);
    text-transform: lowercase;
    letter-spacing: -.025em;
    font-size: .92em;
    padding: 0 .04em;
}

.ax-body {
    font-family: var(--ax-font-body);
    font-size: clamp(.9375rem, 1.05vw, 1.0625rem);
    line-height: 1.65;
    color: var(--ax-ink);
    margin: 0;
}
.ax-body + .ax-body { margin-top: 1.1rem; }
.ax-body strong { font-weight: 700; }
.ax-body--muted { color: var(--ax-muted); }
.ax-section--ink .ax-body { color: var(--ax-paper); }
.ax-section--ink .ax-body--muted { color: var(--ax-muted-dark); }

.ax-lead {
    font-family: var(--ax-font-accent);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.0625rem, 1.5vw, 1.35rem);
    line-height: 1.5;
    color: var(--ax-muted);
    margin: 0;
    max-width: 52ch;
}
.ax-section--ink .ax-lead { color: var(--ax-muted-dark); }

/* Prosa — enlaces internos con hover rule-draw (§6.2.6).
   Mantiene el anchor-text/href de SEO; solo cambia el gesto visual. */
.ax-prose { max-width: 68ch; }
.ax-prose.ax-prose--wide { max-width: none; }
.ax-prose a {
    color: var(--ax-ink);
    font-weight: 700;
    text-decoration: none;
    background-image: linear-gradient(var(--ax-orange) 0 0);
    background-repeat: no-repeat;
    background-position: left 1.08em;
    background-size: 100% 1.5px;
    transition: background-size var(--ax-motion-base) var(--ax-ease-out),
                color var(--ax-motion-fast) var(--ax-ease-out);
}
.ax-prose a:hover,
.ax-prose a:focus-visible {
    color: var(--ax-orange);
    background-size: 100% 2px;
}
.ax-section--ink .ax-prose a { color: var(--ax-paper); }
.ax-section--ink .ax-prose a:hover { color: var(--ax-orange); }


/* =============================================================
   §4. EYEBROW STAMP (§8)
   ============================================================= */
.ax-eyebrow-stamp {
    font-family: var(--ax-font-accent);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(.95rem, 1.05vw, 1.0625rem);
    color: var(--ax-muted);
    line-height: 1.35;
    margin: 0;
    display: inline-flex;
    align-items: baseline;
    gap: .6rem;
    flex-wrap: wrap;
}
.ax-eyebrow-stamp::before {
    content: attr(data-stamp);
    font-family: var(--ax-font-display);
    font-style: normal;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .22rem .6rem;
    line-height: 1;
    border: 1px solid var(--ax-orange);
    color: var(--ax-orange);
    flex-shrink: 0;
    border-radius: 0;
}
.ax-eyebrow-stamp--on-dark { color: var(--ax-muted-dark); }
.ax-eyebrow-stamp--filled-orange::before {
    background: var(--ax-orange); color: var(--ax-paper); border-color: var(--ax-orange);
}


/* =============================================================
   §5. SECTION HEADERS — aperturas
   ============================================================= */

/* Dossier (§4.4.1) */
.ax-section-header { width: 100%; }
.ax-section-header--dossier {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 2rem);
    padding-bottom: clamp(1.25rem, 2.5vw, 2rem);
    margin-bottom: clamp(2rem, 4vw, 3.25rem);
    border-bottom: 2px solid var(--ax-ink);
    align-items: end;
}
@media (min-width: 860px) {
    .ax-section-header--dossier { grid-template-columns: minmax(0, .38fr) minmax(0, 1fr); }
}

/* ManifestoClaim (§4.4.2) */
.ax-section-header--manifesto {
    max-width: 18ch;
    margin-bottom: clamp(1.5rem, 4vw, 2.75rem);
}
.ax-section-header__lede {
    font-family: var(--ax-font-accent);
    font-style: italic;
    font-size: clamp(1.1rem, 1.7vw, 1.5rem);
    color: var(--ax-muted);
    margin-top: clamp(1rem, 2vw, 1.5rem);
    max-width: 42ch;
}

/* RunInHeadline (§4.4.3) */
.ax-section-header--runin {
    display: flex;
    align-items: baseline;
    gap: clamp(.75rem, 1.8vw, 1.25rem);
    flex-wrap: wrap;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    padding-bottom: clamp(.75rem, 1.5vw, 1rem);
    border-bottom: 1px solid var(--ax-rule);
}
.ax-section-header__divider {
    font-family: var(--ax-font-accent);
    font-style: italic;
    color: var(--ax-orange);
    font-size: 1.75em;
    line-height: 1;
    flex-shrink: 0;
    user-select: none;
}
.ax-section-header__title { flex: 1 1 100%; min-width: 0; }
@media (min-width: 900px) { .ax-section-header__title { flex: 1 1 auto; } }
@media (max-width: 600px) { .ax-section-header--runin .ax-section-header__divider { display: none; } }

/* DropCap (§4.4.4) */
.ax-dropcap { max-width: 64ch; }
.ax-dropcap__first {
    float: left;
    font-family: var(--ax-font-accent);
    font-style: italic;
    font-size: clamp(4rem, 8vw, 6rem);
    line-height: .82;
    color: var(--ax-orange);
    padding: .1em .15em 0 0;
    margin-top: .05em;
}

/* NumberProtagonist (§4.4.5) */
.ax-section-header--number {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: end;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(1rem, 2vw, 1.5rem);
    border-bottom: 1px solid var(--ax-rule);
}
@media (min-width: 720px) {
    .ax-section-header--number {
        grid-template-columns: minmax(0, .42fr) minmax(0, 1fr);
        gap: clamp(2rem, 4vw, 4rem);
    }
}
.ax-section-header__big-num {
    font-family: var(--ax-font-display);
    font-size: clamp(4.5rem, 13vw, 10rem);
    line-height: .8;
    letter-spacing: -.04em;
    color: var(--ax-orange);
    font-variant-numeric: tabular-nums;
}
.ax-section-header__big-num small {
    font-size: .28em;
    color: var(--ax-muted);
    letter-spacing: .02em;
    display: block;
    margin-top: .4em;
}

/* MegaTextBg (§4.4.7) */
.ax-section-header--mega-bg {
    position: relative;
    display: grid;
    place-items: center start;
    padding: clamp(1.5rem, 4vw, 3rem) 0;
    isolation: isolate;
}
.ax-mega-bg {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: var(--ax-font-display);
    font-size: clamp(6rem, 22vw, 16rem);
    line-height: 1;
    text-transform: uppercase;
    color: var(--ax-rule-on-dark);
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    white-space: nowrap;
}
.ax-section-header__mega-fg { position: relative; max-width: 32ch; }


/* =============================================================
   §6. BOTONES (§12)
   ============================================================= */
.ax-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--ax-font-body);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    border: none;
    cursor: pointer;
    min-height: 48px;
    line-height: 1.2;
    transition: transform var(--ax-motion-fast) var(--ax-ease-out),
                box-shadow var(--ax-motion-fast) var(--ax-ease-out);
}
.ax-btn i { font-size: 1.3em; line-height: 1; }
.ax-btn--block { display: flex; width: 100%; }
.ax-btn--lg { padding: 18px 38px; font-size: 1rem; gap: 14px; }
.ax-btn--sm { padding: 11px 18px; font-size: .8rem; min-height: 44px; gap: 8px; }

.ax-btn--primary {
    background: var(--ax-orange);
    color: var(--ax-paper);
    box-shadow: 0 6px 0 var(--ax-orange-deep);
}
.ax-btn--primary:hover, .ax-btn--primary:focus-visible {
    color: var(--ax-paper);
    transform: translateY(-2px);
    box-shadow: 0 8px 0 var(--ax-orange-deep);
}
.ax-btn--primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--ax-orange-deep); }

.ax-btn--whatsapp {
    background: var(--ax-whatsapp);
    color: var(--ax-white);
    box-shadow: 0 6px 0 var(--ax-whatsapp-deep);
}
.ax-btn--whatsapp:hover, .ax-btn--whatsapp:focus-visible {
    color: var(--ax-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 0 var(--ax-whatsapp-deep);
    text-decoration: none;
}
.ax-btn--whatsapp:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--ax-whatsapp-deep); }

.ax-btn--outline {
    background: transparent;
    color: var(--ax-ink);
    border: 1.5px solid var(--ax-ink);
    box-shadow: none;
}
.ax-btn--outline:hover { background: var(--ax-ink); color: var(--ax-paper); }
.ax-section--ink .ax-btn--outline { color: var(--ax-paper); border-color: var(--ax-paper); }
.ax-section--ink .ax-btn--outline:hover { background: var(--ax-paper); color: var(--ax-ink); }

/* Microcopy bajo CTA */
.ax-microcopy {
    font-family: var(--ax-font-body);
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--ax-muted);
    margin: 0;
}
.ax-microcopy strong { color: var(--ax-ink); font-weight: 700; }
.ax-section--ink .ax-microcopy { color: var(--ax-muted-dark); }
.ax-section--ink .ax-microcopy strong { color: var(--ax-paper); }

.ax-cta-block { display: grid; gap: 12px; margin-top: 8px; justify-items: start; }
.ax-cta-block .ax-btn--block + .ax-microcopy { justify-self: stretch; }


/* =============================================================
   §7. CHECK LIST + SPEC LIST
   ============================================================= */
.ax-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}
.ax-check-list li {
    position: relative;
    padding-left: 30px;
    font-family: var(--ax-font-body);
    font-size: clamp(.9375rem, 1vw, 1rem);
    line-height: 1.55;
    color: var(--ax-ink);
}
.ax-check-list li::before {
    content: "";
    position: absolute;
    left: 0; top: .35em;
    width: 18px; height: 18px;
    background: var(--ax-orange);
}
.ax-check-list li::after {
    content: "";
    position: absolute;
    left: 4px; top: calc(.35em + 5px);
    width: 10px; height: 5px;
    border-left: 2.5px solid var(--ax-paper);
    border-bottom: 2.5px solid var(--ax-paper);
    transform: rotate(-45deg);
}
.ax-check-list a {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--ax-orange);
    text-underline-offset: 3px;
}
.ax-check-list a:hover { color: var(--ax-orange); }

.ax-spec-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--ax-ink);
    border-bottom: 1px solid var(--ax-ink);
}
.ax-spec-list__row {
    display: grid;
    grid-template-columns: minmax(0, .5fr) minmax(0, 1fr);
    gap: 16px;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid var(--ax-rule);
}
.ax-spec-list__row:last-child { border-bottom: none; }
.ax-spec-list__label {
    font-family: var(--ax-font-body);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ax-muted);
    margin: 0;
}
.ax-spec-list__value {
    font-family: var(--ax-font-body);
    font-size: clamp(.9rem, 1vw, 1rem);
    font-weight: 700;
    color: var(--ax-ink);
    margin: 0;
    line-height: 1.35;
}
.ax-spec-list__value .ax-num {
    font-family: var(--ax-font-display);
    color: var(--ax-orange);
    font-size: 1.15em;
    letter-spacing: 0;
}


/* =============================================================
   §8. COMPOSICIONES
   ============================================================= */

/* Zigzag (§11.5.8) — filas alternas media/texto */
.ax-zigzag {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 8vw, 88px);
}
.ax-zigzag__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(24px, 5vw, 64px);
}
.ax-zigzag__row--flip .ax-zigzag__media { order: 2; }
.ax-zigzag__media {
    margin: 0;
    aspect-ratio: 7 / 5;            /* coincide con las imágenes 700×500 — sin recorte */
    overflow: hidden;
    border: 1.5px solid var(--ax-ink);
    box-shadow: 8px 8px 0 var(--ax-ink);
    background: var(--ax-paper);
}
/* Imágenes cuadradas (500×500): el contenedor adopta 1/1 para no recortar */
.ax-zigzag__media--square { aspect-ratio: 1 / 1; }
.ax-zigzag__media picture,
.ax-zigzag__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ax-zigzag__body { display: grid; gap: clamp(1rem, 1.8vw, 1.4rem); min-width: 0; }
@media (max-width: 760px) {
    .ax-zigzag__row { grid-template-columns: 1fr; gap: 24px; }
    .ax-zigzag__row--flip .ax-zigzag__media { order: 0; }
    .ax-zigzag__media { box-shadow: 6px 6px 0 var(--ax-ink); }
}

/* Vertical split (§11.5.7) — dos sub-secciones lado a lado */
.ax-vsplit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1.5px solid var(--ax-ink);
}
.ax-vsplit__pane {
    padding: clamp(28px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.6vw, 18px);
}
.ax-vsplit__pane--light { background: var(--ax-cream); color: var(--ax-ink); }
.ax-vsplit__pane--dark  { background: var(--ax-ink);   color: var(--ax-paper); }
.ax-vsplit__pane--dark .ax-display-medium { color: var(--ax-paper); }
.ax-vsplit__pane--dark .ax-body { color: var(--ax-paper); }
.ax-vsplit__pane + .ax-vsplit__pane { border-left: 1.5px solid var(--ax-ink); }
.ax-vsplit__kicker {
    font-family: var(--ax-font-mono);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ax-orange);
}
@media (max-width: 720px) {
    .ax-vsplit { grid-template-columns: 1fr; }
    .ax-vsplit__pane + .ax-vsplit__pane { border-left: none; border-top: 1.5px solid var(--ax-ink); }
}


/* =============================================================
   §8b. HERO 2-COL (Vitrina) — texto + ficha rápida
   Llena el lado derecho del hero con una ficha escaneable.
   ============================================================= */
.ax-hero-2col {
    display: grid;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}
.ax-hero-2col__main {
    display: grid;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-content: start;
    min-width: 0;
}
@media (min-width: 920px) {
    .ax-hero-2col {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
        align-items: center;
    }
}

.ax-facts {
    background: var(--ax-cream);
    border: 1.5px solid var(--ax-ink);
    border-top: 3px solid var(--ax-orange);
    box-shadow: 10px 10px 0 var(--ax-ink);
    padding: clamp(22px, 3vw, 34px);
    display: grid;
    gap: clamp(1rem, 2vw, 1.4rem);
}
.ax-facts__links { display: flex; flex-wrap: wrap; gap: 12px; }
.ax-facts .ax-spec-list__value a {
    color: var(--ax-ink);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--ax-orange);
    text-underline-offset: 3px;
}
.ax-facts .ax-spec-list__value a:hover { color: var(--ax-orange); }
@media (max-width: 919px) {
    .ax-facts { box-shadow: 8px 8px 0 var(--ax-ink); }
}


/* =============================================================
   §9. MEDIA — frame + banner full-bleed + masthead
   ============================================================= */
.ax-frame {
    position: relative;
    overflow: hidden;
    border: 1.5px solid var(--ax-ink);
    box-shadow: 8px 8px 0 var(--ax-ink);
    background: var(--ax-paper);
}
.ax-frame[data-ratio="16-9"] { aspect-ratio: 16 / 9; }
.ax-frame[data-ratio="4-3"]  { aspect-ratio: 4 / 3; }
.ax-frame > picture, .ax-frame > a,
.ax-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Banner full-bleed (envíos / rollos) — la imagen es la pieza */
.ax-banner-bleed {
    display: block;
    width: 100%;
    line-height: 0;
    margin-bottom: 0;
}
.ax-banner-bleed picture,
.ax-banner-bleed img { display: block; width: 100%; height: auto; }
a.ax-banner-bleed {
    transition: filter var(--ax-motion-base) var(--ax-ease-out);
}
a.ax-banner-bleed:hover { filter: saturate(1.08) contrast(1.02); }

/* Masthead — slide cinematográfico (§5 hero-visual) */
.ax-hero-visual {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--ax-ink);
    line-height: 0;
}
.ax-hero-visual picture,
.ax-hero-visual img { display: block; width: 100%; height: auto; object-fit: cover; }
.ax-hero-visual img { aspect-ratio: 1900 / 520; max-height: 560px; }
@media (max-width: 767px) {
    .ax-hero-visual img { aspect-ratio: 1080 / 1080; max-height: none; }
}


/* =============================================================
   §10. HOVERS / GESTOS (§6.2)
   ============================================================= */
.ax-interactive,
.ax-interactive--lift {
    transition: transform var(--ax-motion-base) var(--ax-ease-out),
                box-shadow var(--ax-motion-base) var(--ax-ease-out);
}
.ax-interactive--lift:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--ax-shadow-card-hover);
}

/* side-shift — items de lista/comparativa */
.ax-interactive--side {
    position: relative;
    transition: transform var(--ax-motion-base) var(--ax-ease-out),
                padding-left var(--ax-motion-base) var(--ax-ease-out);
}
.ax-interactive--side::before {
    content: '';
    position: absolute; left: 0; top: 8px; bottom: 8px;
    width: 0;
    background: var(--ax-orange);
    transition: width var(--ax-motion-base) var(--ax-ease-out);
}
.ax-interactive--side:hover { transform: translateX(4px); padding-left: calc(var(--ax-pad-left, 0px) + 14px); }
.ax-interactive--side:hover::before { width: 3px; }

/* ink-flood — inversión sólida sobre claro */
.ax-interactive--flood {
    transition: background-color var(--ax-motion-base) var(--ax-ease-out),
                color var(--ax-motion-base) var(--ax-ease-out);
}
.ax-interactive--flood:hover { background: var(--ax-ink); color: var(--ax-paper); }
.ax-interactive--flood:hover .ax-display-medium { color: var(--ax-paper); }
.ax-interactive--flood:hover .ax-spec-list__label { color: var(--ax-muted-dark); }
.ax-interactive--flood:hover .ax-spec-list__value { color: var(--ax-paper); }


/* =============================================================
   §11. CARDS de comparativa (dualidad tafetán / raso)
   ============================================================= */
.ax-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 2.5vw, 24px);
}
.ax-dual__card {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: clamp(20px, 3vw, 28px);
    background: var(--ax-paper);
    border: 1.5px solid var(--ax-ink);
    border-left: 5px solid var(--ax-orange);
    text-decoration: none;
    color: var(--ax-ink);
    transition: transform var(--ax-motion-base) var(--ax-ease-out),
                box-shadow var(--ax-motion-base) var(--ax-ease-out);
}
/* hover ink-flood (§6.2.5) — "se invirtió": fondo ink, texto paper */
.ax-dual__card:hover,
.ax-dual__card:focus-visible {
    background: var(--ax-ink);
    border-color: var(--ax-ink);
    color: var(--ax-paper);
    text-decoration: none;
}
.ax-dual__card:hover .ax-dual__title,
.ax-dual__card:focus-visible .ax-dual__title { color: var(--ax-paper); }
.ax-dual__card:hover .ax-dual__num,
.ax-dual__card:hover .ax-dual__arrow,
.ax-dual__card:hover .ax-dual__title em { color: var(--ax-orange); }
.ax-dual__num {
    font-family: var(--ax-font-mono);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ax-orange);
}
.ax-dual__title {
    font-family: var(--ax-font-display);
    font-weight: 400;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    line-height: .95;
    text-transform: uppercase;
    color: var(--ax-ink);
    margin: 0;
}
.ax-dual__title em {
    font-family: var(--ax-font-accent);
    font-style: italic;
    text-transform: lowercase;
    color: var(--ax-orange);
    font-size: .92em;
}
.ax-dual__arrow {
    font-family: var(--ax-font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ax-orange);
    margin-top: 4px;
}
@media (max-width: 620px) { .ax-dual { grid-template-columns: 1fr; } }


/* =============================================================
   §11b. BURST — sticker rotado (registro Fanzine, CTA final)
   ============================================================= */
.ax-burst {
    width: clamp(76px, 11vw, 104px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    text-align: center;
    background: var(--ax-yellow);
    color: var(--ax-ink);
    font-family: var(--ax-font-display);
    font-size: clamp(12px, 1.5vw, 15px);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: .02em;
    border-radius: 9999px;
    transform: rotate(-8deg);
    padding: 8px;
}

/* CTA final — caja de cierre con burst sobresaliendo */
.tpt-final { position: relative; }
.tpt-final__burst {
    position: absolute;
    top: clamp(-18px, -2vw, -8px);
    right: clamp(20px, 5vw, 64px);
    z-index: 3;
}
@media (max-width: 560px) {
    .tpt-final__burst { right: 16px; top: -16px; }
}


/* =============================================================
   §11c. COLORCARDS — microcards de color (swatch + nombre, link a TSG color)
   Preserva el link equity de /tela-de-colores/* con un gesto editorial.
   ============================================================= */
.ax-colorcards-wrap { display: grid; gap: 12px; }
.ax-colorcards-label {
    font-family: var(--ax-font-body);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ax-muted);
    margin: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
}
.ax-colorcards-label::after {
    content: "↗";
    color: var(--ax-orange);
    font-weight: 700;
}
.ax-colorcards-label:hover,
.ax-colorcards-label:focus-visible { color: var(--ax-orange); }

.ax-colorcards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.ax-colorcard {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 13px 7px 8px;
    background: var(--ax-paper);
    border: 1.5px solid var(--ax-ink);
    text-decoration: none;
    color: var(--ax-ink);
    transition: transform var(--ax-motion-fast) var(--ax-ease-out),
                box-shadow var(--ax-motion-fast) var(--ax-ease-out);
}
.ax-colorcard:hover,
.ax-colorcard:focus-visible {
    transform: translate(-3px, -3px);
    box-shadow: 5px 5px 0 var(--ax-orange);
    color: var(--ax-ink);
    text-decoration: none;
}
.ax-colorcard__swatch {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: var(--c, var(--ax-cream));
    border: 1.5px solid var(--ax-ink);   /* mantiene visible el blanco */
    background-clip: padding-box;
}
.ax-colorcard__name {
    font-family: var(--ax-font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .01em;
    line-height: 1;
}


/* =============================================================
   §11d. FAQ — acordeón nativo <details> (sin JS; texto siempre en DOM)
   ============================================================= */
.ax-faq { display: grid; gap: 0; border-top: 1px solid var(--ax-ink); }
.ax-faq__item { border-bottom: 1px solid var(--ax-rule); }
.ax-faq__q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: clamp(16px, 2.2vw, 22px) 0;
    font-family: var(--ax-font-body);
    font-weight: 700;
    font-size: clamp(1rem, 1.35vw, 1.15rem);
    line-height: 1.4;
    color: var(--ax-ink);
    transition: color var(--ax-motion-fast) var(--ax-ease-out);
}
.ax-faq__q::-webkit-details-marker { display: none; }
.ax-faq__q::before {
    content: "+";
    font-family: var(--ax-font-display);
    color: var(--ax-orange);
    font-size: 1.4em;
    line-height: 1;
    flex-shrink: 0;
    width: .8em;
    text-align: center;
    transition: transform var(--ax-motion-base) var(--ax-ease-out);
}
/* El "+" gira 45° (→ ×) al abrir, en lugar de un cambio brusco a "–" */
.ax-faq__item[open] > .ax-faq__q::before { transform: rotate(45deg); }
.ax-faq__q:hover,
.ax-faq__q:focus-visible { color: var(--ax-orange); }
.ax-faq__a {
    padding: 0 0 clamp(18px, 2.2vw, 24px) calc(.8em + 14px);
    max-width: 74ch;
    overflow: hidden;            /* recorta la altura durante la animación JS */
}
.ax-faq__a .ax-body { color: var(--ax-muted); }


/* =============================================================
   §12. BREADCRUMB (refinado, sobre el global)
   ============================================================= */
.tpt .breadcrumb.ax-crumb {
    background: transparent;
    margin: 0;
    padding: 14px clamp(20px, 4vw, 56px);
    font-family: var(--ax-font-body);
    font-size: 13px;
    border-bottom: 1px solid var(--ax-rule);
    border-radius: 0;
}
.tpt .breadcrumb.ax-crumb a { color: var(--ax-muted); }
.tpt .breadcrumb.ax-crumb a:hover { color: var(--ax-orange); }
.tpt .breadcrumb.ax-crumb .breadcrumb-item.active { color: var(--ax-ink); font-weight: 700; }


/* =============================================================
   §13. A11Y — focus, motion
   ============================================================= */
.tpt :focus-visible {
    outline: 3px solid var(--ax-orange);
    outline-offset: 3px;
    border-radius: 0;
}
@media (prefers-reduced-motion: reduce) {
    .tpt *,
    .tpt *::before,
    .tpt *::after {
        transition-duration: 0ms !important;
        animation-duration: 0ms !important;
    }
}
