/* =============================================================
   bandas-y-estolas.css
   TSG (Turbo SEO Guide) — Arletex Design System v3.4
   -------------------------------------------------------------
   CSS de página. Solo carga en /blog/tela-para-bandas-y-estolas.
   Construido desde los fragmentos del skill arletex-design
   (tokens, components, openings, registers, compositions,
   hovers-frames). Prefijo de sistema: .ax-*  ·  Scope: .tbe
   -------------------------------------------------------------
   Firma propia de esta TSG (no en otras landings):
     §14 SwatchHead — muestrario ceremonial de color en el hero
     §15 Feature trio — "por qué el raso satín"
     §16 Pull-quote — el momento Carta (recuerdo de graduación)
   ============================================================= */


/* =============================================================
   §1. TOKENS
   ============================================================= */
.tbe {
    --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);
}

.tbe,
.tbe *,
.tbe *::before,
.tbe *::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);
}

/* Full-frame — caja con borde completo (§8.3.4) */
.ax-section--full-frame > .ax-container {
    border: 1.5px solid var(--ax-ink);
    padding-top: clamp(32px, 5vw, 56px);
    padding-bottom: clamp(32px, 5vw, 56px);
}

/* 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
   ============================================================= */
.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);
}

/* Eyebrow pill (variante usada en aside del FAQ y cross-link) */
.ax-eyebrow {
    display: inline-block; font-family: var(--ax-font-body); font-weight: 700;
    font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase;
    padding: 6px 14px; border: 1px solid var(--ax-ink); border-radius: 9999px; line-height: 1;
}
.ax-eyebrow--orange { background: var(--ax-orange); color: var(--ax-paper); border-color: var(--ax-orange); }
.ax-eyebrow--solid  { background: var(--ax-ink);    color: var(--ax-paper); border-color: var(--ax-ink); }


/* =============================================================
   §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;
}

/* Postmark (§4.4.10) — membrete de carta */
.ax-postmark {
    font-family: var(--ax-font-mono);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ax-muted);
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem);
}
.ax-postmark__sep { color: var(--ax-orange); }

/* 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(5rem, 19vw, 14rem);
    line-height: 1;
    text-transform: uppercase;
    color: var(--ax-rule-on-dark);
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: -.01em;
}
.ax-section-header__mega-fg { position: relative; max-width: 34ch; }


/* =============================================================
   §6. BOTONES
   ============================================================= */
.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; }

/* Pareja de CTAs en línea (interlink primario + secundario) */
.ax-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 480px) { .ax-cta-row { width: 100%; } .ax-cta-row .ax-btn { flex: 1 1 100%; } }


/* =============================================================
   §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;
}
.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-spec-list__value a:hover { color: var(--ax-orange); }


/* =============================================================
   §8. COMPOSICIONES — Zigzag + Vertical split
   ============================================================= */

/* 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;
    overflow: hidden;
    border: 1.5px solid var(--ax-ink);
    box-shadow: 8px 8px 0 var(--ax-ink);
    background: var(--ax-paper);
}
.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); }
}


/* =============================================================
   §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 — la imagen es la pieza */
.ax-banner-bleed {
    display: block;
    width: 100%;
    line-height: 0;
    margin-bottom: 0;
    background-color: var(--ax-paper);
}
.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 */
.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 / 500; max-height: 520px; }
@media (max-width: 767px) {
    .ax-hero-visual img { aspect-ratio: 700 / 500; max-height: none; }
}


/* =============================================================
   §10. HOVERS / GESTOS
   ============================================================= */
.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); }


/* =============================================================
   §11. DUAL CARDS — comparativa (satín brillante / raso satín)
   ============================================================= */
.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),
                background-color var(--ax-motion-base) var(--ax-ease-out);
}
.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;
}

.tbe-final { position: relative; }
.tbe-final__burst {
    position: absolute;
    top: clamp(-18px, -2vw, -8px);
    right: clamp(20px, 5vw, 64px);
    z-index: 3;
}
@media (max-width: 560px) {
    .tbe-final__burst { right: 16px; top: -16px; }
}


/* =============================================================
   §11c. COLORCARDS — microcards de color (link a TSG de 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);
    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 — layout 2 columnas (aside + lista) + items tipo card
         acordeón nativo <details> (texto siempre en DOM; SEO intacto)
   ============================================================= */
.ax-faqsec__grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 940px) { .ax-faqsec__grid { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); } }
@media (min-width: 940px) { .ax-faqsec__aside { position: sticky; top: 130px; } }
.ax-faqsec__aside .ax-eyebrow--orange { margin-bottom: clamp(1rem, 2vw, 1.5rem); }
.ax-faqsec__title { font-size: clamp(2rem, 4.4vw, 3.2rem) !important; line-height: .95; }
.ax-faqsec__note {
    font-family: var(--ax-font-accent); font-style: italic; color: var(--ax-muted);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.5; max-width: 40ch;
    margin: clamp(1.25rem, 2.5vw, 1.75rem) 0;
}
.ax-faqsec__cta { margin-top: 4px; }

