/* =========================================================================
   Arletex Design System v3.3 — Tela Negra (/tela-de-colores/tela-negra)
   Hoja editorial por página (prefijo tn-). Tokens locales → var(--ax-*).
   ─────────────────────────────────────────────────────────────────────────
   La página es un HUB de color: catálogo de telas negras + prosa SEO.
   El "negro" es el tema → el registro ink se usa como puntuación dramática
   (cards blancas flotando sobre ink), respetando ≥55% blanco predominante.

   Mapa de secciones (registro · apertura · marco · fondo · hover):
     01 Intro            Manifiesto · ManifestoClaim   · Top-rule  · white · press
     02 Poliéster (9)    Galería    · NumberProtagonist · Bleed     · INK   · lift
     03 Banner rollos    Galería    · figura framed     · —         · paper · lift
     04 Algodón (3)      Dossier    · Dossier           · rule ink  · white · lift
     06 Tela Color Negro Periódico  · DropCap           · Double    · white · side
     07 Usos (3 zigzag)  Periódico  · Dossier numerado  · Brick     · paper · side/press
     08 Mate / Brillosa  Técnico    · LabelLateral      · Side-rule · cream · lift
     09 Precio           Fanzine    · MegaTextBg        · Bleed     · INK   · press
     10 Venta            Dossier    · split             · —         · white · press
     11 Transparente     Galería    · split rev         · —         · paper · press
   ========================================================================= */

