/* ==========================================================================
   Casino Days — brand-cool.css
   Design system: TYPO-03 · SPACE-07 · CONT-02 · BP-03 · GEO-09 · MOTION-01 · NAME-06
   ========================================================================== */

/* Design tokens */
:root {
    --theme-primary: #15162a;
    --theme-accent-color: #524acb;
    --theme-accent-active: #4338ba;
    --theme-bg: #FFFFFF;
    --theme-surface-2: #f6f6fa;
    --theme-gradient-start: #b3b2e7;
    --theme-gradient-to: #7b74d6;
    --theme-text-color: #1e2735;
    --theme-ink-soft: #000000;
    --theme-warning-bg: #dc2626;

    --theme-font-heading: "Open Sans", system-ui, -apple-system, sans-serif;
    --theme-font-base: "Open Sans", system-ui, -apple-system, sans-serif;

    --theme-size-h1: 80px;
    --theme-text-h2: 48px;
    --theme-fs-h3: 30px;
    --theme-type-h4: 22px;
    --theme-size-h5: 16px;
    --theme-text-h6: 13px;
    --theme-type-body: 15px;
    --theme-fs-small: 13px;
    --theme-text-xs: 11px;

    --theme-leading-tight: 0.95;
    --theme-line-normal: 1.45;
    --theme-lh-loose: 1.65;

    --theme-tracking-tight: -0.04em;
    --theme-ls-normal: 0;
    --theme-tracking-wide: 0.08em;

    --theme-font-normal: 400;
    --theme-fw-medium: 700;
    --theme-weight-bold: 900;

    --theme-gutter-2xs: 3px;
    --theme-spacing-xs: 8px;
    --theme-gutter-sm: 13px;
    --theme-spacing-md: 21px;
    --theme-spacing-lg: 34px;
    --theme-gutter-xl: 55px;
    --theme-gap-2xl: 89px;
    --theme-gap-3xl: 144px;

    --theme-wrapper: 1420px;
    --theme-readable-width: 720px;
    --theme-edge-mobile: 16px;
    --theme-container-padding-tablet: 24px;
    --theme-edge-desktop: 40px;

    --theme-corner-xs: 2px;
    --theme-radius-sm: 8px;
    --theme-round-md: 14px;
    --theme-corner-lg: 22px;
    --theme-pill: 9999px;
    --theme-round-circle: 50%;

    --theme-shadow-xs: 0 0 0 1px rgba(21, 22, 42, 0.06) inset;
    --theme-depth-sm: 0 4px 12px rgba(21, 22, 42, 0.10), 0 0 0 1px rgba(21, 22, 42, 0.06) inset;
    --theme-shade-md: 0 8px 24px rgba(21, 22, 42, 0.14), 0 0 0 1px rgba(21, 22, 42, 0.07) inset;
    --theme-shade-lg: 0 16px 48px rgba(21, 22, 42, 0.20), 0 0 0 1px rgba(21, 22, 42, 0.08) inset;

    --theme-stroke-thin: 1px;
    --theme-border-medium: 2px;
    --theme-border-thick: 3px;

    --theme-transition-fast: 120ms;
    --theme-duration-base: 150ms;
    --theme-speed-slow: 200ms;
    --theme-easing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --theme-ease-in: cubic-bezier(0.55, 0.06, 0.68, 0.19);
    --theme-ease-in-out: cubic-bezier(0.45, 0.05, 0.55, 0.95);

    --theme-header-height-desktop: 56px;
    --theme-nav-h-mobile: 56px;
}

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

html,
body {
    overflow-x: clip;
}

body {
    margin: 0;
    background: var(--theme-bg);
    color: var(--theme-text-color);
    font-family: var(--theme-font-base);
    font-size: var(--theme-type-body);
    font-weight: var(--theme-font-normal);
    line-height: var(--theme-line-normal);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--theme-accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}

/* HARD CSS CANON */
.skip-link:not(:focus) {
    top: -200px !important;
}

.veilleuse-bas-logo,
.veilleuse-bas-logo img {
    flex-shrink: 0;
}

.veilleuse-bas-bar {
    max-width: 1440px;
    padding-inline: var(--theme-spacing-md);
}

.veilleuse-bas-toggle {
    margin-left: auto !important;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.skip-link {
    position: absolute;
    left: var(--theme-spacing-md);
    top: var(--theme-spacing-md);
    z-index: 200;
    padding: var(--theme-spacing-xs) var(--theme-spacing-md);
    background: var(--theme-primary);
    color: #ffffff;
    border-radius: var(--theme-radius-sm);
    font-family: var(--theme-font-base);
    font-weight: var(--theme-fw-medium);
    text-decoration: none;
}

.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;
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.section-inner {
    width: 100%;
    max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
    margin-inline: auto;
    padding-inline: var(--theme-edge-desktop);
}

.prose-narrow {
    max-width: var(--theme-readable-width);
}

/* ==========================================================================
   Responsible-gaming banner
   ========================================================================== */

.rg-banner {
    margin: 0;
    padding: 6px var(--theme-edge-desktop);
    background: var(--theme-warning-bg);
    color: #ffffff;
    font-size: var(--theme-text-xs);
    font-weight: var(--theme-fw-medium);
    letter-spacing: var(--theme-tracking-wide);
    text-align: center;
    text-transform: uppercase;
}

/* ==========================================================================
   amphitheatre-raffine — cta-block CTA-02
   ========================================================================== */

.amphitheatre-raffine {
    padding-block: var(--theme-gutter-xl);
    background: var(--theme-bg);
}

.amphitheatre-raffine-inner {
    width: 100%;
    max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
    margin-inline: auto;
    padding-inline: var(--theme-edge-desktop);
}

.amphitheatre-raffine-box {
    max-width: var(--theme-readable-width);
    margin-inline: auto;
    padding: var(--theme-gap-2xl);
    background: rgba(21, 22, 42, 0.04);
    border: var(--theme-stroke-thin) solid rgba(21, 22, 42, 0.08);
    border-radius: var(--theme-corner-lg);
    text-align: center;
}

.amphitheatre-raffine-title {
    font-family: var(--theme-font-heading);
    font-size: var(--theme-text-h2);
    font-weight: var(--theme-fw-medium);
    letter-spacing: var(--theme-tracking-tight);
    line-height: var(--theme-leading-tight);
    text-transform: uppercase;
    color: var(--theme-text-color);
}

.amphitheatre-raffine-description {
    margin-block: var(--theme-spacing-md);
    font-family: var(--theme-font-base);
    font-size: var(--theme-type-body);
    line-height: var(--theme-lh-loose);
    color: var(--theme-ink-soft);
}

.amphitheatre-raffine-button {
    display: inline-block;
    min-height: 52px;
    padding: 15px var(--theme-gutter-xl);
    background: var(--theme-accent-color);
    color: #ffffff;
    font-family: var(--theme-font-heading);
    font-size: var(--theme-text-h6);
    font-weight: var(--theme-weight-bold);
    letter-spacing: var(--theme-tracking-wide);
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--theme-round-md);
    transition: background var(--theme-transition-fast) var(--theme-easing);
}

