/* ============ fonts ============ */
@font-face {
    font-family: 'Wharf Text';
    src: url('/archive-54/body-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Wharf Text';
    src: url('/archive-54/body-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Wharf Text';
    src: url('/archive-54/body-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Wharf Stamp';
    src: url('/archive-54/head-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Wharf Stamp';
    src: url('/archive-54/head-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ============ tokens ============ */
:root {
    --tone-anchor: #1d1e1f;
    --tone-punch: #f9803e;
    --tone-press: #f77116;
    --tone-sheet: #111214;
    --tone-above: #1a1c1e;
    --tone-copy: #ffffff;
    --tone-subtle: #bfbfbf;
    --tone-line: rgba(255, 255, 255, 0.12);
    --tone-line-strong: rgba(255, 255, 255, 0.24);
    --tone-gradient-light: #fdd0ba;
    --tone-ramp-end: #fb9d6a;
    --tone-notice: #9e2a2b;

    --gutter-hair: 3px;
    --gutter-tiny: 8px;
    --gutter-snug: 13px;
    --gutter-base: 21px;
    --gutter-wide: 34px;
    --gutter-roomy: 55px;
    --gutter-vast: 89px;
    --gutter-huge: 144px;

    --bend-hair: 1px;
    --bend-tiny: 2px;
    --bend-snug: 8px;
    --bend-base: 14px;
    --bend-wide: 22px;
    --bend-roomy: 28px;
    --bend-vast: 34px;
    --bend-huge: 44px;
    --bend-capsule: 9999px;
    --bend-circle: 50%;

    --face-display: 'Wharf Stamp', 'Trebuchet MS', sans-serif;
    --face-reading: 'Wharf Text', 'Helvetica Neue', Arial, sans-serif;

    --size-xxl: 36px;
    --size-h2: 26px;
    --size-sub: 20px;
    --size-md-2: 17px;
    --size-h5: 14px;
    --size-micro-head: 12px;
    --size-body: 14px;
    --size-fine: 12px;
    --size-xs: 11px;

    --rhythm-tight: 1.15;
    --rhythm-even: 1.45;
    --rhythm-relaxed: 1.6;

    --boldness-book: 400;
    --boldness-demi: 500;
    --boldness-thick: 700;

    --letter-spacing-packed: -0.01em;
    --letter-spacing-even: 0;
    --letter-spacing-spread: 0.06em;

    --shadow-hair: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    --shadow-tiny: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    --shadow-snug: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    --shadow-base: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    --shadow-wide: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    --shadow-roomy: 0 20px 56px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    --shadow-vast: 0 26px 64px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    --shadow-huge: 0 34px 80px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;

    --dur-brisk: 98ms;
    --dur-mid: 200ms;
    --dur-long: 409ms;
    --glide-release: cubic-bezier(0.17, 0.58, 0.49, 0.95);
    --glide-in: cubic-bezier(0.4, 0.01, 0.33, 0.95);
    --glide-both: cubic-bezier(0.4, 0.01, 0.33, 0.95);
    --glide-pop: cubic-bezier(0.26, 1.3, 0.57, 1.2);

    --width-main: 1400px;
    --width-prose: 1400px;
    --width-edge-wide: 24px;
    --width-edge-mid: 32px;
    --width-edge-narrow: 16px;

    --hair-light: 1px;
    --hair-base: 2px;
    --hair-bold: 3px;

    --nav-h-lg: 80px;
    --nav-short: 62px;

    --rlf-narrow: 470px;
    --rlf-sec-y: 44px;
    --rlf-shell: 96px;
    --rlf-slide: 470px;
}

/* ============ base ============ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-padding-block-start: 130px;
}

html,
body {
    overflow-x: clip;
}

body {
    margin: 0;
    background: var(--tone-sheet);
    color: var(--tone-copy);
    font-family: var(--face-reading);
    font-size: var(--size-body);
    font-weight: var(--boldness-book);
    line-height: var(--rhythm-even);
    padding-block-start: var(--rlf-shell, 96px);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    animation: wharf-lift var(--dur-long) var(--glide-release) both;
}

@keyframes wharf-lift {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    overflow-wrap: anywhere;
}

h1,
h2 {
    font-family: var(--face-display);
    font-weight: var(--boldness-thick);
    letter-spacing: var(--letter-spacing-packed);
    line-height: var(--rhythm-tight);
}

h3,
h4 {
    font-family: var(--face-reading);
    font-weight: var(--boldness-thick);
    letter-spacing: var(--letter-spacing-even);
    line-height: var(--rhythm-even);
}

h5,
h6 {
    font-family: var(--face-reading);
    font-weight: var(--boldness-demi);
    letter-spacing: var(--letter-spacing-spread);
    text-transform: uppercase;
}

h1 {
    font-size: var(--size-xxl);
}

h2 {
    font-size: var(--size-h2);
}

h3 {
    font-size: var(--size-sub);
}

h4 {
    font-size: var(--size-md-2);
}

p {
    margin: 0;
    overflow-wrap: anywhere;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

a {
    color: var(--tone-punch);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: text-decoration-thickness var(--dur-brisk) var(--glide-release), color var(--dur-brisk) var(--glide-release);
}

a:hover {
    color: var(--tone-press);
    text-decoration-thickness: 2px;
}

button {
    font: inherit;
    cursor: pointer;
}

table {
    border-collapse: collapse;
}

.meat {
    flex: 1 0 auto;
    display: block;
}

.skip-href {
    position: fixed;
    inset-inline-start: var(--gutter-base);
    z-index: 200;
    background: var(--tone-punch);
    color: var(--tone-sheet);
    font-weight: var(--boldness-thick);
    padding: var(--gutter-snug) var(--gutter-base);
    border-radius: var(--bend-snug);
    text-decoration: none;
}

.skip-href:not(:focus) {
    top: -200px !important;
}

.skip-href:focus {
    top: var(--gutter-snug);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 3px solid var(--tone-punch);
    outline-offset: 2px;
}

[id] {
    scroll-margin-block-start: 130px;
}

/* ============ header — HEAD-PILL ============ */
.relief {
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    z-index: 100;
    background: var(--tone-sheet);
    padding-block: var(--gutter-tiny);
}

.relief-frame {
    position: relative;
    max-width: 1440px;
    margin-inline: auto;
    padding-inline: var(--gutter-base);
}

.relief-pill {
    height: 80px;
    display: flex;
    align-items: center;
    gap: var(--gutter-base);
    background: var(--tone-anchor);
    color: var(--tone-copy);
    border-radius: var(--bend-capsule);
    padding-inline: var(--gutter-wide);
    box-shadow: var(--shadow-base);
    transition: backdrop-filter var(--dur-mid) var(--glide-release), background-color var(--dur-mid) var(--glide-release);
}

.relief.is-glazed .relief-pill {
    background: rgba(29, 30, 31, 0.82);
    backdrop-filter: blur(14px);
}

.relief-crest {
    display: inline-flex;
    align-items: center;
    gap: var(--gutter-snug);
    flex-shrink: 0;
    text-decoration: none;
}

.relief-crest-ring {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    border-radius: var(--bend-circle);
    background: var(--tone-sheet);
    color: var(--tone-copy);
    box-shadow: var(--shadow-tiny);
}

.relief-crest-visual {
    display: block;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.relief-crest-word {
    display: block;
    height: 32px;
    width: auto;
    flex-shrink: 0;
}

.relief-menu-trigger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border: 0;
    border-radius: var(--bend-circle);
    background: rgba(249, 128, 62, 0.16);
    color: var(--tone-punch);
    padding: 0;
}

.relief-dots {
    display: block;
    position: relative;
    width: 5px;
    height: 5px;
    border-radius: var(--bend-circle);
    background: currentColor;
}

.relief-dots::before,
.relief-dots::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: var(--bend-circle);
    background: currentColor;
}

.relief-dots::before {
    inset-inline-start: -9px;
}

.relief-dots::after {
    inset-inline-start: 9px;
}

.relief-bar {
    flex: 0 0 auto;
    margin-inline-start: auto;
}

.relief-stack {
    display: flex;
    align-items: center;
    gap: var(--gutter-wide);
    list-style: none;
    flex-wrap: nowrap;
}

.relief-unit {
    display: flex;
    align-items: center;
    position: relative;
}

.relief-unit[hidden] {
    display: none;
}

.relief-href {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-inline: var(--gutter-tiny);
    border-radius: var(--bend-snug);
    color: var(--tone-subtle);
    font-size: 13px;
    font-weight: 600;
    font-variant-caps: small-caps;
    letter-spacing: var(--letter-spacing-spread);
    text-decoration: none;
    white-space: nowrap;
    transition: background-color var(--dur-brisk) var(--glide-release), color var(--dur-brisk) var(--glide-release);
}

.relief-href:hover {
    background: rgba(249, 128, 62, 0.14);
    color: var(--tone-copy);
}

.relief-href[aria-current='page'] {
    color: var(--tone-punch);
}

.relief-unit-extra {
    position: relative;
}

.relief-extra-trigger {
    display: inline-flex;
    align-items: center;
    gap: var(--gutter-tiny);
    min-height: 44px;
    padding-inline: var(--gutter-tiny);
    border: 0;
    border-radius: var(--bend-snug);
    background: transparent;
    color: var(--tone-subtle);
    font-family: var(--face-reading);
    font-size: 13px;
    font-weight: 600;
    font-variant-caps: small-caps;
    letter-spacing: var(--letter-spacing-spread);
    white-space: nowrap;
}

.relief-extra-trigger:hover {
    background: rgba(249, 128, 62, 0.14);
    color: var(--tone-copy);
}

.relief-extra-trigger[hidden] {
    display: none;
}

.relief-chev {
    display: block;
    width: 0;
    height: 0;
    border-inline: 4px solid transparent;
    border-block-start: 5px solid currentColor;
    transition: transform var(--dur-brisk) var(--glide-release);
}

.relief-extra-trigger[aria-expanded='true'] .relief-chev {
    transform: rotate(180deg);
}

.relief-extra-pane {
    display: none;
    position: absolute;
    inset-block-start: calc(100% + var(--gutter-tiny));
    inset-inline-end: 0;
    z-index: 30;
    min-width: 220px;
    max-height: 70vh;
    overflow-y: auto;
    list-style: none;
    padding: var(--gutter-tiny);
    border-radius: var(--bend-base);
    background: var(--tone-above);
    color: var(--tone-copy);
    box-shadow: var(--shadow-wide);
}

.relief-extra-pane.is-open {
    display: block;
}

.relief-extra-pane .relief-unit {
    display: block;
}

.relief-extra-pane .relief-href {
    display: flex;
    width: 100%;
}

.relief-buttons {
    display: flex;
    align-items: center;
    gap: var(--gutter-snug);
    flex-shrink: 0;
    margin-inline-start: var(--gutter-snug);
}

.relief-flag {
    display: block;
    width: 22px;
    height: 15px;
    flex-shrink: 0;
    border-radius: var(--bend-tiny);
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: #012169;
    background-image:
        linear-gradient(to bottom, transparent 40%, #c8102e 40% 60%, transparent 60%),
        linear-gradient(to right, transparent 38%, #c8102e 38% 62%, transparent 62%),
        linear-gradient(to bottom, transparent 30%, #ffffff 30% 70%, transparent 70%),
        linear-gradient(to right, transparent 28%, #ffffff 28% 72%, transparent 72%),
        linear-gradient(45deg, transparent 45%, #ffffff 45% 55%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, #ffffff 45% 55%, transparent 55%);
}

.relief-button-offer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.34em;
    min-height: 46px;
    padding-inline: var(--gutter-base);
    border: 2px solid var(--tone-punch);
    border-radius: var(--bend-capsule);
    background: var(--tone-anchor);
    color: var(--tone-punch);
    font-family: var(--face-reading);
    font-size: var(--size-fine);
    font-weight: var(--boldness-thick);
    letter-spacing: var(--letter-spacing-spread);
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color var(--dur-brisk) var(--glide-release), color var(--dur-brisk) var(--glide-release);
}

.relief-button-offer:hover {
    background: var(--tone-punch);
    color: var(--tone-sheet);
}

.relief-button-tail {
    display: inline;
}

.relief-flyout {
    display: none;
    position: absolute;
    inset-block-start: calc(100% + var(--gutter-tiny));
    inset-inline: var(--gutter-base);
    z-index: 40;
    max-height: 74vh;
    overflow-y: auto;
    padding: var(--gutter-snug);
    border-radius: var(--bend-wide);
    background: var(--tone-above);
    color: var(--tone-copy);
    box-shadow: var(--shadow-wide);
}

.relief-flyout.is-open {
    display: block;
}

.relief-flyout-stack {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.relief-flyout-unit {
    display: block;
}

.relief-flyout-href {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding-inline: var(--gutter-snug);
    border-radius: var(--bend-snug);
    color: var(--tone-copy);
    font-size: var(--size-h5);
    font-weight: var(--boldness-demi);
    text-decoration: none;
}

.relief-flyout-href:hover {
    background: rgba(249, 128, 62, 0.14);
    color: var(--tone-punch);
}

.relief-flyout-href[aria-current='page'] {
    color: var(--tone-punch);
}

/* ============ 18+ notice — RG-04 ============ */
.avertis {
    display: block;
    text-align: center;
    background: var(--tone-anchor);
    color: var(--tone-copy);
    border-block-start: 3px solid var(--tone-notice);
    border-block-end: 3px solid var(--tone-notice);
    padding-block: var(--gutter-snug);
    padding-inline: var(--width-edge-wide);
    font-size: var(--size-fine);
    line-height: var(--rhythm-even);
}

.avertis-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    padding: 2px var(--gutter-tiny);
    margin-inline-end: var(--gutter-tiny);
    border-radius: var(--bend-capsule);
    background: var(--tone-notice);
    color: var(--tone-copy);
    font-weight: var(--boldness-thick);
    letter-spacing: var(--letter-spacing-spread);
}

.avertis-href {
    color: var(--tone-copy);
    text-decoration: underline;
    text-decoration-color: var(--tone-notice);
    text-decoration-thickness: 2px;
}

.avertis-href:hover {
    color: var(--tone-gradient-light);
    text-decoration-thickness: 3px;
}

/* ============ hero — HERO-04 ============ */
.nef {
    position: relative;
    background: var(--tone-anchor);
    color: var(--tone-copy);
}

.nef-track {
    position: relative;
    list-style: none;
    display: block;
}

.nef-slide {
    display: none;
    position: relative;
    background-color: var(--tone-anchor);
    background-image: url('/archive-54/banner-plus.webp');
    background-size: 112% auto;
    background-position: 50% 46%;
    background-repeat: no-repeat;
    min-height: var(--rlf-slide, 470px);
}

.nef-slide.is-open {
    display: block;
}

.nef-slide-second {
    background-size: 124% auto;
    background-position: 22% 60%;
}

.nef-slide-third {
    background-size: 118% auto;
    background-position: 78% 38%;
}

.nef-veil {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(96deg, rgba(17, 18, 20, 0.94) 0%, rgba(17, 18, 20, 0.86) 42%, rgba(17, 18, 20, 0.44) 100%);
}

.nef-hold {
    position: relative;
    max-width: calc(var(--width-main) + 2 * var(--width-edge-wide));
    margin-inline: auto;
    padding-inline: var(--width-edge-wide);
    padding-block: var(--gutter-roomy);
    min-height: var(--rlf-slide, 470px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: var(--gutter-base);
}

.nef-eye {
    display: inline-block;
    padding: var(--gutter-hair) var(--gutter-snug);
    border-radius: var(--bend-capsule);
    background: var(--tone-sheet);
    color: var(--tone-punch);
    font-size: var(--size-xs);
    font-weight: var(--boldness-thick);
    letter-spacing: var(--letter-spacing-spread);
    text-transform: uppercase;
}

.nef-banner {
    max-width: 22ch;
    font-size: clamp(28px, 4.4vw, 52px);
}

.nef-deck {
    max-width: var(--rlf-narrow);
    color: var(--tone-subtle);
    font-size: var(--size-md-2);
    line-height: var(--rhythm-relaxed);
}

.nef-tag {
    display: block;
    max-width: var(--rlf-narrow);
    color: var(--tone-gradient-light);
    font-family: var(--face-display);
    font-size: var(--size-h2);
    font-weight: var(--boldness-thick);
    line-height: var(--rhythm-tight);
}

.nef-note {
    display: block;
    max-width: var(--rlf-narrow);
    color: var(--tone-subtle);
    font-size: var(--size-fine);
}

.nef-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--gutter-snug);
}

.nef-quiet {
    display: inline-flex;
    align-items: center;
    gap: var(--gutter-tiny);
    min-height: 46px;
    padding-inline: var(--gutter-base);
    border: 2px solid var(--tone-line-strong);
    border-radius: var(--bend-capsule);
    background: var(--tone-anchor);
    color: var(--tone-copy);
    font-size: var(--size-fine);
    font-weight: var(--boldness-thick);
    letter-spacing: var(--letter-spacing-spread);
    text-transform: uppercase;
    text-decoration: none;
}

.nef-quiet:hover {
    background: var(--tone-copy);
    color: var(--tone-sheet);
}

.nef-helm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gutter-snug);
    padding-block: var(--gutter-snug);
    background: var(--tone-anchor);
}

.nef-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--tone-line-strong);
    border-radius: var(--bend-circle);
    background: var(--tone-sheet);
    color: var(--tone-copy);
    font-size: var(--size-h5);
}

.nef-step:hover {
    background: var(--tone-punch);
    color: var(--tone-sheet);
}

.nef-step-back,
.nef-step-on {
    font-family: var(--face-reading);
}

.nef-pips {
    display: flex;
    align-items: center;
    gap: var(--gutter-tiny);
    list-style: none;
}

.nef-pip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: var(--bend-circle);
    background: transparent;
    padding: 0;
}

.nef-pip::before {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border-radius: var(--bend-circle);
    background: var(--tone-subtle);
    transition: background-color var(--dur-brisk) var(--glide-release);
}

.nef-pip[aria-current='true']::before {
    background: var(--tone-punch);
}

/* ============ page header — PHEAD-07 ============ */
.palier {
    background: var(--tone-sheet);
    color: var(--tone-copy);
    padding-block: var(--rlf-sec-y);
    border-block-end: 1px solid var(--tone-line);
}

.palier-hold {
    max-width: calc(var(--width-main) + 2 * var(--width-edge-wide));
    margin-inline: auto;
    padding-inline: var(--width-edge-wide);
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: var(--gutter-wide);
    align-items: start;
}

.palier-index {
    align-self: start;
    font-family: var(--face-display);
    font-weight: var(--boldness-thick);
    font-size: 50px;
    line-height: var(--rhythm-tight);
    color: var(--tone-punch);
}

.palier-meat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gutter-snug);
}

.palier-deck {
    color: var(--tone-subtle);
    font-size: var(--size-md-2);
    line-height: var(--rhythm-relaxed);
}

/* ============ prose — PROSE-21 ============ */
.plaque {
    background: var(--tone-sheet);
    color: var(--tone-copy);
    padding-block: var(--rlf-sec-y);
}

.plaque-hold {
    max-width: calc(var(--width-main) + 2 * var(--width-edge-wide));
    margin-inline: auto;
    padding-inline: var(--width-edge-wide);
}

.plaque-part {
    display: block;
    padding-block-end: var(--gutter-wide);
}

.plaque-heading {
    display: block;
    text-align: right;
    margin-block-start: var(--gutter-wide);
    margin-block-end: var(--gutter-snug);
    padding-block-end: var(--gutter-snug);
    border-block-end: 3px solid var(--tone-punch);
}

.plaque-part:first-child .plaque-heading {
    margin-block-start: 0;
}

.plaque-line {
    margin-block-end: var(--gutter-snug);
    color: var(--tone-subtle);
    font-size: var(--size-body);
    line-height: var(--rhythm-relaxed);
}

.plaque-line strong {
    color: var(--tone-copy);
}

.plaque-line a,
.plaque-stack a {
    color: var(--tone-punch);
    text-decoration: underline;
}

.plaque-stack {
    list-style: none;
    margin-block-end: var(--gutter-snug);
    display: flex;
    flex-direction: column;
    gap: var(--gutter-tiny);
}

.plaque-stack-order {
    counter-reset: plaque-step;
}

.plaque-unit {
    position: relative;
    padding-inline-start: var(--gutter-base);
    color: var(--tone-subtle);
    line-height: var(--rhythm-relaxed);
}

.plaque-unit::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    inset-block-start: 9px;
    width: 7px;
    height: 7px;
    border-radius: var(--bend-tiny);
    background: var(--tone-punch);
}

