/* SpinGranny Casino — hoja de estilos principal.
   Escalas: TYPO-08 (tight industrial), SPACE-03 (tight), CONT-05, BP-02, GEO-02.
   Los nombres de las variables son propios de esta compilación. */

/* ─── tipografía autoalojada ─────────────────────────────────────────── */
@font-face {
    font-family: 'Atma';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/glifos/atma-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Atma';
    font-style: normal;
    font-weight: 700 900;
    font-display: swap;
    src: url('/glifos/atma-700.woff2') format('woff2');
}

/* ─── fichas de diseño ───────────────────────────────────────────────── */
:root {
    /* paleta (valores .final de la especificación) */
    --hue-base: #19104e;
    --hue-punch: #f4a41d;
    --hue-press: #e19309;
    --hue-bg: #110b3b;
    --hue-above: #1c1359;
    --hue-script: #ffffff;
    --hue-dim: #bebebe;
    --hue-edge: #2f2570;
    --hue-stroke-heavy: #4a3d9c;
    --hue-blend-a: #ffffff;
    --hue-fade-bottom: #352a87;
    --hue-caution: #c1272d;

    /* tipos */
    --typeface-heading: 'Atma', 'Trebuchet MS', sans-serif;
    --typeface-base: system-ui, -apple-system, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --size-title: clamp(30px, 4.4vw, 56px);
    --size-display-2: clamp(24px, 3.1vw, 38px);
    --size-display-3: clamp(20px, 2.1vw, 24px);
    --size-display-4: 18px;
    --size-sm-2: 15px;
    --size-xs-2: 13px;
    --size-body: 16px;
    --size-small: 13px;
    --size-legal: 11px;
    --lh-snug: 1.05;
    --lh-even: 1.4;
    --lh-airy: 1.6;
    --font-weight-plain: 500;
    --font-weight-demi: 700;
    --font-weight-bold: 900;
    --letter-snug: -0.02em;
    --letter-even: 0.02em;
    --letter-loose: 0.1em;

    /* ritmo */
    --step-hair: 2px;
    --step-tiny: 6px;
    --step-snug: 10px;
    --step-base: 14px;
    --step-wide: 20px;
    --step-roomy: 28px;
    --step-vast: 48px;
    --step-huge: 72px;
    --sec-y: 44px;

    /* geometría */
    --curve-hair: 2px;
    --curve-tiny: 4px;
    --curve-snug: 8px;
    --curve-base: 12px;
    --curve-wide: 20px;
    --curve-roomy: 26px;
    --curve-vast: 32px;
    --curve-huge: 40px;
    --curve-stadium: 9999px;
    --curve-orb: 50%;
    --stroke-thin: 1px;
    --stroke-base: 2px;
    --stroke-thick: 3px;
    --shadow-hair: 0 1px 1px rgba(0, 0, 0, 0.05);
    --shadow-tiny: 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-snug: 0 2px 6px rgba(0, 0, 0, 0.08);
    --shadow-base: 0 6px 18px rgba(0, 0, 0, 0.12);
    --shadow-wide: 0 12px 32px rgba(0, 0, 0, 0.16);
    --shadow-roomy: 0 18px 44px rgba(0, 0, 0, 0.2);
    --shadow-vast: 0 24px 60px rgba(0, 0, 0, 0.24);
    --shadow-huge: 0 32px 80px rgba(0, 0, 0, 0.28);

    /* movimiento (números de la especificación, sin redondear) */
    --speed-quick: 207ms;
    --speed-steady: 390ms;
    --speed-calm: 725ms;
    --glide-release: cubic-bezier(0.33, 0.63, 0.43, 0.97);
    --glide-launch: cubic-bezier(0.97, 0.43, 0.63, 0.33);
    --glide-even: cubic-bezier(0.65, 0.04, 0.29, 1);
    --glide-elastic: cubic-bezier(0.42, 1.45, 0.67, 1);

    /* medidas */
    --bounds-max: 1320px;
    --bounds-narrow: 660px;
    --bounds-pad-lg: 64px;
    --bounds-inset-tablet: 32px;
    --bounds-pad-sm: 20px;
    --bar-h-lg: 76px;
    --bar-size-mobile: 64px;

    /* alturas medidas en el navegador */
    --rg-h: 30px;
    --cook-h: 0px;
    --h-pad: 120px;
}

/* ─── ajustes para pantallas estrechas (desktop-first) ───────────────── */
@media (max-width: 820px) {
    :root {
        --size-title: clamp(26px, 7.4vw, 34px);
        --size-display-2: clamp(21px, 5.4vw, 26px);
        --size-display-3: 20px;
        --size-display-4: 16px;
        --size-sm-2: 14px;
        --size-xs-2: 12px;
        --size-body: 15px;
        --size-small: 12px;
        --size-legal: 10px;
        --sec-y: 32px;
        --bounds-pad-lg: 20px;
    }
}
@media (min-width: 821px) and (max-width: 1180px) {
    :root {
        --bounds-pad-lg: 32px;
    }
}