/* ─── Tokens locales (fallback a hex si --ax-* no está cargado) ─────────── */
.tn-section {
    --tn-ink:           var(--ax-ink, #1F2530);
    --tn-paper:         var(--ax-paper, #FAF6EE);
    --tn-cream:         var(--ax-cream, #F2EDE4);
    --tn-white:         var(--ax-white, #FFFFFF);
    --tn-orange:        var(--ax-orange, #F15A29);
    --tn-orange-deep:   var(--ax-orange-deep, #B0401A);
    --tn-purple:        var(--ax-purple, #6A52A2);
    --tn-muted:         var(--ax-muted, #6E6A60);
    --tn-muted-dark:    var(--ax-muted-dark, #A8A39A);
    --tn-rule:          rgba(31, 37, 48, 0.16);
    --tn-rule-on-dark:  rgba(250, 246, 238, 0.18);
    --tn-whatsapp:      var(--ax-whatsapp, #25D366);
    --tn-whatsapp-deep: #0F8C40;
    --tn-font-display:  var(--ax-font-display, 'Anton', 'Arial Narrow', sans-serif);
    --tn-font-accent:   var(--ax-font-accent, 'Fraunces', Georgia, serif);
    --tn-font-body:     var(--ax-font-body, 'Lato', system-ui, sans-serif);
    --tn-font-mono:     var(--ax-font-mono, 'JetBrains Mono', ui-monospace, monospace);

    --tn-ease:          cubic-bezier(0.22, 1, 0.36, 1);
    --tn-motion-fast:   0.16s;
}
.tn-section *,
.tn-section *::before,
.tn-section *::after { box-sizing: border-box; }

/* ─── Section base ──────────────────────────────────────────────────────── */
.tn-section {
    width: 100%;
    position: relative;
    background: var(--tn-white);
    color: var(--tn-ink);
    font-family: var(--tn-font-body);
    padding: clamp(48px, 8vw, 96px) 0;
}
.tn-section--paper { background: var(--tn-paper); }
.tn-section--cream { background: var(--tn-cream); color: var(--tn-ink); }
.tn-section--tight { padding: clamp(28px, 4vw, 48px) 0; }

.tn-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}
.tn-container--narrow { max-width: 760px; }

/* ─── Eyebrow stamp (rectángulo recto — firma editorial, radius 0) ──────── */
.tn-eyebrow {
    font-family: var(--tn-font-accent);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    color: var(--tn-muted);
    line-height: 1.4;
    margin: 0 0 clamp(16px, 2vw, 22px);
    display: inline-flex;
    align-items: baseline;
    gap: 0.65rem;
    flex-wrap: wrap;
}
.tn-eyebrow[data-stamp]:not([data-stamp=""])::before {
    content: attr(data-stamp);
    font-family: var(--tn-font-display);
    font-style: normal;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    line-height: 1;
    border: 1px solid var(--tn-orange);
    color: var(--tn-orange);
    flex-shrink: 0;
}

/* ─── Display title Anton + <em> Fraunces (voz humana, N-04/N-05) ───────── */
.tn-title {
    font-family: var(--tn-font-display);
    font-weight: 400;
    text-transform: uppercase;
    color: var(--tn-ink);
    line-height: 0.92;
    letter-spacing: -0.005em;
    margin: 0;
}
.tn-title--xl { font-size: clamp(2.6rem, 7.5vw, 5.75rem) !important; }
.tn-title--md { font-size: clamp(1.9rem, 4.4vw, 3.3rem) !important; }
.tn-title--sm { font-size: clamp(1.55rem, 3.4vw, 2.5rem) !important; }
.tn-title--xs { font-size: clamp(1.3rem, 2.6vw, 1.95rem) !important; }
.tn-title em {
    font-family: var(--tn-font-accent);
    font-style: italic;
    font-weight: 400;
    text-transform: lowercase;          /* la <em> Fraunces va recta y minúscula */
    letter-spacing: -0.025em;
    color: var(--tn-orange);
}
.tn-title a { color: inherit; text-decoration: none; transition: color var(--tn-motion-fast) var(--tn-ease); }
.tn-title a:hover { color: var(--tn-orange); }

/* ─── Lead / prosa ──────────────────────────────────────────────────────── */
.tn-lead {
    font-family: var(--tn-font-body);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.65;
    color: var(--tn-ink);
    max-width: 66ch;
    margin: 0;
}
.tn-lead strong { font-weight: 800; }
.tn-lead a {
    color: var(--tn-ink);
    text-decoration: underline;
    text-decoration-color: var(--tn-orange);
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    transition: color var(--tn-motion-fast) var(--tn-ease);
}
.tn-lead a:hover { color: var(--tn-orange); }

.tn-prose { max-width: 74ch; }
.tn-prose p {
    font-family: var(--tn-font-body);
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    line-height: 1.7;
    color: var(--tn-ink);
    margin: 0 0 1.1em;
}
.tn-prose p:last-child { margin-bottom: 0; }
.tn-prose strong { font-weight: 800; }
.tn-prose a {
    color: var(--tn-ink);
    text-decoration: underline;
    text-decoration-color: var(--tn-orange);
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    transition: text-underline-offset var(--tn-motion-fast) var(--tn-ease),
                color var(--tn-motion-fast) var(--tn-ease);
}
.tn-prose a:hover { color: var(--tn-orange); text-underline-offset: 4px; }
/* Listas con guion naranja en vez de bullet */
.tn-prose ul { margin: 0 0 1.1em; padding: 0; list-style: none; }
.tn-prose li {
    position: relative;
    padding-left: 1.6em;
    margin-bottom: 0.7em;
    font-family: var(--tn-font-body);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    color: var(--tn-ink);
}
.tn-prose li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.62em;
    width: 0.8em; height: 3px;
    background: var(--tn-orange);
}
.tn-prose li strong { font-weight: 800; }

/* ─── Acciones + CTA WhatsApp chunky (press-chunky · sombra sólida · radius 0) ─ */
.tn-actions {
    margin-top: clamp(28px, 4vw, 40px);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.tn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    min-height: 44px;
    font-family: var(--tn-font-display);
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.05;
    text-decoration: none;
    border: 2px solid var(--tn-ink);
    border-radius: 0;
    cursor: pointer;
    transition: transform var(--tn-motion-fast) var(--tn-ease),
                box-shadow var(--tn-motion-fast) var(--tn-ease);
}
.tn-cta--whatsapp {
    background: var(--tn-whatsapp);
    color: #fff;
    box-shadow: 8px 8px 0 var(--tn-ink);
}
.tn-cta--whatsapp i { font-size: 1.3em; line-height: 1; }
.tn-cta--whatsapp:hover {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0 var(--tn-ink);
    color: #fff;
    text-decoration: none;
}
.tn-cta--whatsapp:active {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0 var(--tn-ink);
}
.tn-cta:focus-visible { outline: 3px solid var(--tn-orange); outline-offset: 3px; }
/* Variante compacta — evita 3 CTAs gigantes idénticos en zigzag */
.tn-cta--sm { padding: 12px 22px; font-size: clamp(0.95rem, 1.3vw, 1.12rem); box-shadow: 6px 6px 0 var(--tn-ink); }
.tn-cta--sm:hover  { box-shadow: 8px 8px 0 var(--tn-ink); }
.tn-cta--sm:active { box-shadow: 3px 3px 0 var(--tn-ink); }

/* ─── Botón outline (CTA secundario, no-WhatsApp) ──────────────────────── */
.tn-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 13px 26px;
    min-height: 44px;
    font-family: var(--tn-font-body);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.1;
    text-decoration: none;
    border: 2px solid var(--tn-ink);
    border-radius: 0;
    background: transparent;
    color: var(--tn-ink);
    cursor: pointer;
    transition: transform var(--tn-motion-fast) var(--tn-ease),
                box-shadow var(--tn-motion-fast) var(--tn-ease),
                background var(--tn-motion-fast) var(--tn-ease),
                color var(--tn-motion-fast) var(--tn-ease);
}
.tn-btn i { transition: transform var(--tn-motion-fast) var(--tn-ease); }
.tn-btn--outline:hover { background: var(--tn-ink); color: var(--tn-white); text-decoration: none; }
.tn-btn--outline:hover i { transform: translateX(4px); }
.tn-btn:focus-visible { outline: 3px solid var(--tn-orange); outline-offset: 3px; }

/* =========================================================================
   01 · Intro — Manifiesto · ManifestoClaim · Top-rule orange
   ========================================================================= */
.tn-section--intro {
    border-top: 3px solid var(--tn-orange);
    padding-top: clamp(40px, 6vw, 72px);
}
.tn-section--intro .tn-header { margin-bottom: clamp(20px, 3vw, 32px); }
.tn-section--intro .tn-title { max-width: 16ch; }

/* ─── Figura editorial (Galería · frame-chunky · radius 0) ─────────────── */
.tn-figure {
    margin: 0;
    background: var(--tn-white);
    border: 2px solid var(--tn-ink);
    border-top: 3px solid var(--tn-orange);
    box-shadow: 10px 10px 0 var(--tn-ink);
    line-height: 0;
}
.tn-figure img { display: block; width: 100%; height: auto; }
.tn-figure--banner { margin-top: clamp(40px, 6vw, 72px); }
.tn-figure--link { display: block; transition: transform var(--tn-motion-fast) var(--tn-ease), box-shadow var(--tn-motion-fast) var(--tn-ease); }
.tn-figure--link:hover { transform: translate(-4px, -4px); box-shadow: 14px 14px 0 var(--tn-orange); }

/* =========================================================================
   02 · Catálogo (NumberProtagonist) + grid de cards · variante INK
   ========================================================================= */
.tn-numhead {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(0.75rem, 2vw, 1.25rem);
    align-items: end;
    margin-bottom: clamp(24px, 3.5vw, 40px);
    padding-bottom: clamp(18px, 2.5vw, 26px);
    border-bottom: 1px solid var(--tn-rule);
}
@media (min-width: 768px) {
    .tn-numhead { grid-template-columns: minmax(0, auto) minmax(0, 1fr); gap: clamp(1.75rem, 4vw, 3.5rem); }
}
.tn-numhead__num {
    font-family: var(--tn-font-display);
    font-size: clamp(4.25rem, 13vw, 8.5rem);
    line-height: 0.8;
    letter-spacing: -0.04em;
    color: var(--tn-orange);
    font-variant-numeric: tabular-nums;
    display: inline-flex;
    align-items: baseline;
    gap: 0.35em;
}
.tn-numhead__num small {
    font-family: var(--tn-font-accent);
    font-style: italic;
    font-size: 0.2em;
    letter-spacing: 0;
    text-transform: lowercase;
    color: var(--tn-muted);
}
.tn-numhead__body { min-width: 0; }
.tn-numhead__body .tn-eyebrow { margin-bottom: clamp(10px, 1.4vw, 14px); }
.tn-numhead__body .tn-title { line-height: 0.95; }

.tn-section--catalog .tn-lead { max-width: 80ch; }
.tn-section--catalog .tn-actions { margin-bottom: clamp(40px, 5vw, 60px); }

/* ─── Grid de telas (3 / 2 / 1) ────────────────────────────────────────── */
.tn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.4vw, 32px);
}
@media (max-width: 900px) { .tn-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tn-grid { grid-template-columns: 1fr; } }

/* ─── Card de tela · lift-orange (sombra ink en reposo → orange al hover) ─
     <article> (no <a>): la card conserva enlaces internos SEO en la desc,
     por eso no puede ser un ancla única. El lift se dispara con :hover y
     :focus-within (cualquier link interno enfocado eleva la card). ──────── */
.tn-card {
    display: flex;
    flex-direction: column;
    background: var(--tn-white);
    color: var(--tn-ink);
    border: 1px solid var(--tn-rule);
    border-top: 3px solid var(--tn-orange);
    border-radius: 0;
    box-shadow: 4px 4px 0 var(--tn-ink);
    overflow: hidden;
    transition: transform var(--tn-motion-fast) var(--tn-ease),
                box-shadow var(--tn-motion-fast) var(--tn-ease);
}
.tn-card:hover,
.tn-card:focus-within {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 var(--tn-orange);
}
.tn-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    line-height: 0;
    border-bottom: 1px solid var(--tn-rule);
    background: var(--tn-cream);
}
.tn-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s var(--tn-ease);
}
.tn-card:hover .tn-card__media img,
.tn-card:focus-within .tn-card__media img { transform: scale(1.045); }
.tn-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: clamp(18px, 2vw, 24px);
}
.tn-card__title {
    font-family: var(--tn-font-display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    line-height: 1;
    letter-spacing: 0.005em;
    color: var(--tn-ink);
    margin: 0;
}
.tn-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--tn-motion-fast) var(--tn-ease);
}
.tn-card__title a:hover { color: var(--tn-orange); }
.tn-card__desc {
    font-family: var(--tn-font-body);
    font-size: clamp(0.92rem, 1.05vw, 1rem);
    line-height: 1.55;
    color: var(--tn-muted);
    margin: 0;
}
.tn-card__desc a {
    color: var(--tn-ink);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--tn-orange);
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    transition: color var(--tn-motion-fast) var(--tn-ease);
}
.tn-card__desc a:hover { color: var(--tn-orange); }
.tn-card__cta {
    margin-top: auto;
    padding-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    align-self: flex-start;
    font-family: var(--tn-font-display);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    line-height: 1;
    color: var(--tn-orange);
    text-decoration: none;
}
.tn-card__cta:hover { color: var(--tn-orange-deep); }
.tn-card__cta i { transition: transform var(--tn-motion-fast) var(--tn-ease); }
.tn-card:hover .tn-card__cta i,
.tn-card:focus-within .tn-card__cta i { transform: translateX(4px); }