.plaque-stack-order .plaque-unit {
    padding-inline-start: var(--gutter-wide);
    counter-increment: plaque-step;
}

.plaque-stack-order .plaque-unit::before {
    content: counter(plaque-step) '.';
    inset-block-start: 0;
    width: auto;
    height: auto;
    background: transparent;
    color: var(--tone-punch);
    font-weight: var(--boldness-thick);
}

.plaque-figure {
    display: block;
    margin: 0;
    margin-block: var(--gutter-base);
    background: var(--tone-sheet);
}

.plaque-visual {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 52vh;
    margin-inline: auto;
    border-radius: var(--bend-base);
}

.plaque-pitch {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--gutter-snug);
    margin-block: var(--gutter-base);
    padding: var(--gutter-base);
    border-radius: var(--bend-base);
    background: var(--tone-above);
    color: var(--tone-copy);
    box-shadow: var(--shadow-tiny);
}

.plaque-pitch-note {
    flex: 1 1 260px;
    color: var(--tone-subtle);
    font-size: var(--size-fine);
    line-height: var(--rhythm-even);
}

/* ============ items grid — GRID-08 ============ */
.linteau {
    background: var(--tone-sheet);
    color: var(--tone-copy);
    padding-block: var(--rlf-sec-y);
}

.linteau-hold {
    max-width: calc(var(--width-main) + 2 * var(--width-edge-wide));
    margin-inline: auto;
    padding-inline: var(--width-edge-wide);
}