/* ─── base ───────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--h-pad) + 12px);
}
html,
body {
    overflow-x: clip;
}
body {
    margin: 0;
    padding-top: var(--h-pad);
    background: var(--hue-bg);
    color: var(--hue-script);
    font-family: var(--typeface-base);
    font-size: var(--size-body);
    font-weight: var(--font-weight-plain);
    line-height: var(--lh-even);
    letter-spacing: var(--letter-even);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
img {
    max-width: 100%;
    height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: anywhere;
    margin: 0;
    font-family: var(--typeface-heading);
    color: var(--hue-script);
}
h1 {
    font-size: var(--size-title);
    font-weight: var(--font-weight-bold);
    line-height: var(--lh-snug);
    letter-spacing: var(--letter-snug);
    text-transform: uppercase;
}
h2 {
    font-size: var(--size-display-2);
    font-weight: var(--font-weight-demi);
    line-height: var(--lh-snug);
    letter-spacing: var(--letter-snug);
    text-transform: uppercase;
}
h3 {
    font-size: var(--size-display-3);
    font-weight: var(--font-weight-demi);
    line-height: var(--lh-even);
    letter-spacing: var(--letter-even);
}
p {
    margin: 0 0 var(--step-base);
    overflow-wrap: anywhere;
}
ul,
ol {
    margin: 0 0 var(--step-base);
    padding-left: var(--step-roomy);
}
table {
    border-collapse: collapse;
}
button,
input,
textarea {
    font: inherit;
}

/* ─── accesibilidad ──────────────────────────────────────────────────── */
.skiplane {
    position: absolute;
    left: var(--step-snug);
    top: -200px;
    z-index: 200;
    padding: var(--step-snug) var(--step-base);
    border-radius: var(--curve-snug);
    background: var(--hue-punch);
    color: var(--hue-bg);
    font-weight: var(--font-weight-demi);
    text-decoration: none;
}
.skiplane:focus {
    top: var(--step-snug);
}
:focus-visible {
    outline: var(--stroke-base) solid var(--hue-punch);
    outline-offset: 2px;
}
.corps-vif {
    flex: 1 0 auto;
    display: block;
}

/* ─── armazón de secciones ───────────────────────────────────────────── */
.niche-austere,
.prie-dieu-haut,
.cellule-classique,
.lampadaire-grand,
.sanctuaire-dru,
.calice-robuste,
.autel-noble,
.piedestal-classique,
.autel-voile,
.colonnade-pur,
.stalle-secret,
.veilleuse-pur,
.pavois-large {
    padding-block: var(--sec-y);
    background: var(--hue-bg);
    color: var(--hue-script);
}
.niche-austere-frame,
.prie-dieu-haut-frame,
.cellule-classique-frame,
.lampadaire-grand-frame,
.sanctuaire-dru-frame,
.calice-robuste-frame,
.autel-noble-frame,
.piedestal-classique-frame,
.autel-voile-frame,
.colonnade-pur-frame,
.stalle-secret-frame,
.veilleuse-pur-frame,
.pavois-large-frame {
    display: block;
    width: 100%;
    max-width: calc(var(--bounds-max) + 2 * var(--bounds-pad-lg));
    margin-inline: auto;
    padding-inline: var(--bounds-pad-lg);
}

/* ─── franja 18+ (RG-04: banda oscura con filo de color) ─────────────── */
.guard-strip {
    position: fixed;
    top: var(--cook-h);
    left: 0;
    right: 0;
    z-index: 101;
    margin: 0;
    padding: var(--step-tiny) var(--step-base);
    border-bottom: var(--stroke-thick) solid var(--hue-caution);
    background: var(--hue-base);
    color: var(--hue-script);
    display: block;
    text-align: center;
    font-size: var(--size-legal);
    letter-spacing: var(--letter-loose);
    text-transform: uppercase;
}
.guard-route {
    background: var(--hue-base);
    color: var(--hue-punch);
    text-decoration: underline;
    text-decoration-color: var(--hue-caution);
    text-underline-offset: 3px;
}
.guard-route:hover {
    background: var(--hue-punch);
    color: var(--hue-bg);
    text-decoration-color: var(--hue-bg);
}

/* ─── cabecera HEAD-SUBNAV (fila principal + banda de secciones) ─────── */
.credence-noble {
    position: fixed;
    top: calc(var(--cook-h) + var(--rg-h));
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--hue-base);
    color: var(--hue-script);
    border-bottom: var(--stroke-thin) solid var(--hue-edge);
}
.credence-noble-top {
    display: flex;
    align-items: center;
    gap: var(--step-base);
    min-height: var(--bar-h-lg);
    width: 100%;
    max-width: calc(var(--bounds-max) + 2 * var(--bounds-pad-lg));
    margin-inline: auto;
    padding-inline: var(--step-roomy);
}
.credence-noble-brand {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    order: 1;
}
.credence-noble-plate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--step-tiny) var(--step-wide);
    border-radius: var(--curve-orb);
    background: var(--hue-blend-a);
    color: var(--hue-base);
}
.credence-noble-image {
    display: block;
    height: 44px;
    width: auto;
    flex-shrink: 0;
}
.credence-noble-brand:hover .credence-noble-plate {
    box-shadow: 0 0 0 var(--stroke-base) var(--hue-punch);
}

/* botón de menú — puntos con fondo tenue (burgerStyle dots, burgerFrame tint) */
.credence-noble-menu-opener {
    display: none;
    order: 2;
    margin-left: auto;
    width: 46px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--curve-base);
    background: var(--hue-above);
    color: var(--hue-script);
    cursor: pointer;
}
.credence-noble-lines {
    position: relative;
    display: block;
    width: 5px;
    height: 5px;
    border-radius: var(--curve-orb);
    background: var(--hue-punch);
}
.credence-noble-lines::before,
.credence-noble-lines::after {
    content: '';
    position: absolute;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: var(--curve-orb);
    background: var(--hue-punch);
}
.credence-noble-lines::before {
    top: -9px;
}
.credence-noble-lines::after {
    top: 9px;
}
.credence-noble-menu-opener[aria-expanded='true'] {
    background: var(--hue-punch);
    color: var(--hue-bg);
}
.credence-noble-menu-opener[aria-expanded='true'] .credence-noble-lines,
.credence-noble-menu-opener[aria-expanded='true'] .credence-noble-lines::before,
.credence-noble-menu-opener[aria-expanded='true'] .credence-noble-lines::after {
    background: var(--hue-bg);
}