@media (max-width: 575px) {
    .tn-card { box-shadow: 3px 3px 0 var(--tn-ink); }
    .tn-card:hover, .tn-card:focus-within { box-shadow: 6px 6px 0 var(--tn-orange); }
}

/* ─── Variante OSCURA (ink) · puntuación dramática "negro" ──────────────── */
.tn-section--ink {
    background: var(--tn-ink);
    color: var(--tn-paper);
    overflow: hidden;
}
.tn-section--ink::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(250, 246, 238, 0.045) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(250, 246, 238, 0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.tn-section--ink > .tn-container { position: relative; z-index: 1; }
.tn-section--ink .tn-numhead { border-bottom-color: var(--tn-rule-on-dark); }
.tn-section--ink .tn-numhead__num small { color: rgba(250, 246, 238, 0.55); }
.tn-section--ink .tn-title { color: var(--tn-paper); }
.tn-section--ink .tn-eyebrow { color: rgba(250, 246, 238, 0.6); }
.tn-section--ink .tn-lead { color: rgba(250, 246, 238, 0.82); }
.tn-section--ink .tn-lead strong { color: var(--tn-paper); }
.tn-section--ink .tn-lead a { color: var(--tn-paper); }
.tn-section--ink .tn-lead a:hover { color: var(--tn-orange); }
.tn-section--ink .tn-prose p,
.tn-section--ink .tn-prose li { color: rgba(250, 246, 238, 0.82); }
.tn-section--ink .tn-prose strong { color: var(--tn-paper); }
.tn-section--ink .tn-prose a { color: var(--tn-paper); }
.tn-section--ink .tn-prose a:hover { color: var(--tn-orange); }
/* Cards blancas flotando: sin sombra ink (invisible sobre ink) → orange al hover */
.tn-section--ink .tn-card {
    border-color: transparent;
    border-top-color: var(--tn-orange);
    box-shadow: none;
}
.tn-section--ink .tn-card:hover,
.tn-section--ink .tn-card:focus-within { box-shadow: 8px 8px 0 var(--tn-orange); }
/* La card sobre ink sigue siendo blanca → su desc/links conservan el color
   oscuro por defecto (no heredan los overrides de prosa sobre ink). */
/* CTA WhatsApp: el borde ink desaparece sobre ink → reancla con paper + sombra orange */
.tn-section--ink .tn-cta--whatsapp {
    border-color: var(--tn-paper);
    box-shadow: 8px 8px 0 var(--tn-orange);
}
.tn-section--ink .tn-cta--whatsapp:hover  { box-shadow: 11px 11px 0 var(--tn-orange); }
.tn-section--ink .tn-cta--whatsapp:active { box-shadow: 4px 4px 0 var(--tn-orange); }
@media (max-width: 575px) {
    .tn-section--ink .tn-card:hover,
    .tn-section--ink .tn-card:focus-visible { box-shadow: 6px 6px 0 var(--tn-orange); }
    .tn-section--ink .tn-cta--whatsapp { box-shadow: 6px 6px 0 var(--tn-orange); }
    .tn-section--ink .tn-cta--whatsapp:hover { box-shadow: 8px 8px 0 var(--tn-orange); }
}

/* =========================================================================
   04 · Algodón — Dossier · Apertura Dossier (eyebrow + título + rule 2px ink)
   ========================================================================= */
.tn-header--dossier {
    margin-bottom: clamp(28px, 4vw, 44px);
    padding-bottom: clamp(16px, 2.5vw, 24px);
    border-bottom: 2px solid var(--tn-ink);
}
.tn-header--dossier .tn-prose { margin-top: clamp(14px, 2vw, 20px); }

/* ─── Apertura RunInHeadline (eyebrow inline + em-dash + título, hairline) ─ */
.tn-runin {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 1.5vw, 1rem);
    margin-bottom: clamp(22px, 3vw, 34px);
    padding-bottom: clamp(14px, 2vw, 20px);
    border-bottom: 1px solid var(--tn-rule);
}
.tn-eyebrow--inline { margin: 0; }
.tn-runin__divider {
    font-family: var(--tn-font-accent);
    font-style: italic;
    color: var(--tn-orange);
    font-size: 1.5em;
    line-height: 1;
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .tn-runin { gap: 0.5rem; }
    .tn-runin__divider { display: none; }   /* el título hace wrap; el guion sobra */
}