.linteau-heading {
    margin-block-end: var(--gutter-wide);
}

.linteau-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gutter-base);
    align-items: start;
}

.linteau-brick {
    display: flex;
    flex-direction: column;
    gap: var(--gutter-snug);
    padding: var(--gutter-base);
    border-block-start: 4px solid var(--tone-punch);
    border-radius: 0 0 var(--bend-base) var(--bend-base);
    background: var(--tone-above);
    color: var(--tone-copy);
    box-shadow: var(--shadow-snug);
}

.linteau-sign {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border: 1px solid var(--tone-line-strong);
    border-radius: var(--bend-snug);
    background: #2b1610;
    color: var(--tone-punch);
}

.linteau-sign svg {
    display: block;
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.linteau-heading-unit {
    font-size: var(--size-sub);
}

.linteau-line {
    color: var(--tone-subtle);
    line-height: var(--rhythm-relaxed);
}

/* ============ reviews — REV-01 ============ */
.registre {
    background: var(--tone-sheet);
    color: var(--tone-copy);
    padding-block: var(--rlf-sec-y);
}

.registre-hold {
    max-width: calc(var(--width-main) + 2 * var(--width-edge-wide));
    margin-inline: auto;
    padding-inline: var(--width-edge-wide);
}

.registre-heading {
    margin-block-end: var(--gutter-wide);
}

.registre-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gutter-base);
    align-items: start;
}