/* panel plano para pantallas estrechas */
.credence-noble-dock {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 110;
    max-height: 68vh;
    overflow-y: auto;
    background: var(--hue-base);
    color: var(--hue-script);
    border-bottom: var(--stroke-base) solid var(--hue-punch);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity var(--speed-quick) var(--glide-release), transform var(--speed-quick) var(--glide-release), visibility var(--speed-quick) var(--glide-release);
}
.credence-noble-dock.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.credence-noble-dockmenu {
    padding: var(--step-snug) var(--step-roomy) var(--step-wide);
}
.credence-noble-dockstack {
    margin: 0;
    padding: 0;
    list-style: none;
}
.credence-noble-dockitem {
    border-bottom: var(--stroke-thin) solid var(--hue-edge);
}
.credence-noble-dockroute {
    display: block;
    padding: var(--step-base) 0;
    background: var(--hue-base);
    color: var(--hue-script);
    font-family: var(--typeface-heading);
    font-size: var(--size-display-4);
    font-variant: small-caps;
    letter-spacing: var(--letter-even);
    text-decoration: none;
}
.credence-noble-dockroute:hover,
.credence-noble-dockroute[aria-current='page'] {
    background: var(--hue-base);
    color: var(--hue-punch);
}

/* botón de oferta de la cabecera */
.credence-noble-bar {
    order: 3;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: var(--step-snug);
}
.credence-noble-act {
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}

/* banda inferior con las secciones */
.credence-noble-band {
    height: 44px;
    border-top: var(--stroke-thin) solid var(--hue-edge);
    background: var(--hue-base);
    color: var(--hue-script);
}
.credence-noble-menu {
    height: 100%;
    width: 100%;
    max-width: calc(var(--bounds-max) + 2 * var(--bounds-pad-lg));
    margin-inline: auto;
    padding-inline: var(--step-roomy);
}
.credence-noble-stack {
    display: flex;
    align-items: stretch;
    gap: var(--step-roomy);
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
.credence-noble-item {
    position: relative;
    display: flex;
    align-items: stretch;
}
.credence-noble-item[hidden] {
    display: none;
}
.credence-noble-route,
.credence-noble-group-lever,
.credence-noble-more-lever {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0;
    border: 0;
    background: var(--hue-base);
    color: var(--hue-script);
    font-family: var(--typeface-base);
    font-size: 16px;
    font-weight: 500;
    font-variant: small-caps;
    letter-spacing: var(--letter-even);
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--speed-quick) var(--glide-release), color var(--speed-quick) var(--glide-release);
}
.credence-noble-route:hover,
.credence-noble-group-lever:hover,
.credence-noble-more-lever:hover {
    background: var(--hue-base);
    color: var(--hue-punch);
    transform: translateY(-2px);
}
.credence-noble-route[aria-current='page'],
.credence-noble-groupOn .credence-noble-group-lever {
    background: var(--hue-base);
    color: var(--hue-punch);
    font-weight: 900;
}
.credence-noble-group-lever::after,
.credence-noble-more-lever::after {
    content: '';
    margin-left: var(--step-tiny);
    width: 6px;
    height: 6px;
    border-right: var(--stroke-base) solid currentColor;
    border-bottom: var(--stroke-base) solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}
.credence-noble-group-pane,
.credence-noble-more-pane {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 115;
    min-width: 210px;
    margin: 0;
    padding: var(--step-tiny) 0;
    list-style: none;
    border: var(--stroke-thin) solid var(--hue-stroke-heavy);
    border-radius: var(--curve-base);
    background: var(--hue-above);
    color: var(--hue-script);
    box-shadow: var(--shadow-wide);
    pointer-events: none;
}
.credence-noble-more-pane {
    left: auto;
    right: 0;
}
.credence-noble-group-pane.is-open,
.credence-noble-more-pane.is-open {
    display: block;
    pointer-events: auto;
}
.credence-noble-subitem {
    display: block;
}
.credence-noble-subroute {
    display: block;
    padding: var(--step-snug) var(--step-base);
    background: var(--hue-above);
    color: var(--hue-script);
    font-size: var(--size-small);
    font-variant: small-caps;
    letter-spacing: var(--letter-even);
    white-space: nowrap;
    text-decoration: none;
}
.credence-noble-subroute:hover,
.credence-noble-subroute[aria-current='page'] {
    background: var(--hue-punch);
    color: var(--hue-bg);
}
.credence-noble-more {
    margin-left: auto;
}
.credence-noble-more[hidden] {
    display: none;
}

@media (max-width: 900px) {
    .credence-noble-menu-opener {
        display: inline-flex;
        order: 3;
        margin-left: 0;
    }
    .credence-noble-bar {
        order: 2;
        margin-left: auto;
    }
    .credence-noble-band {
        display: none;
    }
    .credence-noble-top {
        min-height: var(--bar-size-mobile);
        padding-inline: var(--bounds-pad-sm);
        flex-wrap: wrap;
        row-gap: var(--step-tiny);
        padding-block: var(--step-tiny);
    }
    .credence-noble-image {
        height: 34px;
    }
    .credence-noble-plate {
        padding: var(--step-hair) var(--step-base);
    }
}
@media (max-width: 620px) {
    .credence-noble-menu-opener {
        margin-left: auto;
    }
    .credence-noble-bar {
        order: 4;
        flex-basis: 100%;
        margin-left: 0;
        justify-content: stretch;
    }
    .credence-noble-bar .credence-noble-act {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* ─── pie FOOT-07 (asimétrico anclado al lado) ───────────────────────── */
.veilleur-dense {
    flex-shrink: 0;
    background: var(--hue-base);
    color: var(--hue-script);
    border-top: var(--stroke-base) solid var(--hue-punch);
}
.veilleur-dense-frame {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    width: 100%;
    max-width: calc(var(--bounds-max) + 2 * var(--bounds-pad-lg));
    margin-inline: auto;
    padding-inline: var(--bounds-pad-lg);
    padding-block: var(--step-vast);
    gap: var(--step-vast);
    align-items: stretch;
}
.veilleur-dense-inside {
    display: flex;
    flex-direction: column;
    gap: var(--step-wide);
}
.veilleur-dense-brand {
    display: inline-flex;
    align-self: flex-start;
    padding: var(--step-tiny) var(--step-base);
    border-radius: var(--curve-wide);
    background: var(--hue-blend-a);
    color: var(--hue-base);
}
.veilleur-dense-image {
    display: block;
    height: 34px;
    width: auto;
}
.veilleur-dense-cols {
    display: flex;
    flex-wrap: wrap;
    gap: var(--step-vast);
}
.veilleur-dense-col {
    flex: 1 1 200px;
    min-width: 200px;
}
.veilleur-dense-hdr {
    margin-bottom: var(--step-snug);
    color: var(--hue-punch);
    font-size: var(--size-xs-2);
    letter-spacing: var(--letter-loose);
}
.veilleur-dense-menu,
.veilleur-dense-lawmenu {
    display: block;
}
.veilleur-dense-stack {
    margin: 0;
    padding: 0;
    list-style: none;
}
.veilleur-dense-item {
    margin-bottom: var(--step-tiny);
}
.veilleur-dense-route {
    background: var(--hue-base);
    color: var(--hue-dim);
    font-size: var(--size-small);
    text-decoration: none;
}
.veilleur-dense-route:hover {
    background: var(--hue-base);
    color: var(--hue-punch);
}
.veilleur-dense-fineprint {
    background: var(--hue-base);
    color: var(--hue-dim);
    font-size: var(--size-legal);
    letter-spacing: var(--letter-even);
}
.veilleur-dense-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--step-roomy);
    border-radius: var(--curve-wide);
    background: var(--hue-punch);
    color: var(--hue-bg);
}
.veilleur-dense-tag {
    background: var(--hue-punch);
    color: var(--hue-bg);
    font-family: var(--typeface-heading);
    font-size: var(--size-display-2);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-snug);
    line-height: var(--lh-snug);
    text-transform: uppercase;
    text-align: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