.amphitheatre-raffine-button:hover {
    background: var(--theme-accent-active);
    color: #ffffff;
}

/* ==========================================================================
   ambon-voile — prose PROSE-01
   ========================================================================== */

.ambon-voile {
    padding-block: var(--theme-gutter-xl);
    background: var(--theme-bg);
}

.ambon-voile-inner {
    width: 100%;
    max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
    margin-inline: auto;
    padding-inline: var(--theme-edge-desktop);
}

.ambon-voile-body {
    max-width: var(--theme-readable-width);
}

.ambon-voile-heading {
    margin-top: var(--theme-gap-2xl);
    margin-bottom: var(--theme-spacing-md);
    font-family: var(--theme-font-heading);
    font-size: var(--theme-text-h2);
    font-weight: var(--theme-fw-medium);
    letter-spacing: var(--theme-tracking-tight);
    line-height: var(--theme-leading-tight);
    text-transform: uppercase;
    color: var(--theme-text-color);
}

.ambon-voile-body > .ambon-voile-heading:first-child {
    margin-top: 0;
}

.ambon-voile-text {
    margin-bottom: var(--theme-spacing-md);
    font-family: var(--theme-font-base);
    font-size: var(--theme-type-body);
    line-height: var(--theme-lh-loose);
    color: var(--theme-text-color);
}