.registre-unit {
    display: flex;
    flex-direction: column;
    gap: var(--gutter-snug);
    padding: var(--gutter-base);
    border: 1px solid var(--tone-line);
    border-radius: var(--bend-base);
    background: var(--tone-above);
    color: var(--tone-copy);
}

.registre-crown {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--gutter-tiny);
}

.registre-who {
    font-weight: var(--boldness-thick);
    color: var(--tone-copy);
}

.registre-score {
    color: var(--tone-punch);
    font-size: var(--size-fine);
    font-weight: var(--boldness-thick);
}

.registre-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    width: fit-content;
    align-self: flex-start;
    color: var(--tone-punch);
    font-size: var(--size-h5);
    letter-spacing: 1px;
}

.registre-quote {
    margin: 0;
    color: var(--tone-subtle);
    line-height: var(--rhythm-relaxed);
}

/* ============ faq — FAQ-04 ============ */
.ardoise {
    background: var(--tone-sheet);
    color: var(--tone-copy);
    padding-block: var(--rlf-sec-y);
}

.ardoise-hold {
    max-width: calc(var(--width-main) + 2 * var(--width-edge-wide));
    margin-inline: auto;
    padding-inline: var(--width-edge-wide);
}

.ardoise-heading {
    margin-block-end: var(--gutter-wide);
}