.ax-faq { display: flex; flex-direction: column; gap: 12px; }
.ax-faq__item {
    background: var(--ax-white); border: 1.5px solid var(--ax-rule);
    transition: border-color var(--ax-motion-base) var(--ax-ease-out), box-shadow var(--ax-motion-base) var(--ax-ease-out);
}
.ax-faq__item:hover { border-color: var(--ax-ink); }
.ax-faq__item[open] {
    border-color: var(--ax-ink); border-left: 4px solid var(--ax-orange);
    box-shadow: 5px 5px 0 var(--ax-ink);
}
.ax-faq__q {
    list-style: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    padding: clamp(15px, 2vw, 19px) clamp(16px, 2.2vw, 22px);
    font-family: var(--ax-font-body); font-weight: 700; font-size: clamp(.98rem, 1.4vw, 1.12rem);
    line-height: 1.35; 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::after {
    content: '+'; flex-shrink: 0;
    width: 30px; height: 30px; display: grid; place-items: center;
    font-family: var(--ax-font-display); font-size: 1.35rem; line-height: 1;
    background: var(--ax-cream); color: var(--ax-orange); border: 1.5px solid var(--ax-ink);
    transition: transform var(--ax-motion-base) var(--ax-ease-out),
                background var(--ax-motion-base) var(--ax-ease-out),
                color var(--ax-motion-base) var(--ax-ease-out);
}
.ax-faq__q:hover,
.ax-faq__q:focus-visible { color: var(--ax-orange); }
.ax-faq__item[open] > .ax-faq__q { color: var(--ax-orange); }
.ax-faq__item[open] > .ax-faq__q::after {
    transform: rotate(45deg); background: var(--ax-orange); color: var(--ax-paper); border-color: var(--ax-orange);
}
.ax-faq__a { overflow: hidden; }
.ax-faq__a .ax-body {
    font-family: var(--ax-font-body); font-size: clamp(.95rem, 1.1vw, 1.0625rem);
    line-height: 1.65; color: var(--ax-muted); max-width: 70ch;
    padding: 0 clamp(16px, 2.2vw, 22px) clamp(16px, 2.2vw, 20px); margin: 0;
}


/* =============================================================
   §11e. CROSS-LINK "completa el conjunto" — tarjeta Index-tab
   ============================================================= */
.tbe-cross {
    position: relative; background: var(--ax-white); border: 2px solid var(--ax-ink);
    box-shadow: 10px 10px 0 var(--ax-ink);
    padding: clamp(1.75rem, 4vw, 3rem); margin-top: 18px;
    display: grid; gap: clamp(1.5rem, 3.5vw, 2.5rem);
}
@media (min-width: 820px) {
    .tbe-cross { grid-template-columns: minmax(0, 1fr) minmax(0, .82fr); align-items: stretch; }
}
.tbe-cross__tab {
    position: absolute; top: -16px; left: clamp(1.5rem, 4vw, 3rem); z-index: 2;
    background: var(--ax-orange); color: var(--ax-paper);
    font-family: var(--ax-font-display); text-transform: uppercase;
    font-size: .8rem; letter-spacing: .12em; line-height: 1; padding: 8px 14px;
}
.tbe-cross__main { display: grid; gap: clamp(1rem, 2vw, 1.4rem); align-content: start; }
.tbe-cross__title { max-width: 24ch; }
.tbe-cross__main .ax-prose { max-width: 64ch; }
.tbe-cross__main .ax-btn { justify-self: start; }

/* Media: banner togas (1900×400) recortado a la altura de la tarjeta */
.tbe-cross__media {
    display: block; overflow: hidden; margin: 0; min-height: 220px;
    border: 2px solid var(--ax-ink); box-shadow: 8px 8px 0 var(--ax-orange);
}
.tbe-cross__media picture { display: block; height: 100%; }
.tbe-cross__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 819px) { .tbe-cross__media { aspect-ratio: 700 / 500; min-height: 0; } }


/* =============================================================
   §12. BREADCRUMB (refinado, sobre el global)
   ============================================================= */
.tbe .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;
}
.tbe .breadcrumb.ax-crumb a { color: var(--ax-muted); }
.tbe .breadcrumb.ax-crumb a:hover { color: var(--ax-orange); }
.tbe .breadcrumb.ax-crumb .breadcrumb-item.active { color: var(--ax-ink); font-weight: 700; }


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