@media (max-width: 900px) {
    .veilleur-dense-frame {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--step-roomy);
        padding-block: var(--step-roomy);
    }
    .veilleur-dense-accent {
        padding: var(--step-base);
    }
    .veilleur-dense-tag {
        writing-mode: horizontal-tb;
        transform: none;
    }
    .veilleur-dense-cols {
        gap: var(--step-roomy);
    }
}

/* ─── aviso de cookies COOK-08 (barra superior con filo) ─────────────── */
.fondement-haut {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    height: 56px;
    background: var(--hue-bg);
    color: var(--hue-script);
    border-bottom: var(--stroke-base) solid var(--hue-punch);
    transform: translateY(0);
    transition: transform var(--speed-steady) var(--glide-even);
}
.fondement-haut[hidden] {
    display: none;
}
.fondement-haut.is-gone {
    transform: translateY(-110%);
}
.fondement-haut-frame {
    display: flex;
    align-items: center;
    gap: var(--step-base);
    height: 100%;
    width: 100%;
    max-width: calc(var(--bounds-max) + 2 * var(--bounds-pad-lg));
    margin-inline: auto;
    padding-inline: var(--step-roomy);
}
.fondement-haut-glyph {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    fill: currentColor;
    color: var(--hue-punch);
}
.fondement-haut-say {
    flex: 1 1 auto;
    min-width: 0;
    background: var(--hue-bg);
    color: var(--hue-script);
    font-size: var(--size-small);
    line-height: var(--lh-even);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.fondement-haut-bar {
    flex-shrink: 0;
    display: inline-flex;
    gap: var(--step-tiny);
}
.fondement-haut-accept,
.fondement-haut-refuse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    min-width: 92px;
    padding: var(--step-tiny) var(--step-base);
    border-radius: var(--curve-snug);
    border: var(--stroke-thin) solid var(--hue-stroke-heavy);
    font-size: var(--size-small);
    font-weight: var(--font-weight-demi);
    cursor: pointer;
}
.fondement-haut-accept {
    border-color: var(--hue-punch);
    background: var(--hue-punch);
    color: var(--hue-bg);
}
.fondement-haut-refuse {
    background: var(--hue-above);
    color: var(--hue-script);
}
.fondement-haut-accept:hover {
    background: var(--hue-press);
    color: var(--hue-bg);
}
.fondement-haut-refuse:hover {
    background: var(--hue-base);
    color: var(--hue-punch);
}
@media (max-width: 720px) {
    .fondement-haut {
        height: auto;
    }
    .fondement-haut-frame {
        flex-wrap: wrap;
        padding-inline: var(--bounds-pad-sm);
        padding-block: var(--step-snug);
        gap: var(--step-snug);
    }
    .fondement-haut-say {
        flex: 1 1 100%;
        order: 2;
        -webkit-line-clamp: 4;
        font-size: var(--size-legal);
        line-height: 1.35;
    }
    .fondement-haut-bar {
        flex: 1 1 100%;
        order: 3;
    }
    .fondement-haut-accept,
    .fondement-haut-refuse {
        flex: 1 1 auto;
        min-height: 36px;
        font-size: var(--size-legal);
    }
}

/* ─── primer pantalla HERO-11 (imagen compacta a la derecha) ─────────── */
.niche-austere {
    background: var(--hue-bg);
}
.niche-austere-frame {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr);
    gap: var(--step-vast);
    align-items: center;
    min-height: 420px;
}
.niche-austere-inside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--step-snug);
}
.niche-austere-eyebrow {
    background: var(--hue-bg);
    color: var(--hue-punch);
    font-size: var(--size-small);
    font-weight: var(--font-weight-demi);
    letter-spacing: var(--letter-loose);
    text-transform: uppercase;
}
.niche-austere-hdr {
    margin: 0;
}
.niche-austere-tagline {
    max-width: var(--bounds-narrow);
    margin: 0;
    background: var(--hue-bg);
    color: var(--hue-dim);
    font-size: var(--size-sm-2);
    line-height: var(--lh-airy);
}
.niche-austere-bar {
    display: flex;
    flex-wrap: wrap;
    gap: var(--step-base);
    margin-top: var(--step-tiny);
}
.niche-austere-terms,
.niche-austere-age {
    background: var(--hue-bg);
    color: var(--hue-dim);
    font-size: var(--size-legal);
    letter-spacing: var(--letter-even);
}
.niche-austere-age {
    color: var(--hue-punch);
    text-transform: uppercase;
}
.niche-austere-shot {
    margin: 0;
    aspect-ratio: 1 / 1;
    align-self: center;
    border-radius: var(--curve-wide);
    overflow: hidden;
    box-shadow: var(--shadow-wide);
}
.niche-austere-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 900px) {
    .niche-austere-frame {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--step-wide);
        min-height: 0;
    }
    .niche-austere-shot {
        order: 2;
        aspect-ratio: 16 / 10;
        max-height: 240px;
        width: 100%;
    }
    .niche-austere-inside {
        order: 1;
    }
    .niche-austere-bar {
        width: 100%;
    }
}