.ardoise-stack {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--gutter-snug);
}

.ardoise-unit {
    display: block;
    border-block-end: 1px solid var(--tone-line);
    background: var(--tone-sheet);
    color: var(--tone-copy);
}

.ardoise-ask {
    display: grid;
    grid-template-columns: 60px 1fr 30px;
    gap: var(--gutter-snug);
    align-items: start;
    padding-block: var(--gutter-snug);
    cursor: pointer;
    list-style: none;
}

.ardoise-ask::-webkit-details-marker {
    display: none;
}

.ardoise-tally {
    font-family: var(--face-display);
    font-weight: var(--boldness-thick);
    font-size: var(--size-sub);
    color: var(--tone-punch);
    align-self: start;
}

.ardoise-heading-ask {
    font-size: var(--size-md-2);
    color: var(--tone-copy);
}

.ardoise-arrow {
    display: block;
    justify-self: end;
    align-self: start;
    margin-block-start: 6px;
    width: 0;
    height: 0;
    border-inline: 6px solid transparent;
    border-block-start: 7px solid var(--tone-punch);
    transition: transform var(--dur-mid) var(--glide-both);
}

.ardoise-unit[open] .ardoise-arrow {
    transform: rotate(180deg);
}

.ardoise-meat {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--gutter-snug);
    padding-block-end: var(--gutter-base);
}

.ardoise-line {
    grid-column: 2;
    color: var(--tone-subtle);
    line-height: var(--rhythm-relaxed);
}

/* ============ data table — TABLE-04 ============ */
.module {
    background: var(--tone-sheet);
    color: var(--tone-copy);
    padding-block: var(--rlf-sec-y);
}

.module-hold {
    max-width: calc(var(--width-main) + 2 * var(--width-edge-wide));
    margin-inline: auto;
    padding-inline: var(--width-edge-wide);
}

.module-heading {
    margin-block-end: var(--gutter-base);
}

.module-scroll {
    display: block;
    overflow-x: auto;
    border-radius: var(--bend-base);
    border: 1px solid var(--tone-line);
}

.module-grid {
    width: 100%;
    background: var(--tone-above);
    color: var(--tone-copy);
    font-size: var(--size-fine);
}

.module-grid thead th {
    background: var(--tone-anchor);
    color: var(--tone-copy);
    text-align: start;
    font-weight: var(--boldness-thick);
    padding: var(--gutter-snug) var(--gutter-base);
}

.module-grid thead th + th {
    background: #17181a;
    color: var(--tone-copy);
}

.module-grid tbody td {
    padding: var(--gutter-snug) var(--gutter-base);
    border-block-start: 1px solid var(--tone-line);
    background: var(--tone-above);
    color: var(--tone-subtle);
    vertical-align: top;
}

.module-grid tbody td:first-child {
    background: var(--tone-anchor);
    color: var(--tone-copy);
    font-weight: var(--boldness-thick);
    border-inline-end: 4px solid var(--tone-punch);
}

.module-caption {
    display: block;
    margin-block-start: var(--gutter-snug);
    color: var(--tone-subtle);
    font-size: var(--size-xs);
}

/* ============ cta block — CTA-04 ============ */
.planche {
    background: var(--tone-sheet);
    color: var(--tone-copy);
    padding-block: var(--rlf-sec-y);
}

.planche-hold {
    max-width: calc(var(--width-main) + 2 * var(--width-edge-wide));
    margin-inline: auto;
    padding-inline: var(--width-edge-wide);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gutter-snug);
}

.planche-heading {
    font-size: var(--size-md-2);
    font-weight: var(--boldness-thick);
}

.planche-line {
    color: var(--tone-subtle);
    line-height: var(--rhythm-relaxed);
}

.planche-note {
    color: var(--tone-subtle);
    font-size: var(--size-xs);
}

/* ============ legal — LEGAL-03 ============ */
.coffre {
    background: var(--tone-sheet);
    color: var(--tone-copy);
    padding-block: var(--rlf-sec-y);
}

.coffre-hold {
    max-width: calc(var(--width-main) + 2 * var(--width-edge-wide));
    margin-inline: auto;
    padding-inline: var(--width-edge-wide);
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--gutter-roomy);
    align-items: start;
}

.coffre-guide {
    position: sticky;
    inset-block-start: 130px;
    align-self: start;
    padding: var(--gutter-base);
    border-radius: var(--bend-base);
    background: var(--tone-above);
    color: var(--tone-copy);
    font-size: var(--size-fine);
}

.coffre-heading-guide {
    margin-block-end: var(--gutter-snug);
    font-size: var(--size-micro-head);
    color: var(--tone-copy);
}

.coffre-index {
    list-style: none;
    counter-reset: coffre-step;
    display: flex;
    flex-direction: column;
    gap: var(--gutter-tiny);
}

.coffre-unit {
    counter-increment: coffre-step;
    display: block;
}

.coffre-href {
    color: var(--tone-subtle);
    text-decoration: none;
}

.coffre-href::before {
    content: counter(coffre-step) '. ';
    color: var(--tone-punch);
}

.coffre-href:hover {
    color: var(--tone-punch);
}

.coffre-meat {
    display: flex;
    flex-direction: column;
    gap: var(--gutter-base);
}

.coffre-part {
    display: block;
}

.coffre-heading-part {
    margin-block-end: var(--gutter-snug);
    font-size: var(--size-sub);
}

.coffre-line {
    margin-block-end: var(--gutter-snug);
    color: var(--tone-subtle);
    line-height: var(--rhythm-relaxed);
}

.coffre-stack {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--gutter-tiny);
    margin-block-end: var(--gutter-snug);
}

.coffre-stack .coffre-unit {
    position: relative;
    padding-inline-start: var(--gutter-base);
    color: var(--tone-subtle);
    line-height: var(--rhythm-relaxed);
}

.coffre-stack .coffre-unit::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    inset-block-start: 9px;
    width: 7px;
    height: 7px;
    border-radius: var(--bend-tiny);
    background: var(--tone-punch);
}