.ambon-voile-text a {
    color: var(--theme-accent-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: text-decoration-thickness var(--theme-transition-fast) var(--theme-easing);
}

.ambon-voile-text a:hover {
    color: var(--theme-accent-active);
    text-decoration-thickness: 2px;
}

.ambon-voile-text strong {
    font-weight: var(--theme-weight-bold);
    color: var(--theme-text-color);
}

.ambon-voile-text em {
    font-style: italic;
    color: var(--theme-text-color);
}

.ambon-voile-list {
    max-width: var(--theme-readable-width);
    margin-bottom: var(--theme-spacing-md);
    padding-left: var(--theme-spacing-lg);
    list-style: disc;
    font-family: var(--theme-font-base);
    font-size: var(--theme-type-body);
    line-height: var(--theme-lh-loose);
    color: var(--theme-text-color);
}

.ambon-voile-list li {
    margin-bottom: var(--theme-gutter-2xs);
}

.ambon-voile-list a {
    color: var(--theme-accent-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ambon-voile-list a:hover {
    color: var(--theme-accent-active);
}

.ambon-voile-ordered {
    max-width: var(--theme-readable-width);
    margin-bottom: var(--theme-spacing-md);
    padding-left: var(--theme-spacing-lg);
    list-style: decimal;
    font-family: var(--theme-font-base);
    font-size: var(--theme-type-body);
    line-height: var(--theme-lh-loose);
    color: var(--theme-text-color);
}

.ambon-voile-ordered li {
    margin-bottom: var(--theme-gutter-2xs);
}

.ambon-voile-ordered a {
    color: var(--theme-accent-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ambon-voile-ordered a:hover {
    color: var(--theme-accent-active);
}

.ambon-voile-figure {
    max-width: var(--theme-readable-width);
    margin: var(--theme-spacing-lg) 0;
}

.ambon-voile-figure img {
    width: 100%;
    border-radius: var(--theme-round-md);
    box-shadow: var(--theme-depth-sm);
}

.ambon-voile-figure figcaption {
    margin-top: var(--theme-spacing-xs);
    font-size: var(--theme-text-xs);
    font-style: italic;
    color: var(--theme-ink-soft);
}

/* ==========================================================================
   bordure-noble — page-header PHEAD-01
   ========================================================================== */

.bordure-noble {
    padding-block: var(--theme-gutter-xl);
    background: var(--theme-bg);
    border-bottom: var(--theme-stroke-thin) solid rgba(30, 39, 53, 0.05);
}

.bordure-noble-inner {
    width: 100%;
    max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
    margin-inline: auto;
    padding-inline: var(--theme-edge-desktop);
    display: flex;
    flex-direction: column;
    gap: var(--theme-spacing-md);
}

.bordure-noble-eyebrow {
    font-family: var(--theme-font-base);
    font-size: var(--theme-fs-small);
    font-weight: var(--theme-fw-medium);
    letter-spacing: var(--theme-tracking-wide);
    text-transform: uppercase;
    color: var(--theme-accent-color);
}

.bordure-noble-title {
    max-width: 920px;
    font-family: var(--theme-font-heading);
    font-size: var(--theme-size-h1);
    font-weight: var(--theme-weight-bold);
    letter-spacing: var(--theme-tracking-tight);
    line-height: var(--theme-leading-tight);
    text-transform: uppercase;
    color: var(--theme-text-color);
}

.bordure-noble-divider {
    width: 60px;
    height: 2px;
    background: var(--theme-accent-color);
}

.bordure-noble-description {
    max-width: var(--theme-readable-width);
    font-family: var(--theme-font-base);
    font-size: var(--theme-size-h5);
    line-height: var(--theme-line-normal);
    color: var(--theme-ink-soft);
}

/* ==========================================================================
   bosquet-bas — legal-section LEGAL-06
   ========================================================================== */

.bosquet-bas {
    padding-block: var(--theme-gutter-xl);
    background: var(--theme-bg);
}

.bosquet-bas-inner {
    width: 100%;
    max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
    margin-inline: auto;
    padding-inline: var(--theme-edge-desktop);
}

.bosquet-bas-body {
    max-width: var(--theme-readable-width);
    counter-reset: legal;
}

.bosquet-bas-intro {
    margin-bottom: var(--theme-spacing-md);
    font-family: var(--theme-font-base);
    font-size: var(--theme-type-body);
    line-height: var(--theme-lh-loose);
    color: var(--theme-text-color);
}

.bosquet-bas-updated {
    margin-bottom: var(--theme-spacing-lg);
    font-size: var(--theme-fs-small);
    letter-spacing: var(--theme-tracking-wide);
    text-transform: uppercase;
    color: var(--theme-ink-soft);
}

.bosquet-bas-section {
    margin-bottom: var(--theme-spacing-md);
}

.bosquet-bas-heading {
    margin-bottom: var(--theme-spacing-xs);
    font-family: var(--theme-font-heading);
    font-size: var(--theme-type-h4);
    font-weight: var(--theme-fw-medium);
    color: var(--theme-text-color);
}

.bosquet-bas-heading::before {
    counter-increment: legal;
    content: "§ " counter(legal) ". ";
    color: var(--theme-accent-color);
}

.bosquet-bas-text {
    margin-bottom: var(--theme-spacing-xs);
    font-family: var(--theme-font-base);
    font-size: var(--theme-fs-small);
    line-height: var(--theme-lh-loose);
    color: var(--theme-text-color);
}

.bosquet-bas-contacts-heading {
    margin-top: var(--theme-spacing-lg);
    margin-bottom: var(--theme-spacing-xs);
    font-family: var(--theme-font-heading);
    font-size: var(--theme-type-h4);
    font-weight: var(--theme-fw-medium);
    color: var(--theme-text-color);
}

.bosquet-bas-contacts {
    margin-bottom: var(--theme-spacing-lg);
    padding-left: var(--theme-spacing-lg);
    list-style: disc;
    font-size: var(--theme-fs-small);
    line-height: var(--theme-lh-loose);
    color: var(--theme-text-color);
}

.bosquet-bas-contacts a {
    color: var(--theme-accent-color);
}

.bosquet-bas-disclaimer {
    padding: var(--theme-spacing-md);
    border-left: var(--theme-border-thick) solid var(--theme-accent-color);
    background: var(--theme-surface-2);
    font-size: var(--theme-fs-small);
    line-height: var(--theme-lh-loose);
    color: var(--theme-text-color);
}

/* ==========================================================================
   chasse-dru — inline-cta INLINE-CTA-03
   ========================================================================== */

.chasse-dru {
    padding-block: var(--theme-spacing-md);
    background: var(--theme-bg);
}

.chasse-dru-inner {
    width: 100%;
    max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
    margin-inline: auto;
    padding-inline: var(--theme-edge-desktop);
}

.chasse-dru-line {
    font-family: var(--theme-font-base);
    font-size: var(--theme-text-h6);
    line-height: var(--theme-line-normal);
    text-align: center;
    color: var(--theme-text-color);
}

.chasse-dru-line strong {
    color: var(--theme-text-color);
    font-weight: var(--theme-weight-bold);
}

.chasse-dru-link {
    color: var(--theme-accent-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--theme-transition-fast) var(--theme-easing), background var(--theme-transition-fast) var(--theme-easing);
}

.chasse-dru-link:hover {
    background: transparent;
    color: var(--theme-accent-active);
    text-decoration-thickness: 2px;
}

/* ==========================================================================
   ciboire-etroit — data-table TABLE-07
   ========================================================================== */

.ciboire-etroit {
    padding-block: var(--theme-gutter-xl);
    background: var(--theme-bg);
}

.ciboire-etroit-inner {
    width: 100%;
    max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
    margin-inline: auto;
    padding-inline: var(--theme-edge-desktop);
}

.ciboire-etroit-heading {
    margin-bottom: var(--theme-spacing-md);
    font-family: var(--theme-font-heading);
    font-size: var(--theme-text-h2);
    font-weight: var(--theme-fw-medium);
    letter-spacing: var(--theme-tracking-tight);
    line-height: var(--theme-leading-tight);
    text-transform: uppercase;
    color: var(--theme-text-color);
}

.ciboire-etroit-scroll {
    overflow-x: auto;
}

.ciboire-etroit-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
    font-family: var(--theme-font-base);
    font-size: var(--theme-fs-small);
    color: var(--theme-text-color);
}

.ciboire-etroit-table thead {
    background: var(--theme-primary);
}

.ciboire-etroit-table th {
    padding: var(--theme-spacing-md);
    color: #ffffff;
    font-weight: var(--theme-fw-medium);
    letter-spacing: var(--theme-tracking-wide);
    text-align: left;
    text-transform: uppercase;
}

.ciboire-etroit-table td {
    padding: var(--theme-spacing-md);
    border-bottom: var(--theme-stroke-thin) solid rgba(21, 22, 42, 0.08);
}

.ciboire-etroit-table td:nth-child(even) {
    background: rgba(21, 22, 42, 0.03);
}

/* ==========================================================================
   gardien-profond — contact-form FORM-01
   ========================================================================== */

.gardien-profond {
    padding-block: var(--theme-gutter-xl);
    background: var(--theme-bg);
}

.gardien-profond-inner {
    width: 100%;
    max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
    margin-inline: auto;
    padding-inline: var(--theme-edge-desktop);
}

.gardien-profond-intro {
    max-width: var(--theme-readable-width);
    margin-block-end: var(--theme-spacing-lg);
    font-family: var(--theme-font-base);
    font-size: var(--theme-type-body);
    line-height: var(--theme-lh-loose);
    color: var(--theme-ink-soft);
}

.gardien-profond-success {
    max-width: var(--theme-readable-width);
    margin-bottom: var(--theme-spacing-md);
    padding: var(--theme-spacing-md);
    background: rgba(34, 197, 94, 0.10);
    border: var(--theme-stroke-thin) solid rgba(34, 197, 94, 0.30);
    border-radius: var(--theme-round-md);
    color: var(--theme-text-color);
}

.gardien-profond-form {
    display: flex;
    flex-direction: column;
    gap: var(--theme-spacing-md);
    max-width: var(--theme-readable-width);
    padding: var(--theme-spacing-lg);
    background: var(--theme-surface-2);
    border-radius: var(--theme-round-md);
    box-shadow: var(--theme-depth-sm);
}

.gardien-profond-field {
    display: flex;
    flex-direction: column;
    gap: var(--theme-spacing-xs);
}

.gardien-profond-label {
    font-family: var(--theme-font-base);
    font-size: var(--theme-fs-small);
    font-weight: var(--theme-fw-medium);
    letter-spacing: var(--theme-tracking-wide);
    text-transform: uppercase;
    color: var(--theme-text-color);
}

.gardien-profond-input,
.gardien-profond-textarea {
    padding: var(--theme-gutter-sm) var(--theme-spacing-md);
    background: var(--theme-bg);
    color: var(--theme-text-color);
    font-family: var(--theme-font-base);
    font-size: var(--theme-type-body);
    border: var(--theme-stroke-thin) solid rgba(21, 22, 42, 0.20);
    border-radius: var(--theme-round-md);
}

.gardien-profond-input {
    height: 48px;
}

.gardien-profond-textarea {
    min-height: 120px;
    resize: vertical;
}

.gardien-profond-input:focus,
.gardien-profond-textarea:focus {
    outline: none;
    border-color: var(--theme-accent-color);
}

.gardien-profond-submit {
    align-self: flex-start;
    height: 48px;
    padding-inline: var(--theme-gutter-xl);
    background: var(--theme-accent-color);
    color: #ffffff;
    font-family: var(--theme-font-heading);
    font-size: var(--theme-text-h6);
    font-weight: var(--theme-weight-bold);
    letter-spacing: var(--theme-tracking-wide);
    text-transform: uppercase;
    border: none;
    border-radius: var(--theme-round-md);
    cursor: pointer;
    transition: background var(--theme-transition-fast) var(--theme-easing);
}

.gardien-profond-submit:hover {
    background: var(--theme-accent-active);
    color: #ffffff;
}

/* ==========================================================================
   jube-classique — author-byline BYLINE-07
   ========================================================================== */

.jube-classique {
    padding-block: var(--theme-spacing-lg);
    background: var(--theme-bg);
}

.jube-classique-inner {
    width: 100%;
    max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
    margin-inline: auto;
    padding-inline: var(--theme-edge-desktop);
}

.jube-classique-card {
    max-width: var(--theme-readable-width);
    padding: var(--theme-spacing-lg);
    background: var(--theme-surface-2);
    border-radius: var(--theme-round-md);
    box-shadow: var(--theme-depth-sm);
}

.jube-classique-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--theme-gutter-sm);
}

.jube-classique-portrait {
    width: 72px;
    height: 72px;
    border-radius: var(--theme-round-circle);
    object-fit: cover;
    object-position: center 20%;
    background: var(--theme-surface-2);
    border: 2px solid var(--theme-surface-2);
    box-sizing: content-box;
}

.jube-classique-name {
    font-family: var(--theme-font-heading);
    font-size: var(--theme-type-h4);
    font-weight: var(--theme-weight-bold);
    color: var(--theme-text-color);
}

.jube-classique-name a {
    color: var(--theme-text-color);
    text-decoration: none;
}

.jube-classique-name a:hover {
    color: var(--theme-accent-color);
}

.jube-classique-role {
    font-size: var(--theme-fs-small);
    color: var(--theme-ink-soft);
}

.jube-classique-bio {
    margin-top: var(--theme-spacing-md);
    font-family: var(--theme-font-base);
    font-size: var(--theme-type-body);
    line-height: var(--theme-lh-loose);
    color: var(--theme-text-color);
}

.jube-classique-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: var(--theme-spacing-xs);
    margin-top: var(--theme-spacing-md);
}

.jube-classique-tag {
    padding: var(--theme-gutter-2xs) var(--theme-gutter-sm);
    background: var(--theme-primary);
    color: #ffffff;
    font-size: var(--theme-text-xs);
    text-transform: uppercase;
    border-radius: var(--theme-pill);
}

.jube-classique-link {
    display: inline-block;
    margin-top: var(--theme-spacing-md);
    color: var(--theme-accent-color);
    font-weight: var(--theme-fw-medium);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.jube-classique-link:hover {
    color: var(--theme-accent-active);
}

/* ==========================================================================
   lampadaire-vif — items-grid GRID-08
   ========================================================================== */

.lampadaire-vif {
    padding-block: var(--theme-gutter-xl);
    background: var(--theme-bg);
}

.lampadaire-vif-inner {
    width: 100%;
    max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
    margin-inline: auto;
    padding-inline: var(--theme-edge-desktop);
}

.lampadaire-vif-heading {
    margin-bottom: var(--theme-spacing-lg);
    font-family: var(--theme-font-heading);
    font-size: var(--theme-text-h2);
    font-weight: var(--theme-fw-medium);
    letter-spacing: var(--theme-tracking-tight);
    line-height: var(--theme-leading-tight);
    text-transform: uppercase;
    color: var(--theme-text-color);
}

.lampadaire-vif-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--theme-spacing-lg);
    list-style: none;
}