/* =============================================================
   §14. SWATCHHEAD — muestrario ceremonial de color (hero, Vitrina)
   Firma de esta TSG: para bandas/estolas el COLOR es el protagonista.
   Cada chip es un <a> navegable a su TSG de color (link equity).
   ============================================================= */
/* ── HERO editorial (paper + grilla) — split copy/media · mega-text · collage ── */
.tbe-hero { position: relative; overflow: hidden; isolation: isolate; }
.tbe-hero > .ax-container { position: relative; z-index: 1; }

/* Grilla de textura sobre el paper (estructura visible — N-03) */
.tbe-hero__grid-tex {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(31, 37, 48, .055) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(31, 37, 48, .055) 1px, transparent 1px);
    background-size: clamp(34px, 4vw, 46px) clamp(34px, 4vw, 46px);
    -webkit-mask-image: radial-gradient(120% 90% at 70% 20%, #000 55%, transparent 100%);
            mask-image: radial-gradient(120% 90% at 70% 20%, #000 55%, transparent 100%);
}

/* Mega-text fantasma detrás (la tipografía es la ilustración) */
.tbe-hero__mega {
    position: absolute; z-index: 0; top: clamp(-2rem, -2vw, -1rem); right: -4vw;
    margin: 0; pointer-events: none; user-select: none; white-space: nowrap;
    font-family: var(--ax-font-display); text-transform: uppercase;
    font-size: clamp(8rem, 26vw, 22rem); line-height: .8; letter-spacing: -.02em;
    color: var(--ax-ink); opacity: .05;
}

/* Grid principal */
.tbe-hero__grid {
    display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (min-width: 900px) {
    .tbe-hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }
}

.tbe-hero__copy { display: grid; gap: clamp(1.1rem, 2.2vw, 1.6rem); align-content: start; }
.tbe-hero__title { max-width: 15ch; margin: 0; }
.tbe-hero__lead { color: var(--ax-ink); max-width: 46ch; }
.tbe-hero__lead strong { color: var(--ax-orange); font-weight: 700; }

/* Chips de confianza */
.tbe-hero__chips {
    display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none;
}
.tbe-hero__chips li {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 15px; background: var(--ax-white); border: 1.5px solid var(--ax-ink);
    font-family: var(--ax-font-body); font-weight: 700;
    font-size: clamp(.8rem, 1.1vw, .92rem); color: var(--ax-ink);
    box-shadow: 3px 3px 0 var(--ax-ink);
    transition: transform var(--ax-motion-base) var(--ax-ease-out),
                box-shadow var(--ax-motion-base) var(--ax-ease-out);
}
.tbe-hero__chips li:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ax-orange); }
.tbe-hero__chips i { color: var(--ax-orange); }
.tbe-hero__cta { margin-top: 4px; }

/* Collage de imágenes con marco de sombra sólida */
.tbe-hero__media {
    position: relative; justify-self: center; width: 100%;
    max-width: 440px; padding: 0 0 34px 34px;
}
@media (min-width: 900px) { .tbe-hero__media { justify-self: end; } }
.tbe-hero__shot { margin: 0; overflow: hidden; background: var(--ax-cream); }
.tbe-hero__shot img { display: block; width: 100%; height: 100%; object-fit: cover; }
.tbe-hero__shot--main {
    aspect-ratio: 1 / 1; border: 3px solid var(--ax-ink);
    box-shadow: 14px 14px 0 var(--ax-orange);
}
.tbe-hero__shot--inset {
    position: absolute; left: 0; bottom: 0; width: 46%; aspect-ratio: 1 / 1;
    border: 3px solid var(--ax-ink); box-shadow: 8px 8px 0 var(--ax-orange-deep);
    z-index: 2;
}
/* Sello "burst" flotante */
.tbe-hero__burst {
    position: absolute; z-index: 3; top: -14px; right: -10px;
    display: grid; place-items: center; text-align: center;
    width: clamp(86px, 11vw, 108px); aspect-ratio: 1 / 1; border-radius: 9999px;
    background: var(--ax-orange); color: var(--ax-paper);
    font-family: var(--ax-font-display); text-transform: uppercase;
    font-size: clamp(.72rem, 1vw, .85rem); line-height: 1.05; letter-spacing: .02em;
    box-shadow: 4px 4px 0 var(--ax-ink); transform: rotate(0);
}

/* Prosa SEO + swatch-strip a lo ancho, bajo el split */
.tbe-hero__prose {
    max-width: 74ch; margin-top: clamp(2rem, 4vw, 3rem);
    padding-top: clamp(1.5rem, 3vw, 2rem); border-top: 1px solid rgba(31, 37, 48, .14);
}
.tbe-hero__prose .ax-body { color: var(--ax-muted); }
.tbe-hero__swatches { margin-top: clamp(1.5rem, 3vw, 2rem); border-top-color: rgba(31, 37, 48, .14); }