.coffre-fine {
    padding: var(--gutter-base);
    border-inline-start: 3px solid var(--tone-notice);
    border-radius: 0 var(--bend-snug) var(--bend-snug) 0;
    background: var(--tone-above);
    color: var(--tone-subtle);
    font-size: var(--size-fine);
    line-height: var(--rhythm-relaxed);
}

/* ============ contact form — FORM-04 ============ */
.quai {
    background: var(--tone-sheet);
    color: var(--tone-copy);
    padding-block: var(--gutter-wide);
}

.quai-hold {
    max-width: calc(var(--width-main) + 2 * var(--width-edge-wide));
    margin-inline: auto;
    padding-inline: var(--width-edge-wide);
}

.quai-heading {
    margin-block-end: var(--gutter-snug);
}

.quai-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: var(--gutter-snug);
}

.quai-field {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    gap: var(--gutter-hair);
}

.quai-field-wide {
    flex: 1 1 100%;
}

.quai-badge {
    color: var(--tone-subtle);
    font-size: var(--size-xs);
    letter-spacing: var(--letter-spacing-spread);
    text-transform: uppercase;
}

.quai-input,
.quai-area {
    width: 100%;
    padding: var(--gutter-snug);
    border: 1px solid var(--tone-line-strong);
    border-radius: var(--bend-snug);
    background: var(--tone-above);
    color: var(--tone-copy);
    font-family: var(--face-reading);
    font-size: var(--size-body);
}

.quai-area {
    min-height: 96px;
    resize: vertical;
}

.quai-send {
    flex: 0 0 auto;
    min-height: 46px;
    padding-inline: var(--gutter-base);
    border: 0;
    border-radius: var(--bend-capsule);
    background: var(--tone-punch);
    color: var(--tone-sheet);
    font-family: var(--face-reading);
    font-size: var(--size-fine);
    font-weight: var(--boldness-thick);
    letter-spacing: var(--letter-spacing-spread);
    text-transform: uppercase;
}

.quai-send:hover {
    background: var(--tone-press);
    color: var(--tone-sheet);
}

.quai-done {
    display: none;
    margin-block-start: var(--gutter-snug);
    padding: var(--gutter-snug) var(--gutter-base);
    border-radius: var(--bend-snug);
    background: var(--tone-above);
    color: var(--tone-copy);
}

.quai-done.is-open {
    display: block;
}

/* ============ author card — AUTH-01 ============ */
.medaillon {
    background: var(--tone-sheet);
    color: var(--tone-copy);
    padding-block: var(--rlf-sec-y);
}

.medaillon-hold {
    max-width: calc(var(--width-main) + 2 * var(--width-edge-wide));
    margin-inline: auto;
    padding-inline: var(--width-edge-wide);
}

.medaillon-brick {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: var(--gutter-roomy);
    padding: var(--gutter-wide);
    border-radius: var(--bend-wide);
    background: var(--tone-above);
    color: var(--tone-copy);
    box-shadow: var(--shadow-snug);
}

.medaillon-shot {
    width: 160px;
    height: 160px;
    border-radius: var(--bend-circle);
    overflow: hidden;
    background: var(--tone-above);
}

.medaillon-shot img {
    display: block;
    width: 160px;
    height: 160px;
    object-fit: cover;
    object-position: center top;
}

.medaillon-meat {
    display: flex;
    flex-direction: column;
    gap: var(--gutter-snug);
}

.medaillon-job {
    color: var(--tone-punch);
    font-size: var(--size-fine);
    font-weight: var(--boldness-demi);
    letter-spacing: var(--letter-spacing-spread);
    text-transform: uppercase;
}

.medaillon-who {
    font-size: var(--size-h2);
}

.medaillon-line {
    color: var(--tone-subtle);
    line-height: var(--rhythm-relaxed);
}

.medaillon-skills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gutter-tiny);
    list-style: none;
}

.medaillon-skill {
    display: inline-block;
    padding: var(--gutter-hair) var(--gutter-snug);
    border-radius: var(--bend-capsule);
    background: var(--tone-anchor);
    color: var(--tone-copy);
    font-size: var(--size-xs);
    letter-spacing: var(--letter-spacing-spread);
    text-transform: uppercase;
}

.medaillon-articles {
    margin-block-start: var(--gutter-wide);
}

.medaillon-heading-articles {
    margin-block-end: var(--gutter-snug);
    font-size: var(--size-sub);
}

.medaillon-stack {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gutter-snug);
}

.medaillon-unit {
    display: block;
    padding: var(--gutter-snug) var(--gutter-base);
    border-inline-start: 3px solid var(--tone-punch);
    border-radius: 0 var(--bend-snug) var(--bend-snug) 0;
    background: var(--tone-above);
    color: var(--tone-copy);
}

.medaillon-unit-lead {
    border-inline-start-color: var(--tone-gradient-light);
}

.medaillon-href {
    color: var(--tone-copy);
    font-size: var(--size-fine);
    text-decoration: none;
}

.medaillon-href:hover {
    color: var(--tone-punch);
    text-decoration: underline;
}

/* ============ byline — BYLINE-06 ============ */
.annexe {
    display: block;
    background: var(--tone-sheet);
    color: var(--tone-copy);
    padding-block: var(--gutter-base);
    border-block-start: 1px solid var(--tone-line);
}

.annexe-hold {
    max-width: calc(var(--width-main) + 2 * var(--width-edge-wide));
    margin-inline: auto;
    padding-inline: var(--width-edge-wide);
    display: flex;
    align-items: center;
    gap: var(--gutter-base);
}

.annexe-line {
    flex: 1 1 auto;
    color: var(--tone-subtle);
    font-size: var(--size-fine);
    font-style: italic;
}

.annexe-who {
    color: var(--tone-punch);
    text-decoration: underline;
}

.annexe-who:hover {
    text-decoration-thickness: 2px;
}

.annexe-mark {
    color: var(--tone-subtle);
    padding-inline: 4px;
}

.annexe-duty {
    color: var(--tone-subtle);
}

.annexe-shot {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--bend-circle);
    object-fit: cover;
    background: var(--tone-sheet);
}