.lampadaire-vif-item {
    padding: var(--theme-spacing-lg);
    background: var(--theme-surface-2);
    border-top: 4px solid var(--theme-accent-color);
    border-radius: 0 0 var(--theme-round-md) var(--theme-round-md);
    box-shadow: var(--theme-depth-sm);
}

.lampadaire-vif-item-title {
    margin-bottom: var(--theme-gutter-sm);
    font-family: var(--theme-font-heading);
    font-size: var(--theme-type-h4);
    font-weight: var(--theme-fw-medium);
    color: var(--theme-text-color);
}

.lampadaire-vif-item-text {
    font-family: var(--theme-font-base);
    font-size: var(--theme-type-body);
    line-height: var(--theme-lh-loose);
    color: var(--theme-text-color);
}

/* ==========================================================================
   loggia-haute-moderne — faq FAQ-10
   ========================================================================== */

.loggia-haute-moderne {
    padding-block: var(--theme-gutter-xl);
    background: var(--theme-bg);
}

.loggia-haute-moderne-inner {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: var(--theme-gap-2xl);
    width: 100%;
    max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
    margin-inline: auto;
    padding-inline: var(--theme-edge-desktop);
}

.loggia-haute-moderne-aside {
    position: sticky;
    top: var(--theme-gutter-xl);
    align-self: start;
    padding: var(--theme-spacing-lg);
}