/* =========================================================================
   06 · Tela Color Negro — Periódico · DropCap · Double-rule
   ========================================================================= */
.tn-section--double-rule {
    border-top: 1px solid var(--tn-rule);
    border-bottom: 1px solid var(--tn-rule);
}
.tn-dropcap {
    max-width: 66ch;
    font-family: var(--tn-font-body);
    font-size: clamp(1.05rem, 1.4vw, 1.22rem);
    line-height: 1.62;
    color: var(--tn-ink);
    margin: 0 0 1.1em;
}
.tn-dropcap:last-child { margin-bottom: 0; }
.tn-dropcap__cap {
    float: left;
    font-family: var(--tn-font-accent);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(3.6rem, 8vw, 5.6rem);
    line-height: 0.8;
    color: var(--tn-orange);
    padding: 0.08em 0.12em 0 0;
    margin-top: 0.04em;
}
.tn-dropcap strong { font-weight: 800; }
.tn-dropcap a {
    color: var(--tn-ink);
    text-decoration: underline;
    text-decoration-color: var(--tn-orange);
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    transition: color var(--tn-motion-fast) var(--tn-ease);
}
.tn-dropcap a:hover { color: var(--tn-orange); }
.tn-arthead { margin-bottom: clamp(22px, 3vw, 32px); }
.tn-arthead .tn-title { margin-top: 8px; }