/* ============ footer — FOOT-03 ============ */
.bandeau {
    flex: 0 0 auto;
    background: var(--tone-anchor);
    color: var(--tone-copy);
    padding-block: var(--gutter-roomy);
    border-block-start: 3px solid var(--tone-punch);
}

.bandeau-frame {
    max-width: calc(var(--width-main) + 2 * var(--width-edge-wide));
    margin-inline: auto;
    padding-inline: var(--width-edge-wide);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gutter-wide);
    text-align: center;
}

.bandeau-crest {
    display: inline-block;
}

.bandeau-crest img {
    display: block;
    width: auto;
    height: 72px;
}

.bandeau-bar {
    width: 100%;
}

.bandeau-stack {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gutter-wide);
}

.bandeau-unit {
    display: block;
}

.bandeau-href {
    color: var(--tone-copy);
    font-family: var(--face-display);
    font-size: var(--size-body);
    font-weight: var(--boldness-demi);
    text-decoration: none;
}

.bandeau-href:hover {
    color: var(--tone-punch);
}

.bandeau-deck {
    max-width: var(--rlf-narrow);
    color: var(--tone-subtle);
    font-size: var(--size-fine);
    line-height: var(--rhythm-relaxed);
}

.bandeau-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--gutter-snug);
}

.bandeau-legal-href {
    color: var(--tone-subtle);
    font-size: var(--size-xs);
    letter-spacing: var(--letter-spacing-spread);
    text-transform: uppercase;
    text-decoration: none;
}

.bandeau-legal-href:hover {
    color: var(--tone-punch);
}

.bandeau-dot {
    color: var(--tone-punch);
    font-size: var(--size-xs);
}

.bandeau-pitch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gutter-snug);
    width: 100%;
    padding: var(--gutter-base);
    border-radius: var(--bend-wide);
    background: var(--tone-sheet);
    color: var(--tone-copy);
}

.bandeau-pitch-note {
    color: var(--tone-subtle);
    font-size: var(--size-xs);
}

.bandeau-fine {
    color: var(--tone-subtle);
    font-size: var(--size-xs);
}

.bandeau-top {
    color: var(--tone-subtle);
    font-size: var(--size-xs);
    letter-spacing: var(--letter-spacing-spread);
    text-transform: uppercase;
    text-decoration: none;
}

.bandeau-top:hover {
    color: var(--tone-punch);
}

/* ============ cookie banner — COOK-04 ============ */
.etiquette-veil {
    position: fixed;
    inset: 0;
    z-index: 89;
    display: none;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.4);
}

.etiquette-veil.is-open {
    display: block;
}

.etiquette {
    position: fixed;
    inset-block-end: 0;
    inset-inline: 0;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    background: var(--tone-sheet);
    color: var(--tone-copy);
    border-block-start: 4px solid var(--tone-punch);
    padding-block: var(--gutter-base);
    transform: translateX(0);
    transition: opacity var(--dur-long) var(--glide-release), visibility var(--dur-long) var(--glide-release), transform var(--dur-long) var(--glide-release);
}

.etiquette.is-open {
    opacity: 1;
    visibility: visible;
}

.etiquette.is-gone {
    opacity: 0;
    visibility: hidden;
    transform: translateX(120vw);
}

.etiquette-frame {
    max-width: calc(var(--width-main) + 2 * var(--width-edge-wide));
    margin-inline: auto;
    padding-inline: var(--width-edge-wide);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gutter-snug);
    text-align: center;
}

.etiquette-heading {
    font-size: var(--size-md-2);
}

.etiquette-note {
    max-width: var(--rlf-narrow);
    color: var(--tone-subtle);
    font-size: var(--size-fine);
    line-height: var(--rhythm-relaxed);
}

.etiquette-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gutter-base);
}

.etiquette-yes,
.etiquette-decline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding-inline: var(--gutter-wide);
    border-radius: var(--bend-capsule);
    font-family: var(--face-reading);
    font-size: var(--size-fine);
    font-weight: var(--boldness-thick);
    letter-spacing: var(--letter-spacing-spread);
    text-transform: uppercase;
}

.etiquette-yes {
    border: 0;
    background: var(--tone-punch);
    color: var(--tone-sheet);
}

.etiquette-yes:hover {
    background: var(--tone-press);
    color: var(--tone-sheet);
}

.etiquette-decline {
    border: 2px solid var(--tone-line-strong);
    background: var(--tone-above);
    color: var(--tone-copy);
}

.etiquette-decline:hover {
    background: var(--tone-copy);
    color: var(--tone-sheet);
}

/* ============ error — ERR-04 ============ */
.balise {
    position: relative;
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    min-height: clamp(480px, calc(100vh - 220px), 760px);
    background-color: var(--tone-anchor);
    background-image: url('/archive-54/banner-plus.webp');
    background-size: cover;
    background-position: center;
    color: var(--tone-copy);
}

.balise-veil {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(17, 18, 20, 0.72) 0%, rgba(17, 18, 20, 0.92) 100%);
}

.balise-hold {
    position: relative;
    width: 100%;
    max-width: calc(var(--width-main) + 2 * var(--width-edge-wide));
    margin-inline: auto;
    padding-inline: var(--width-edge-wide);
    padding-block: var(--gutter-roomy);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gutter-base);
    text-align: center;
}

.balise-banner {
    max-width: var(--rlf-narrow);
    font-size: clamp(30px, 6vw, 58px);
}

.balise-line {
    max-width: var(--rlf-narrow);
    color: var(--tone-subtle);
    line-height: var(--rhythm-relaxed);
}

.balise-back {
    display: inline-flex;
    align-items: center;
    gap: var(--gutter-tiny);
    min-height: 46px;
    padding-inline: var(--gutter-base);
    border-radius: var(--bend-capsule);
    background: var(--tone-punch);
    color: var(--tone-sheet);
    font-size: var(--size-fine);
    font-weight: var(--boldness-thick);
    letter-spacing: var(--letter-spacing-spread);
    text-transform: uppercase;
    text-decoration: none;
}

.balise-back:hover {
    background: var(--tone-press);
    color: var(--tone-sheet);
}