.loggia-haute-moderne-heading {
    margin-bottom: var(--theme-spacing-md);
    font-family: var(--theme-font-heading);
    font-size: var(--theme-text-h2);
    font-weight: var(--theme-fw-medium);
    letter-spacing: var(--theme-tracking-tight);
    line-height: var(--theme-leading-tight);
    text-transform: uppercase;
    color: var(--theme-text-color);
}

.loggia-haute-moderne-intro {
    font-family: var(--theme-font-base);
    font-size: var(--theme-type-body);
    line-height: var(--theme-lh-loose);
    color: var(--theme-ink-soft);
}

.loggia-haute-moderne-list {
    display: flex;
    flex-direction: column;
    gap: var(--theme-gutter-xl);
    list-style: none;
}

.loggia-haute-moderne-item {
    border-bottom: var(--theme-stroke-thin) solid rgba(21, 22, 42, 0.10);
    padding-bottom: var(--theme-spacing-md);
}

.loggia-haute-moderne-question {
    display: block;
    width: 100%;
    padding: 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--theme-font-heading);
    font-size: var(--theme-type-h4);
    font-weight: var(--theme-fw-medium);
    color: var(--theme-text-color);
}

.loggia-haute-moderne-answer {
    margin-top: var(--theme-gutter-sm);
    font-family: var(--theme-font-base);
    font-size: var(--theme-type-body);
    line-height: var(--theme-lh-loose);
    color: var(--theme-text-color);
}

/* ==========================================================================
   parterre-dru — hero HERO-07
   ========================================================================== */

.parterre-dru {
    background: var(--theme-bg);
}

.parterre-dru-figure {
    margin: 0;
    width: 100%;
    height: 400px;
}

.parterre-dru-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parterre-dru-content {
    max-width: var(--theme-readable-width);
    margin-inline: auto;
    padding-block: var(--theme-gap-2xl);
    padding-inline: var(--theme-edge-desktop);
}

.parterre-dru-eyebrow {
    display: block;
    margin-bottom: var(--theme-spacing-md);
    font-family: var(--theme-font-base);
    font-size: var(--theme-fs-small);
    font-weight: var(--theme-fw-medium);
    letter-spacing: var(--theme-tracking-wide);
    text-transform: uppercase;
    color: var(--theme-accent-color);
}

.parterre-dru-title {
    font-family: var(--theme-font-heading);
    font-size: var(--theme-size-h1);
    font-weight: var(--theme-weight-bold);
    letter-spacing: var(--theme-tracking-tight);
    line-height: var(--theme-leading-tight);
    text-transform: uppercase;
    color: var(--theme-text-color);
}

.parterre-dru-subtitle {
    margin-top: var(--theme-spacing-md);
    font-family: var(--theme-font-base);
    font-size: var(--theme-size-h5);
    line-height: var(--theme-line-normal);
    color: var(--theme-ink-soft);
}

.parterre-dru-cta {
    display: inline-block;
    margin-top: var(--theme-spacing-lg);
    min-height: 56px;
    padding: 17px var(--theme-gutter-xl);
    background: var(--theme-accent-color);
    color: #ffffff;
    font-family: var(--theme-font-heading);
    font-size: var(--theme-text-h6);
    font-weight: var(--theme-weight-bold);
    letter-spacing: var(--theme-tracking-wide);
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--theme-round-md);
    transition: background var(--theme-duration-base) var(--theme-easing);
}