@media (prefers-reduced-motion: reduce) {
    .tbe-hero__chips li, .tbe-hero__shot { transition: none; }
}

.ax-swatch-strip {
    display: grid;
    gap: clamp(.75rem, 1.5vw, 1.1rem);
    padding-top: clamp(.5rem, 1.5vw, 1rem);
    border-top: 1px solid var(--ax-rule);
}
.ax-swatch-strip__label {
    font-family: var(--ax-font-mono);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ax-muted);
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.ax-swatch-strip__label::before {
    content: "";
    width: 22px; height: 1px;
    background: var(--ax-orange);
}

.ax-swatch-row {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 1.6vw, 16px);
    margin: 0;
    padding: 0;
    list-style: none;
}
.ax-swatch {
    display: grid;
    gap: 8px;
    justify-items: center;
    width: 60px;
    text-decoration: none;
    color: var(--ax-ink);
}
.ax-swatch__chip {
    width: 56px;
    height: 56px;
    background: var(--c, var(--ax-cream));
    border: 1.5px solid var(--ax-ink);
    background-clip: padding-box;
    box-shadow: 3px 3px 0 var(--ax-ink);
    transition: transform var(--ax-motion-fast) var(--ax-ease-out),
                box-shadow var(--ax-motion-fast) var(--ax-ease-out);
}
.ax-swatch:hover .ax-swatch__chip,
.ax-swatch:focus-visible .ax-swatch__chip {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 var(--ax-orange);
}
.ax-swatch__name {
    font-family: var(--ax-font-body);
    font-weight: 700;
    font-size: 10.5px;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.15;
    color: var(--ax-muted);
}
.ax-swatch:hover .ax-swatch__name { color: var(--ax-ink); }
/* Chip "+más tonos" — lleva al directorio de colores */
.ax-swatch--more .ax-swatch__chip {
    display: grid;
    place-items: center;
    background: var(--ax-white);
    font-family: var(--ax-font-display);
    font-size: 14px;
    color: var(--ax-orange);
}


/* =============================================================
   §15. FEATURE TRIO — "por qué el raso satín" (registro Técnico)
   Tres tarjetas blancas sobre cream; número mono + título Anton.
   ============================================================= */
.ax-feature-grid {
    display: grid;
    gap: clamp(16px, 2.5vw, 24px);
    grid-template-columns: 1fr;
}
@media (min-width: 780px) {
    .ax-feature-grid { grid-template-columns: repeat(3, 1fr); }
}
.ax-feature {
    background: var(--ax-white);
    border: 1.5px solid var(--ax-ink);
    border-top: 4px solid var(--ax-orange);
    padding: clamp(22px, 3vw, 32px);
    display: grid;
    gap: 12px;
    align-content: start;
    transition: transform var(--ax-motion-base) var(--ax-ease-out),
                box-shadow var(--ax-motion-base) var(--ax-ease-out);
}
.ax-feature:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0 var(--ax-ink);
}
.ax-feature__num {
    font-family: var(--ax-font-mono);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ax-orange);
    font-variant-numeric: tabular-nums;
}
.ax-feature__title {
    font-family: var(--ax-font-display);
    font-weight: 400;
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    line-height: .98;
    text-transform: uppercase;
    color: var(--ax-ink);
    margin: 0;
}
.ax-feature__title em {
    font-family: var(--ax-font-accent);
    font-style: italic;
    text-transform: lowercase;
    color: var(--ax-orange);
    font-size: .9em;
}
.ax-feature__body {
    font-family: var(--ax-font-body);
    font-size: clamp(.9rem, 1vw, 1rem);
    line-height: 1.6;
    color: var(--ax-muted);
    margin: 0;
}


/* =============================================================
   §16. PULL-QUOTE — el momento Carta (recuerdo de graduación)
   Fraunces protagonista sobre cream; susurra, no grita.
   ============================================================= */
.ax-pull {
    display: grid;
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
    max-width: 30ch;
    margin: 0 auto;
    text-align: center;
}
.ax-pull__mark {
    font-family: var(--ax-font-accent);
    font-style: italic;
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: .5;
    color: var(--ax-orange);
    height: .5em;
}
.ax-pull__quote {
    font-family: var(--ax-font-accent);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.5rem, 3.6vw, 2.6rem);
    line-height: 1.22;
    color: var(--ax-ink);
    margin: 0;
}
.ax-pull__quote em {
    font-style: italic;
    color: var(--ax-orange);
}
.ax-pull__cite {
    font-family: var(--ax-font-mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ax-muted);
    margin: 0;
}
.ax-pull__cite::before {
    content: "— ";
    color: var(--ax-orange);
}