/* =========================================================================
   07 · Usos (zigzag) — Periódico · Dossier numerado · Brick-stack · paper
   ========================================================================= */
.tn-zigzag .tn-zz {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}
.tn-zigzag .tn-zz + .tn-zz { margin-top: clamp(48px, 8vw, 100px); }
.tn-zz__text  { min-width: 0; }
.tn-zz__media { order: 2; margin: 0; }
.tn-zz--rev .tn-zz__text  { order: 2; }
.tn-zz--rev .tn-zz__media { order: 1; }
.tn-zz__text .tn-title   { margin-bottom: clamp(16px, 2vw, 22px); }
.tn-zz__text .tn-prose   { max-width: 60ch; }
.tn-zz__text .tn-actions { margin-top: clamp(22px, 3vw, 30px); }
@media (max-width: 860px) {
    .tn-zigzag .tn-zz { grid-template-columns: 1fr; gap: clamp(22px, 5vw, 32px); }
    .tn-zz__media, .tn-zz--rev .tn-zz__media,
    .tn-zz__text,  .tn-zz--rev .tn-zz__text { order: 0; }
    .tn-zigzag .tn-zz + .tn-zz { margin-top: clamp(40px, 9vw, 56px); }
}

/* =========================================================================
   08 · Tipos (Mate / Brillosa) — Técnico · LabelLateral · Side-rule · cream
   ========================================================================= */