.parterre-dru-cta:hover {
    background: var(--theme-accent-active);
    color: #ffffff;
}

/* ==========================================================================
   reliquaire-grand — error-block ERR-05
   ========================================================================== */

.reliquaire-grand {
    padding-block: var(--theme-gap-3xl);
    background: var(--theme-bg);
}

.reliquaire-grand-inner {
    width: 100%;
    max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
    margin-inline: auto;
    padding-inline: var(--theme-edge-desktop);
    text-align: center;
}

.reliquaire-grand-title {
    position: relative;
    display: inline-block;
    font-family: var(--theme-font-heading);
    font-size: var(--theme-size-h1);
    font-weight: var(--theme-weight-bold);
    letter-spacing: var(--theme-tracking-tight);
    line-height: var(--theme-leading-tight);
    text-transform: uppercase;
    color: var(--theme-text-color);
}

.reliquaire-grand-title::before,
.reliquaire-grand-title::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: var(--theme-accent-color);
    opacity: 0.6;
}

.reliquaire-grand-title::before {
    transform: translate(2px, -2px);
}

.reliquaire-grand-title::after {
    transform: translate(-2px, 2px);
    color: var(--theme-accent-active);
}

.reliquaire-grand-text {
    max-width: var(--theme-readable-width);
    margin: var(--theme-spacing-lg) auto;
    font-family: var(--theme-font-base);
    font-size: var(--theme-size-h5);
    line-height: var(--theme-line-normal);
    color: var(--theme-ink-soft);
}

.reliquaire-grand-button {
    display: inline-block;
    min-height: 52px;
    padding: 15px var(--theme-gutter-xl);
    background: var(--theme-accent-color);
    color: #ffffff;
    font-family: var(--theme-font-heading);
    font-size: var(--theme-text-h6);
    font-weight: var(--theme-weight-bold);
    letter-spacing: var(--theme-tracking-wide);
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--theme-round-md);
    transition: background var(--theme-transition-fast) var(--theme-easing);
}

.reliquaire-grand-button:hover {
    background: var(--theme-accent-active);
    color: #ffffff;
}

/* ==========================================================================
   sanctuaire-haut — reviews REV-03
   ========================================================================== */

.sanctuaire-haut {
    padding-block: var(--theme-gutter-xl);
    background: var(--theme-bg);
}

.sanctuaire-haut-inner {
    width: 100%;
    max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
    margin-inline: auto;
    padding-inline: var(--theme-edge-desktop);
}

.sanctuaire-haut-heading {
    margin-bottom: var(--theme-spacing-lg);
    font-family: var(--theme-font-heading);
    font-size: var(--theme-text-h2);
    font-weight: var(--theme-fw-medium);
    letter-spacing: var(--theme-tracking-tight);
    line-height: var(--theme-leading-tight);
    text-transform: uppercase;
    color: var(--theme-text-color);
}

.sanctuaire-haut-rail {
    display: flex;
    gap: var(--theme-spacing-lg);
    overflow-x: auto;
    padding-bottom: var(--theme-spacing-md);
    scroll-snap-type: x mandatory;
    list-style: none;
}

.sanctuaire-haut-card {
    display: flex;
    flex-direction: column;
    gap: var(--theme-gutter-sm);
    flex-shrink: 0;
    width: 360px;
    min-height: 240px;
    padding: var(--theme-spacing-lg);
    background: var(--theme-bg);
    border: var(--theme-stroke-thin) solid rgba(21, 22, 42, 0.12);
    border-radius: var(--theme-round-md);
    scroll-snap-align: start;
}

.sanctuaire-haut-card-author {
    font-family: var(--theme-font-heading);
    font-size: var(--theme-size-h5);
    font-weight: var(--theme-fw-medium);
    color: var(--theme-text-color);
}

.sanctuaire-haut-rating {
    font-size: var(--theme-fs-small);
    color: var(--theme-ink-soft);
}

.sanctuaire-haut-bar {
    height: 4px;
    width: 60%;
    margin-top: var(--theme-gutter-2xs);
    background: rgba(21, 22, 42, 0.20);
    border-radius: var(--theme-pill);
    overflow: hidden;
}

.sanctuaire-haut-bar-fill {
    display: block;
    height: 100%;
    background: var(--theme-accent-color);
}

.sanctuaire-haut-card-text {
    font-family: var(--theme-font-base);
    font-size: var(--theme-type-body);
    line-height: var(--theme-lh-loose);
    color: var(--theme-text-color);
}

/* ==========================================================================
   sentinelle-large — author-card AUTH-07
   ========================================================================== */

.sentinelle-large {
    padding-block: var(--theme-gutter-xl);
    background: var(--theme-bg);
}

.sentinelle-large-inner {
    width: 100%;
    max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
    margin-inline: auto;
    padding-inline: var(--theme-edge-desktop);
}

.sentinelle-large-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: var(--theme-spacing-lg);
    max-width: var(--theme-readable-width);
    padding: var(--theme-gutter-xl);
    background: var(--theme-surface-2);
    border-left: 4px solid var(--theme-accent-color);
    border-radius: var(--theme-round-md);
}

.sentinelle-large-portrait {
    width: 100px;
    height: 100px;
    border-radius: var(--theme-round-circle);
    object-fit: cover;
    object-position: center 20%;
    background: var(--theme-surface-2);
    border: 3px solid var(--theme-surface-2);
    box-sizing: content-box;
}

.sentinelle-large-body {
    display: block;
}

.sentinelle-large-quote-mark {
    font-family: var(--theme-font-heading);
    font-size: var(--theme-size-h1);
    line-height: 0.6;
    color: var(--theme-accent-color);
}