/* ─── encabezado de página PHEAD-01 ──────────────────────────────────── */
.prie-dieu-haut-frame {
    display: flex;
    flex-direction: column;
    gap: var(--step-base);
}
.prie-dieu-haut-eyebrow {
    background: var(--hue-bg);
    color: var(--hue-punch);
    font-size: var(--size-small);
    font-weight: var(--font-weight-demi);
    letter-spacing: var(--letter-loose);
    text-transform: uppercase;
}
.prie-dieu-haut-hdr {
    margin: 0;
}
.prie-dieu-haut-rule {
    width: 60px;
    height: var(--stroke-base);
    background: var(--hue-punch);
}
.prie-dieu-haut-tagline {
    margin: 0;
    background: var(--hue-bg);
    color: var(--hue-dim);
    font-size: var(--size-sm-2);
    line-height: var(--lh-airy);
}

/* ─── tarjetas GRID-09 (tira de desplazamiento horizontal) ───────────── */
.cellule-classique-hdr {
    margin-bottom: var(--step-wide);
}
.cellule-classique-rail {
    display: flex;
    gap: var(--step-base);
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: var(--step-base);
    scrollbar-color: var(--hue-punch) var(--hue-above);
}
.cellule-classique-item {
    flex: 0 0 320px;
    scroll-snap-align: start;
    min-height: 200px;
    padding: var(--step-wide);
    border: var(--stroke-thin) solid var(--hue-edge);
    border-radius: var(--curve-wide);
    background: var(--hue-above);
    color: var(--hue-script);
    transition: box-shadow var(--speed-quick) var(--glide-release), border-color var(--speed-quick) var(--glide-release);
}
.cellule-classique-item:hover {
    background: var(--hue-above);
    color: var(--hue-script);
    border-color: var(--hue-punch);
    box-shadow: var(--shadow-wide);
}
.cellule-classique-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: var(--step-snug);
    border: var(--stroke-thin) solid var(--hue-stroke-heavy);
    border-radius: var(--curve-base);
    background: var(--hue-base);
    color: var(--hue-punch);
}
.cellule-classique-glyph {
    width: 21px;
    height: 21px;
    fill: currentColor;
}
.cellule-classique-caption {
    margin-bottom: var(--step-tiny);
    font-size: var(--size-display-4);
}
.cellule-classique-prose {
    background: var(--hue-above);
    color: var(--hue-dim);
    font-size: var(--size-small);
    line-height: var(--lh-airy);
}
@media (max-width: 620px) {
    .cellule-classique-item {
        flex-basis: 82vw;
    }
}

/* ─── texto corrido PROSE-25 (título en placa con filo inferior) ─────── */
.lampadaire-grand-frame {
    display: flex;
    flex-direction: column;
    gap: var(--step-snug);
}
.lampadaire-grand-hdr {
    display: block;
    width: 100%;
    margin: 0 0 var(--step-snug);
    padding: var(--step-tiny) 0;
    border-bottom: var(--stroke-thick) solid var(--hue-punch);
    background: none;
    color: var(--hue-script);
    font-size: var(--size-display-3);
    font-weight: var(--font-weight-plain);
    letter-spacing: var(--letter-even);
    line-height: var(--lh-even);
    text-align: start;
}
.lampadaire-grand-prose {
    margin: 0 0 var(--step-snug);
    background: var(--hue-bg);
    color: var(--hue-dim);
    font-size: var(--size-body);
    line-height: var(--lh-airy);
}
.lampadaire-grand-stack,
.lampadaire-grand-steps {
    margin: 0 0 var(--step-snug);
    padding-left: var(--step-roomy);
    background: var(--hue-bg);
    color: var(--hue-dim);
    line-height: var(--lh-airy);
}
.lampadaire-grand-steps {
    list-style: decimal;
}
.lampadaire-grand-item {
    margin-bottom: var(--step-tiny);
}
.lampadaire-grand-item::marker {
    color: var(--hue-punch);
}
.lampadaire-grand-route {
    background: var(--hue-bg);
    color: var(--hue-punch);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: background-color var(--speed-quick) var(--glide-release), color var(--speed-quick) var(--glide-release);
}
.lampadaire-grand-route:hover {
    background: var(--hue-punch);
    color: var(--hue-bg);
    text-decoration: none;
}
.lampadaire-grand-bar {
    display: flex;
    flex-wrap: wrap;
    gap: var(--step-base);
    margin-top: var(--step-snug);
}