/* ============ tablet ============ */
@media (max-width: 1199px) {
    .relief-stack {
        gap: var(--gutter-snug);
    }

    .relief-pill {
        padding-inline: var(--gutter-base);
        gap: var(--gutter-snug);
    }

    .relief-button-offer {
        padding-inline: var(--gutter-snug);
        font-size: var(--size-xs);
    }

    .relief-href,
    .relief-extra-trigger {
        padding-inline: var(--gutter-hair);
    }

    .linteau-stack,
    .registre-stack,
    .medaillon-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .coffre-hold {
        gap: var(--gutter-wide);
    }
}

@media (max-width: 939px) {
    :root {
        --rlf-sec-y: 34px;
        --rlf-slide: 400px;
    }

    .relief-pill {
        height: 62px;
        padding-inline: var(--gutter-snug);
    }

    .relief-crest-ring {
        width: 46px;
        height: 46px;
    }

    .relief-crest-visual {
        width: 28px;
        height: 28px;
    }

    .relief-crest-word {
        height: 24px;
    }

    .relief-menu-trigger {
        display: inline-flex;
        order: 4;
        margin-inline-start: 0;
    }

    .relief-bar {
        display: none;
    }

    .relief-buttons {
        order: 3;
        margin-inline-start: auto;
    }

    .relief-flag {
        display: none;
    }

    .palier-hold {
        grid-template-columns: 74px 1fr;
        gap: var(--gutter-base);
    }

    .palier-index {
        font-size: 34px;
    }

    .coffre-hold {
        grid-template-columns: 1fr;
    }

    .coffre-guide {
        position: static;
    }

    .medaillon-brick {
        grid-template-columns: 1fr;
        gap: var(--gutter-base);
        justify-items: center;
        text-align: center;
    }

    .medaillon-shot,
    .medaillon-shot img {
        width: 120px;
        height: 120px;
    }

    .medaillon-meat {
        align-items: center;
    }

    .medaillon-skills {
        justify-content: center;
    }
}

/* ============ mobile ============ */
@media (max-width: 719px) {
    .etiquette,
    .etiquette-frame {
        padding: 12px 14px !important;
        gap: 8px !important;
        font-size: 13px !important;
        line-height: 1.35 !important;
    }

    .etiquette-heading {
        display: none !important;
    }

    .etiquette-yes,
    .etiquette-decline {
        padding: 8px 14px !important;
        font-size: 12px !important;
        min-height: 40px !important;
    }
}

@media (max-width: 619px) {
    :root {
        --size-xxl: 26px;
        --size-h2: 22px;
        --size-sub: 18px;
        --size-md-2: 16px;
        --size-h5: 13px;
        --size-micro-head: 11px;
        --size-body: 14px;
        --size-fine: 12px;
        --size-xs: 10px;
        --rlf-slide: 380px;
    }

    .relief-frame {
        padding-inline: var(--width-edge-narrow);
    }

    .relief-button-offer {
        padding-inline: var(--gutter-snug);
        font-size: 11px;
        letter-spacing: 0.2px;
    }

    .relief-flyout {
        inset-inline: var(--width-edge-narrow);
    }

    .nef-hold {
        padding-block: var(--gutter-wide);
    }

    .nef-banner {
        max-width: 100%;
    }

    .linteau-stack,
    .registre-stack,
    .medaillon-stack {
        grid-template-columns: minmax(0, 1fr);
    }

    .ardoise-ask {
        grid-template-columns: 34px 1fr 24px;
        gap: var(--gutter-tiny);
    }

    .ardoise-meat {
        grid-template-columns: 34px 1fr;
        gap: var(--gutter-tiny);
    }

    .plaque-heading {
        text-align: left;
    }

    .module-grid {
        font-size: var(--size-xs);
    }

    .module-grid thead th,
    .module-grid tbody td {
        padding: var(--gutter-tiny) var(--gutter-tiny);
    }

    .module-grid tbody td:first-child {
        border-inline-end-width: 3px;
    }

    .plaque-visual {
        max-height: 42vh;
    }

    .quai-field {
        flex: 1 1 100%;
    }

    .quai-send {
        flex: 1 1 100%;
    }

    .bandeau-crest img {
        height: 52px;
    }

    .bandeau-stack {
        gap: var(--gutter-snug);
    }

    .etiquette-buttons {
        flex-direction: column;
        width: 100%;
    }

    .etiquette-yes,
    .etiquette-decline {
        width: 100%;
        white-space: normal;
    }
}

@media (max-width: 479px) {
    .relief-button-tail {
        display: none;
    }
}

/* ============ motion off ============ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    body {
        animation: none;
        opacity: 1;
    }
}

/* ============ offer button — cta-style.mjs (domain-rolled) ============ */
.retable-act {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.34em;
    padding: 0 var(--gutter-base);
    min-height: 46px;
    border-radius: var(--bend-capsule);
    border: 2px solid var(--tone-punch);
    font-family: var(--face-reading);
    font-size: var(--size-fine);
    font-weight: var(--boldness-thick);
    letter-spacing: var(--letter-spacing-spread);
}

.retable-act {
    position: relative;
    background: #0284c7;
    color: #111214;
    text-decoration: none;
    text-transform: uppercase;
    transition: background var(--dur-mid) var(--glide-release), transform var(--dur-mid) var(--glide-release);
}

.retable-act.retable-act {
    color: #111214;
    text-decoration: none;
}

.retable-act:hover {
    background: #0369a1;
    color: #ffffff;
    animation: none;
}

.retable-act.retable-act:hover {
    color: #ffffff;
    text-decoration: none;
}

.retable-act:hover::after {
    animation: none;
}

.retable-act:active {
    background: #075985;
    color: #ffffff;
}

.retable-act:focus-visible {
    outline: 3px solid #111214;
    outline-offset: 3px;
}

@keyframes retable-drift {
    0%,
    100% {
        transform: scaleX(0);
    }
    40%,
    60% {
        transform: scaleX(1);
    }
}

.retable-act::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 6px;
    height: 2px;
    background: currentColor;
    opacity: 0.5;
    transform-origin: left;
    animation: retable-drift 1.6s linear infinite;
}

.retable-act-late::after {
    animation-delay: -1.15s;
}

@media (prefers-reduced-motion: reduce) {
    .retable-act,
    .retable-act::after {
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 509px) {
  .relief-bar,
  .relief-stack { display: none !important; }
  .relief-extra-trigger { display: flex !important; }
}