.sentinelle-large-bio {
    margin-top: var(--theme-gutter-sm);
    font-family: var(--theme-font-base);
    font-size: var(--theme-size-h5);
    font-style: italic;
    line-height: var(--theme-line-normal);
    color: var(--theme-text-color);
}

.sentinelle-large-attribution {
    margin-top: var(--theme-spacing-md);
    font-size: var(--theme-fs-small);
    letter-spacing: var(--theme-tracking-wide);
    color: var(--theme-ink-soft);
}

.sentinelle-large-articles {
    max-width: var(--theme-readable-width);
    padding-block: var(--theme-spacing-lg);
}

.sentinelle-large-articles-heading {
    margin-bottom: var(--theme-spacing-md);
    font-family: var(--theme-font-heading);
    font-size: var(--theme-type-h4);
    font-weight: var(--theme-weight-bold);
    color: var(--theme-text-color);
}

.sentinelle-large-articles-list {
    display: flex;
    flex-direction: column;
    gap: var(--theme-spacing-xs);
    list-style: none;
    padding: 0;
    margin: 0;
}

.sentinelle-large-articles-item {
    font-family: var(--theme-font-base);
    font-size: var(--theme-type-body);
    line-height: var(--theme-line-normal);
}

.sentinelle-large-articles-item a {
    color: var(--theme-accent-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sentinelle-large-articles-item a:hover {
    color: var(--theme-accent-active);
}

/* ==========================================================================
   support-sombre — cookie-banner COOK-02
   ========================================================================== */

.support-sombre {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    display: none;
    padding: var(--theme-spacing-md) var(--theme-edge-desktop);
    background: var(--theme-primary);
    border-top: var(--theme-stroke-thin) solid rgba(255, 255, 255, 0.08);
}

.support-sombre.is-open {
    display: block;
}

.support-sombre-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--theme-spacing-md);
    width: 100%;
    max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
    margin-inline: auto;
}

.support-sombre-message {
    flex: 1;
    font-size: var(--theme-fs-small);
    color: #d7d7e6;
}

.support-sombre-actions {
    display: flex;
    flex-shrink: 0;
    gap: var(--theme-gutter-sm);
}

.support-sombre-button {
    min-height: 36px;
    padding-inline: var(--theme-spacing-md);
    font-family: var(--theme-font-heading);
    font-size: var(--theme-text-xs);
    font-weight: var(--theme-weight-bold);
    letter-spacing: var(--theme-tracking-wide);
    text-transform: uppercase;
    border-radius: var(--theme-round-md);
    cursor: pointer;
}

.support-sombre-accept {
    background: var(--theme-accent-color);
    color: #ffffff;
    border: none;
    transition: background var(--theme-transition-fast) var(--theme-easing);
}

.support-sombre-accept:hover {
    background: var(--theme-accent-active);
    color: #ffffff;
}

.support-sombre-decline {
    background: var(--theme-primary);
    color: #ffffff;
    border: var(--theme-stroke-thin) solid rgba(255, 255, 255, 0.15);
    transition: background var(--theme-transition-fast) var(--theme-easing);
}

.support-sombre-decline:hover {
    background: #2a2b46;
    color: #ffffff;
}

/* ==========================================================================
   veilleuse-bas — header HEAD-12 (drawer-only)
   ========================================================================== */

.veilleuse-bas {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--theme-bg);
    border-bottom: var(--theme-stroke-thin) solid rgba(21, 22, 42, 0.06);
    transition: padding var(--theme-duration-base) var(--theme-easing);
}

.veilleuse-bas-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    min-height: 56px;
    margin-inline: auto;
    padding-inline: var(--theme-spacing-md);
}

.veilleuse-bas.is-stuck {
    padding-block: var(--theme-gutter-2xs);
}

.veilleuse-bas-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.veilleuse-bas-logo span {
    font-family: var(--theme-font-heading);
    font-size: 26px;
    font-weight: var(--theme-weight-bold);
    letter-spacing: var(--theme-tracking-tight);
    color: var(--theme-primary);
}

.veilleuse-bas-toggle {
    display: inline-flex;
    align-items: center;
    gap: var(--theme-spacing-xs);
    padding: var(--theme-spacing-xs) var(--theme-gutter-sm);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--theme-font-heading);
    font-size: var(--theme-text-h6);
    font-weight: var(--theme-fw-medium);
    letter-spacing: var(--theme-tracking-wide);
    text-transform: uppercase;
    color: var(--theme-text-color);
    transition: color var(--theme-transition-fast) var(--theme-easing);
}

.veilleuse-bas-toggle:hover {
    color: var(--theme-accent-color);
}

.veilleuse-bas-toggle-text {
    display: inline;
}

.veilleuse-bas-toggle svg {
    width: 24px;
    height: 24px;
}

.veilleuse-bas-backdrop {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: none;
    background: rgba(21, 22, 42, 0.60);
}

.veilleuse-bas-backdrop.is-open {
    display: block;
}

.veilleuse-bas-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 120;
    width: 360px;
    max-width: 100vw;
    height: 100vh;
    padding: var(--theme-spacing-lg);
    background: var(--theme-bg);
    box-shadow: var(--theme-shade-lg);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform var(--theme-duration-base) var(--theme-easing), visibility var(--theme-duration-base) var(--theme-easing);
}

.veilleuse-bas-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
}

.veilleuse-bas-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: auto;
    background: none;
    border: none;
    border-radius: var(--theme-round-circle);
    cursor: pointer;
    color: var(--theme-text-color);
    transition: background var(--theme-transition-fast) var(--theme-easing);
}

.veilleuse-bas-drawer-close:hover {
    background: var(--theme-surface-2);
}