/* ─── tabla TABLE-01 (filas alternas clásicas) ───────────────────────── */
.sanctuaire-dru-hdr {
    margin-bottom: var(--step-wide);
}
.sanctuaire-dru-scroller {
    overflow-x: auto;
    border-radius: var(--curve-base);
}
.sanctuaire-dru-grid {
    width: 100%;
    min-width: 520px;
    background: var(--hue-above);
    color: var(--hue-script);
}
.sanctuaire-dru-band {
    background: var(--hue-above);
}
.sanctuaire-dru-tag {
    padding: var(--step-base);
    background: var(--hue-base);
    color: var(--hue-punch);
    font-family: var(--typeface-base);
    font-size: var(--size-xs-2);
    font-weight: var(--font-weight-demi);
    letter-spacing: var(--letter-loose);
    text-transform: uppercase;
    text-align: left;
}
.sanctuaire-dru-lead,
.sanctuaire-dru-cell {
    padding: var(--step-base);
    border-top: var(--stroke-thin) solid var(--hue-edge);
    font-size: var(--size-small);
    text-align: left;
    vertical-align: top;
}
.sanctuaire-dru-lead {
    background: var(--hue-above);
    color: var(--hue-script);
    font-weight: var(--font-weight-demi);
}
.sanctuaire-dru-cell {
    background: var(--hue-above);
    color: var(--hue-dim);
}
.sanctuaire-dru-grid tbody tr:nth-child(even) .sanctuaire-dru-lead,
.sanctuaire-dru-grid tbody tr:nth-child(even) .sanctuaire-dru-cell {
    background: var(--hue-base);
}

/* ─── opiniones REV-01 (tres columnas con estrellas) ─────────────────── */
.calice-robuste-hdr {
    margin-bottom: var(--step-wide);
}
.calice-robuste-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--step-wide);
}
.calice-robuste-item {
    padding: var(--step-wide);
    border: var(--stroke-thin) solid var(--hue-edge);
    border-radius: var(--curve-base);
    background: var(--hue-above);
    color: var(--hue-script);
    transition: box-shadow var(--speed-quick) var(--glide-release);
}
.calice-robuste-item:hover {
    background: var(--hue-above);
    color: var(--hue-script);
    box-shadow: var(--shadow-wide);
}
.calice-robuste-band {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: var(--step-tiny);
    margin-bottom: var(--step-snug);
}
.calice-robuste-byname {
    background: var(--hue-above);
    color: var(--hue-script);
    font-weight: var(--font-weight-demi);
}
.calice-robuste-marks {
    background: var(--hue-above);
    color: var(--hue-punch);
    letter-spacing: 1px;
}
.calice-robuste-score {
    background: var(--hue-above);
    color: var(--hue-dim);
    font-size: var(--size-small);
}
.calice-robuste-say {
    margin: 0;
    background: var(--hue-above);
    color: var(--hue-dim);
    font-size: var(--size-small);
    line-height: var(--lh-airy);
}
@media (max-width: 1024px) {
    .calice-robuste-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 700px) {
    .calice-robuste-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ─── preguntas FAQ-06 (índice con anclas + respuestas abiertas) ─────── */
.autel-noble-hdr {
    margin-bottom: var(--step-wide);
}
.autel-noble-toc {
    display: block;
    margin-bottom: var(--step-roomy);
    padding: var(--step-wide);
    border-left: var(--stroke-thick) solid var(--hue-fade-bottom);
    border-radius: var(--curve-base);
    background: var(--hue-base);
    color: var(--hue-script);
}
.autel-noble-stack {
    margin: 0;
    padding-left: var(--step-roomy);
}
.autel-noble-item {
    margin-bottom: var(--step-tiny);
}
.autel-noble-item::marker {
    color: var(--hue-punch);
}
.autel-noble-route {
    background: var(--hue-base);
    color: var(--hue-dim);
    font-size: var(--size-small);
    text-decoration: none;
}
.autel-noble-route:hover {
    background: var(--hue-base);
    color: var(--hue-script);
    text-decoration: underline;
}
.autel-noble-body {
    display: block;
}
.autel-noble-unit {
    border-bottom: var(--stroke-thin) solid var(--hue-edge);
    padding-block: var(--step-snug);
}
.autel-noble-ask {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--step-base);
    cursor: pointer;
    list-style: none;
}
.autel-noble-ask::-webkit-details-marker {
    display: none;
}
.autel-noble-caption {
    margin: 0;
    background: var(--hue-bg);
    color: var(--hue-script);
    font-size: var(--size-display-4);
}
.autel-noble-chev {
    width: 9px;
    height: 9px;
    border-right: var(--stroke-base) solid var(--hue-punch);
    border-bottom: var(--stroke-base) solid var(--hue-punch);
    transform: rotate(-135deg);
    transition: transform var(--speed-quick) var(--glide-release);
}
.autel-noble-unit:not([open]) .autel-noble-chev {
    transform: rotate(45deg);
}
.autel-noble-matter {
    padding-top: var(--step-snug);
    overflow: hidden;
}
.autel-noble-unit[open] .autel-noble-matter {
    animation: unfoldQuestion var(--speed-steady) var(--glide-release) both;
}
.autel-noble-prose {
    margin: 0;
    background: var(--hue-bg);
    color: var(--hue-dim);
    font-size: var(--size-small);
    line-height: var(--lh-airy);
}
@keyframes unfoldQuestion {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 700px;
        opacity: 1;
    }
}

/* ─── llamada CTA-05 (acción doble) ──────────────────────────────────── */
.piedestal-classique {
    background: var(--hue-base);
    border-block: var(--stroke-thin) solid var(--hue-edge);
}
.piedestal-classique-frame {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--step-snug);
}
.piedestal-classique-eyebrow {
    background: var(--hue-base);
    color: var(--hue-punch);
    font-size: var(--size-small);
    font-weight: var(--font-weight-demi);
    letter-spacing: var(--letter-loose);
    text-transform: uppercase;
}
.piedestal-classique-hdr {
    margin: 0;
}
.piedestal-classique-prose {
    max-width: var(--bounds-narrow);
    margin: 0;
    background: var(--hue-base);
    color: var(--hue-dim);
    line-height: var(--lh-airy);
}
.piedestal-classique-bar {
    display: flex;
    flex-wrap: wrap;
    gap: var(--step-base);
    margin-top: var(--step-tiny);
}
.piedestal-classique-quiet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: var(--step-snug) var(--step-wide);
    border: var(--stroke-thin) solid var(--hue-stroke-heavy);
    border-radius: var(--curve-base);
    background: var(--hue-above);
    color: var(--hue-script);
    font-family: var(--typeface-heading);
    font-size: var(--size-small);
    font-weight: var(--font-weight-demi);
    letter-spacing: var(--letter-loose);
    text-transform: uppercase;
    text-decoration: none;
}
.piedestal-classique-quiet:hover {
    background: var(--hue-bg);
    color: var(--hue-punch);
    border-color: var(--hue-punch);
}
.piedestal-classique-terms {
    background: var(--hue-base);
    color: var(--hue-dim);
    font-size: var(--size-legal);
}