.tn-section--types .tn-container {
    border-left: 3px solid var(--tn-orange);
}
@media (max-width: 640px) {
    .tn-section--types .tn-container {
        border-left: 0;
        border-top: 3px solid var(--tn-orange);
        padding-top: clamp(22px, 5vw, 30px);
    }
}
.tn-lathead {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1rem, 3vw, 2.5rem);
    align-items: start;
    margin-bottom: clamp(32px, 5vw, 52px);
}
.tn-lathead__rail {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    align-self: stretch;
}
.tn-lathead__rail-mono {
    font-family: var(--tn-font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--tn-muted);
    white-space: nowrap;
}
.tn-lathead__body { min-width: 0; }
.tn-lathead__note {
    font-family: var(--tn-font-accent);
    font-style: italic;
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.5;
    color: var(--tn-muted);
    margin: clamp(12px, 1.6vw, 16px) 0 0;
    max-width: 60ch;
}
.tn-lathead__note span { color: var(--tn-ink); font-weight: 600; font-style: normal; }
@media (max-width: 640px) {
    .tn-lathead { grid-template-columns: 1fr; gap: 0.5rem; }
    .tn-lathead__rail { writing-mode: horizontal-tb; transform: none; align-self: start; }
}

/* ─── Dúo de features (imagen frame-chunky + h3 + prosa) ───────────────── */
.tn-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 56px);
}
@media (max-width: 768px) { .tn-duo { grid-template-columns: 1fr; gap: clamp(34px, 7vw, 46px); } }
.tn-feat { display: flex; flex-direction: column; }
.tn-feat .tn-figure { margin: 0 0 clamp(18px, 2.5vw, 26px); }
.tn-feat .tn-title { margin-bottom: clamp(12px, 1.6vw, 16px); }
.tn-feat .tn-actions { margin-top: auto; padding-top: clamp(18px, 2.5vw, 24px); }

/* =========================================================================
   09 · Precio — Fanzine · MegaTextBg · INK (2ª puntuación)
   ========================================================================= */
.tn-section--statement { overflow: hidden; }
.tn-megahead {
    position: relative;
    isolation: isolate;
    padding-top: clamp(24px, 6vw, 72px);
    margin-bottom: clamp(20px, 3vw, 32px);
}
.tn-megahead__bg {
    position: absolute;
    top: 0;
    left: 0;
    font-family: var(--tn-font-display);
    font-size: clamp(4.5rem, 18vw, 13rem);
    line-height: 0.78;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--tn-rule-on-dark);   /* tenue sobre ink */
    white-space: nowrap;
    pointer-events: none;
    z-index: -1;
}
.tn-megahead__fg { position: relative; max-width: 34ch; }

/* =========================================================================
   10/11 · Venta / Transparente — Dossier / Galería · split (.tn-zz reuse)
   El bloque de prosa+acciones que sigue/acompaña una imagen split
   reusa .tn-zigzag/.tn-zz; estilos compartidos ya definidos arriba.
   ========================================================================= */
.tn-zz__text ul { margin: 0; padding: 0; list-style: none; }

/* =========================================================================
   Accesibilidad — focus visible global + motion safe
   ========================================================================= */
.tn-section :focus-visible {
    outline: 3px solid var(--tn-orange);
    outline-offset: 3px;
    border-radius: 0;
}
@media (prefers-reduced-motion: reduce) {
    .tn-section *,
    .tn-section *::before,
    .tn-section *::after {
        transition-duration: 0ms !important;
        animation-duration: 0ms !important;
    }
    .tn-cta:hover, .tn-cta:active,
    .tn-card:hover, .tn-card:focus-visible,
    .tn-figure--link:hover { transform: none; }
    .tn-card:hover .tn-card__media img,
    .tn-card:hover .tn-card__cta i,
    .tn-btn--outline:hover i { transform: none; }
}

@media (max-width: 575px) {
    .tn-cta--whatsapp { box-shadow: 6px 6px 0 var(--tn-ink); }
    .tn-cta--whatsapp:hover { box-shadow: 8px 8px 0 var(--tn-ink); }
    .tn-figure { box-shadow: 6px 6px 0 var(--tn-ink); }
}