.veilleuse-bas-drawer-close svg {
    width: 24px;
    height: 24px;
}

.veilleuse-bas-drawer-nav {
    margin-top: var(--theme-spacing-md);
}

.veilleuse-bas-drawer-list {
    display: flex;
    flex-direction: column;
    gap: var(--theme-gutter-sm);
    list-style: none;
}

.veilleuse-bas-drawer-link {
    display: block;
    padding-block: var(--theme-spacing-xs);
    font-family: var(--theme-font-heading);
    font-size: var(--theme-size-h5);
    font-weight: var(--theme-fw-medium);
    text-decoration: none;
    color: var(--theme-text-color);
    transition: color var(--theme-transition-fast) var(--theme-easing);
}

.veilleuse-bas-drawer-link:hover {
    color: var(--theme-accent-color);
}

.veilleuse-bas-drawer-link[aria-current="page"] {
    color: var(--theme-accent-color);
}

/* ==========================================================================
   vigile-lumineux — footer FOOT-01
   ========================================================================== */

.vigile-lumineux {
    background: var(--theme-primary);
}

.vigile-lumineux-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--theme-gutter-xl);
    width: 100%;
    max-width: calc(var(--theme-wrapper) + 2 * var(--theme-edge-desktop));
    margin-inline: auto;
    padding-block: var(--theme-gap-2xl);
    padding-inline: var(--theme-edge-desktop);
}

.vigile-lumineux-col {
    display: block;
}

.vigile-lumineux-col--brand,
.vigile-lumineux-col--nav,
.vigile-lumineux-col--legal {
    min-width: 0;
}

.vigile-lumineux-logo {
    display: inline-flex;
    text-decoration: none;
}

.vigile-lumineux-logo span {
    font-family: var(--theme-font-heading);
    font-size: 24px;
    font-weight: var(--theme-weight-bold);
    letter-spacing: var(--theme-tracking-tight);
    color: #ffffff;
}

.vigile-lumineux-tagline {
    margin-top: var(--theme-spacing-md);
    font-size: var(--theme-fs-small);
    line-height: var(--theme-lh-loose);
    color: #b6b6cc;
}

.vigile-lumineux-heading {
    margin-bottom: var(--theme-spacing-md);
    font-family: var(--theme-font-heading);
    font-size: var(--theme-text-h6);
    font-weight: var(--theme-weight-bold);
    letter-spacing: var(--theme-tracking-wide);
    text-transform: uppercase;
    color: #ffffff;
}

.vigile-lumineux-list {
    display: flex;
    flex-direction: column;
    gap: var(--theme-gutter-sm);
    list-style: none;
}

.vigile-lumineux-list a {
    font-family: var(--theme-font-base);
    font-size: var(--theme-fs-small);
    color: #b6b6cc;
    text-decoration: none;
    transition: color var(--theme-transition-fast) var(--theme-easing);
}

.vigile-lumineux-list a:hover {
    color: var(--theme-gradient-start);
}

.vigile-lumineux-bottom {
    border-top: var(--theme-stroke-thin) solid rgba(255, 255, 255, 0.15);
    padding-block: var(--theme-spacing-md);
    padding-inline: var(--theme-edge-desktop);
    text-align: center;
}

.vigile-lumineux-bottom small {
    font-size: var(--theme-text-xs);
    color: #b6b6cc;
}

/* ==========================================================================
   Page-level helpers
   ========================================================================== */

.page-main {
    display: block;
}

/* ==========================================================================
   Responsive — desktop-first (BP-03)
   ========================================================================== */

@media (max-width: 1240px) {
    .lampadaire-vif-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    :root {
        --theme-size-h1: 44px;
        --theme-text-h2: 32px;
        --theme-fs-h3: 24px;
        --theme-type-h4: 18px;
        --theme-size-h5: 14px;
        --theme-text-h6: 12px;
        --theme-type-body: 14px;
        --theme-fs-small: 12px;
        --theme-text-xs: 10px;
    }

    .section-inner,
    .amphitheatre-raffine-inner,
    .ambon-voile-inner,
    .bordure-noble-inner,
    .bosquet-bas-inner,
    .chasse-dru-inner,
    .ciboire-etroit-inner,
    .gardien-profond-inner,
    .jube-classique-inner,
    .lampadaire-vif-inner,
    .loggia-haute-moderne-inner,
    .sanctuaire-haut-inner,
    .sentinelle-large-inner,
    .vigile-lumineux-inner {
        padding-inline: var(--theme-edge-mobile);
    }

    .parterre-dru-content {
        padding-inline: var(--theme-edge-mobile);
    }

    .parterre-dru-figure {
        height: 220px;
    }

    .loggia-haute-moderne-inner {
        grid-template-columns: 1fr;
        gap: var(--theme-spacing-lg);
    }

    .loggia-haute-moderne-aside {
        position: static;
        padding: 0;
    }

    .lampadaire-vif-list {
        grid-template-columns: 1fr;
    }

    .vigile-lumineux-inner {
        grid-template-columns: 1fr;
        gap: var(--theme-spacing-lg);
        padding-block: var(--theme-gutter-xl);
    }

    .sentinelle-large-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .support-sombre,
    .support-sombre-inner {
        padding: 12px 14px !important;
        gap: 8px !important;
        font-size: 13px !important;
        line-height: 1.35 !important;
    }

    .support-sombre-title,
    .support-sombre-heading {
        display: none !important;
    }

    .support-sombre-button,
    .support-sombre button {
        padding: 8px 14px !important;
        font-size: 12px !important;
        min-height: 36px !important;
    }

    .support-sombre-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .support-sombre-actions {
        width: 100%;
    }

    .support-sombre-button {
        flex: 1 1 auto;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}