/* ─── firma BYLINE-05 (banda horizontal a todo el ancho) ─────────────── */
.pavois-large {
    background: var(--hue-base);
    padding-block: var(--step-wide);
}
.pavois-large-frame {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--step-base);
}
.pavois-large-who {
    display: flex;
    align-items: center;
    gap: var(--step-base);
}
.pavois-large-photo {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: var(--curve-orb);
    object-fit: cover;
    object-position: center top;
}
.pavois-large-inside {
    display: flex;
    flex-direction: column;
}
.pavois-large-kicker {
    background: var(--hue-base);
    color: var(--hue-dim);
    font-size: var(--size-legal);
    letter-spacing: var(--letter-loose);
    text-transform: uppercase;
}
.pavois-large-byname {
    background: var(--hue-base);
    color: var(--hue-script);
    font-family: var(--typeface-heading);
    font-size: var(--size-display-4);
}
.pavois-large-route {
    background: var(--hue-base);
    color: var(--hue-script);
    text-decoration: none;
}
.pavois-large-route:hover {
    background: var(--hue-base);
    color: var(--hue-punch);
    text-decoration: underline;
}
.pavois-large-job {
    background: var(--hue-base);
    color: var(--hue-dim);
    font-size: var(--size-small);
}
.pavois-large-more {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: var(--step-tiny) var(--step-base);
    border: var(--stroke-thin) solid var(--hue-punch);
    border-radius: var(--curve-snug);
    background: var(--hue-base);
    color: var(--hue-punch);
    font-size: var(--size-small);
    text-decoration: none;
}
.pavois-large-more:hover {
    background: var(--hue-punch);
    color: var(--hue-bg);
}
@media (max-width: 700px) {
    .pavois-large-frame {
        flex-direction: column;
        align-items: flex-start;
    }
    .pavois-large-more {
        width: 100%;
        justify-content: center;
    }
}
/* Offer CTA */
.khkx-act{position:relative;isolation:isolate;display:inline-flex;align-items:center;justify-content:center;
  min-height:52px;padding:0 28px;border:1px solid #110B3B;border-radius:2px;
  background:#DB2777;color:#FFFFFF;text-decoration:none;
  font-size:13px;font-weight:600;letter-spacing:1.2px;
  transition:background .12s ease,color .12s ease,transform .12s ease,box-shadow .12s ease}
.khkx-act:hover{background:#BE185D;color:#FFFFFF;animation:none}
.khkx-act:hover::after{animation:none}
.khkx-act:active{background:#9D174D;color:#FFFFFF}
.khkx-act:focus-visible{outline:3px solid #110B3B;outline-offset:3px}
.khkx-act{animation:stamp_khkx 3.22s ease-in-out infinite}
@keyframes stamp_khkx{0%{transform:translate(0,0)}5.590%{transform:translate(4px,4px)}19.255%,100%{transform:translate(0,0)}}
@media (prefers-reduced-motion:reduce){.khkx-act,.khkx-act::after{animation:none!important;transition:none!important}}

/* ─── ficha de autora AUTH-01 (horizontal con retrato redondo) ───────── */
.stalle-secret {
    padding-block: var(--step-roomy);
}
.stalle-secret-slab {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: var(--step-roomy);
    padding: var(--step-roomy) var(--step-wide);
    border-radius: var(--curve-wide);
    background: var(--hue-above);
    color: var(--hue-script);
    box-shadow: var(--shadow-snug);
}
.stalle-secret-photo {
    display: block;
    width: 160px;
    height: 160px;
    border-radius: var(--curve-orb);
    overflow: hidden;
    align-self: start;
}
.stalle-secret-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.stalle-secret-inside {
    display: flex;
    flex-direction: column;
    gap: var(--step-snug);
}
.stalle-secret-job {
    background: var(--hue-above);
    color: var(--hue-punch);
    font-size: var(--size-small);
    font-weight: var(--font-weight-demi);
    letter-spacing: var(--letter-loose);
    text-transform: uppercase;
}
.stalle-secret-byname {
    background: var(--hue-above);
    color: var(--hue-script);
    font-family: var(--typeface-heading);
    font-size: var(--size-display-2);
    font-weight: var(--font-weight-bold);
    line-height: var(--lh-snug);
}
.stalle-secret-prose {
    margin: 0;
    background: var(--hue-above);
    color: var(--hue-dim);
    line-height: var(--lh-airy);
}
.stalle-secret-stack {
    display: flex;
    flex-wrap: wrap;
    gap: var(--step-tiny);
    margin: 0;
    padding: 0;
    list-style: none;
}
.stalle-secret-item {
    padding: var(--step-hair) var(--step-snug);
    border-radius: var(--curve-stadium);
    background: var(--hue-base);
    color: var(--hue-script);
    font-size: var(--size-legal);
    letter-spacing: var(--letter-even);
    text-transform: uppercase;
}
@media (max-width: 820px) {
    .stalle-secret-slab {
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
        text-align: center;
    }
    .stalle-secret-photo {
        width: 120px;
        height: 120px;
    }
    .stalle-secret-stack {
        justify-content: center;
    }
}

/* ─── páginas legales LEGAL-04 (caja con borde) ──────────────────────── */
.autel-voile-slab {
    position: relative;
    padding: var(--step-vast) var(--step-roomy);
    border: var(--stroke-thin) solid var(--hue-edge);
    border-radius: var(--curve-wide);
    background: var(--hue-above);
    color: var(--hue-script);
    box-shadow: var(--shadow-snug);
}
.autel-voile-anchorpoint {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
}
.autel-voile-lead {
    margin: 0 0 var(--step-wide);
    background: var(--hue-above);
    color: var(--hue-script);
    font-size: var(--size-sm-2);
    line-height: var(--lh-airy);
}
.autel-voile-hdr {
    margin: var(--step-roomy) 0 var(--step-snug);
    background: var(--hue-above);
    color: var(--hue-script);
    font-size: var(--size-display-3);
    font-weight: var(--font-weight-demi);
    letter-spacing: var(--letter-even);
    text-transform: none;
}
.autel-voile-prose {
    margin: 0 0 var(--step-snug);
    background: var(--hue-above);
    color: var(--hue-dim);
    line-height: var(--lh-airy);
}
.autel-voile-stack {
    margin: 0 0 var(--step-base);
    padding-left: var(--step-roomy);
    background: var(--hue-above);
    color: var(--hue-dim);
    line-height: var(--lh-airy);
}
.autel-voile-item {
    margin-bottom: var(--step-tiny);
}
.autel-voile-item::marker {
    color: var(--hue-punch);
}
.autel-voile-fineprint {
    margin: var(--step-wide) 0 0;
    padding-top: var(--step-base);
    border-top: var(--stroke-thin) solid var(--hue-edge);
    background: var(--hue-above);
    color: var(--hue-dim);
    font-size: var(--size-small);
    line-height: var(--lh-airy);
}

/* ─── formulario FORM-08 (envío ancho asimétrico) ────────────────────── */
.colonnade-pur-hdr {
    margin-bottom: var(--step-wide);
}
.colonnade-pur-slab {
    padding: var(--step-roomy);
    border-radius: var(--curve-base);
    background: var(--hue-above);
    color: var(--hue-script);
}
.colonnade-pur-shape {
    display: flex;
    flex-wrap: wrap;
    gap: var(--step-base);
}
.colonnade-pur-input {
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    gap: var(--step-tiny);
    margin: 0;
}
.colonnade-pur-wide {
    flex: 1 1 100%;
}
.colonnade-pur-tag {
    background: var(--hue-above);
    color: var(--hue-dim);
    font-size: var(--size-small);
    letter-spacing: var(--letter-even);
}
.colonnade-pur-box {
    width: 100%;
    padding: var(--step-snug) var(--step-base);
    border: var(--stroke-thin) solid var(--hue-stroke-heavy);
    border-radius: var(--curve-snug);
    background: var(--hue-bg);
    color: var(--hue-script);
    font-size: var(--size-body);
}
.colonnade-pur-box:focus {
    border-color: var(--hue-punch);
    outline: none;
}
.colonnade-pur-area {
    min-height: 128px;
    resize: vertical;
}
.colonnade-pur-send {
    flex: 1 1 100%;
    min-height: 72px;
    border: 0;
    border-radius: var(--curve-base);
    background: var(--hue-punch);
    color: var(--hue-bg);
    font-family: var(--typeface-heading);
    font-size: var(--size-display-4);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-loose);
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color var(--speed-quick) var(--glide-release);
}
.colonnade-pur-send:hover {
    background: var(--hue-press);
    color: var(--hue-bg);
}
.colonnade-pur-done {
    margin: var(--step-base) 0 0;
    padding: var(--step-base);
    border-radius: var(--curve-snug);
    background: var(--hue-base);
    color: var(--hue-punch);
    font-size: var(--size-sm-2);
}
.colonnade-pur-done[hidden] {
    display: none;
}
@media (max-width: 620px) {
    .colonnade-pur-input {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* ─── error ERR-03 (sin dramatismo) ──────────────────────────────────── */
.veilleuse-pur {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    justify-content: center;
}
.veilleuse-pur-frame {
    text-align: center;
}
.veilleuse-pur-hdr {
    max-width: var(--bounds-narrow);
    margin: 0 auto var(--step-base);
    font-size: var(--size-display-2);
}
.veilleuse-pur-prose {
    max-width: var(--bounds-narrow);
    margin: 0 auto var(--step-wide);
    background: var(--hue-bg);
    color: var(--hue-dim);
    line-height: var(--lh-airy);
}
.veilleuse-pur-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: var(--step-snug) var(--step-roomy);
    border-radius: var(--curve-base);
    background: var(--hue-punch);
    color: var(--hue-bg);
    font-family: var(--typeface-heading);
    font-weight: var(--font-weight-demi);
    letter-spacing: var(--letter-loose);
    text-transform: uppercase;
    text-decoration: none;
}
.veilleuse-pur-back:hover {
    background: var(--hue-press);
    color: var(--hue-bg);
}
.corps-vif:has(> .veilleuse-pur) {
    display: flex;
    flex-direction: column;
}

/* ─── movimiento reducido ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
        scroll-behavior: auto !important;
    }
}
.colonnade-pur-shape[hidden] {
    display: none;
}

/* clases de apoyo: agrupación del menú y botones de oferta en el cuerpo */
.credence-noble-group {
    position: relative;
}
.niche-austere-act,
.lampadaire-grand-act,
.piedestal-classique-act {
    text-align: center;
    text-decoration: none;
}

@media (max-width: 929px) {
  .credence-noble-band,
  .credence-noble-menu,
  .credence-noble-stack,
  .credence-noble-route { display: none !important; }
  .credence-noble-menu-opener { display: flex !important; }
}

.lampadaire-grand-page-figure {
	margin-block: var(--size-display-3);
}

.lampadaire-grand-page-figure img {
	display: block;
	max-width: 100%;
	max-height: 56vh;
	width: auto;
	height: auto;
	margin-inline: auto;
}

.cellule-classique-page-figure {
	margin-block: var(--size-display-3);
}

.cellule-classique-page-figure img {
	display: block;
	max-width: 100%;
	max-height: 56vh;
	width: auto;
	height: auto;
	margin-inline: auto;
}
