/* FONTS */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Italic-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Italic-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* VARIABLES */
:root {
    --creme:        #FAF6F0;
    --creme-alt:    #FFF9F3;
    --or:           #C9973B;
    --or-clair:     #E8C06A;
    --corail:       #E07A52;
    --texte:        #2C1F0E;
    --texte-doux:   #7A6350;
    --font-serif:   'Playfair Display', Georgia, serif;
    --font-sans:    'DM Sans', system-ui, sans-serif;
    --max:          1100px;
    --mesure:       680px;
    --nav-h:        68px;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--texte);
    background: var(--creme);
    position: relative;
    padding-top: var(--nav-h);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

ul {
    padding-left: 1.4em;
    margin-bottom: 1em;
}
ul li {
    margin-bottom: 0.4em;
    color: var(--texte-doux);
}
ul li::marker { color: var(--or); }

strong { color: var(--texte); font-weight: 600; }

/* NAVIGATION */
#nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--nav-h);
    background: rgba(250, 246, 240, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 151, 59, 0.15);
    transition: background 0.3s, border-color 0.3s;
}

#nav.is-scrolled { box-shadow: 0 2px 20px rgba(44, 31, 14, 0.08); }

/* Wherever the plate stands behind the question, the bar has nothing to sit on
   but the plate, and cream at 88 % over a blur turns it into a flat band the
   width of the screen — the very band the image was supposed to fill. It takes
   its ground the moment the page moves, where there is text to hold apart. */
@media (max-width: 999px) {
    #nav:not(.is-scrolled) {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom-color: transparent;
    }
    /* Except with the panel open: the bar is then the panel's own top edge. */
    #nav.is-open {
        background: rgba(250, 246, 240, 0.88);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom-color: rgba(201, 151, 59, 0.15);
    }
}

/* Fil de progression — 2 px d'or sous la barre, seule mesure de l'avancée. */
.nav-progress {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, var(--or-clair), var(--or));
    transform: scaleX(0);
    transform-origin: left;
    will-change: transform;
}

.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--texte);
    letter-spacing: 0.01em;
    white-space: nowrap;
    display: flex;
    align-items: baseline;
    gap: 0.5em;
    min-width: 0;
}

/* Le nom de la section courante ne s'affiche qu'une fois les liens repliés. */
.nav-section {
    display: none;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--texte-doux);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nav-section:empty { display: none; }
.nav-section::before { content: '· '; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    align-items: center;
    margin-bottom: 0;
}

.nav-links li { margin-bottom: 0; }

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--texte-doux);
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 1px;
    background: var(--or);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    transform-origin: left;
}

.nav-links a:hover { color: var(--texte); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-links a.active { color: var(--texte); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
    background: var(--corail) !important;
    color: #fff !important;
    padding: 0.45em 1.1em;
    border-radius: 2em;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #c8683f !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--texte);
    transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav — the seven-entry bar measures 937 px, so it folds below 960. */
@media (max-width: 960px) {
    .nav-hamburger { display: flex; }
    .nav-section { display: block; }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-h); left: 0; right: 0;
        background: var(--creme);
        flex-direction: column;
        gap: 0;
        padding: 1.5rem 2rem 2rem;
        border-bottom: 1px solid rgba(201, 151, 59, 0.15);
        box-shadow: 0 8px 24px rgba(44, 31, 14, 0.08);
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(201, 151, 59, 0.1);
    }
    .nav-links li:last-child a { border-bottom: none; margin-top: 0.5rem; text-align: center; }
    .nav-links a.active::after { display: none; }

    .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* HERO */
#hero {
    position: relative;
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    background: var(--creme);
    overflow: hidden;
}

.hero-halo {
    position: absolute;
    top: -10%;
    right: 0;
    left: 0;
    width: 100%;
    height: 120%;
    pointer-events: none;
}

.hero-halo svg {
    width: 100%;
    height: 100%;
}

/* The halo is a light, so it may move: a light that advances and recedes reads
   as light, where a picture doing the same reads as an animation. Opacity and
   transform only, so nothing is laid out twice. */
@keyframes halo-breath {
    0%, 100% { opacity: 0.92; transform: scale(1); }
    50%      { opacity: 1;    transform: scale(1.03); }
}

.hero-halo {
    animation: halo-breath 22s ease-in-out infinite;
    will-change: opacity, transform;
}

/* No z-index here on purpose. It would open a stacking context, and a
   mix-blend-mode only blends within its own — the plate would stop seeing the
   halo and the cream beneath it, and its near-white ground would come back as
   a rectangle. The text is raised instead, which isolates nothing that blends. */
.hero-content {
    position: relative;
    max-width: var(--max);
    margin: 0 auto;
    padding: 5rem 2rem;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.hero-content > * { grid-column: 1; }

/* The question is pinned to the first row because the plate is placed there
   explicitly: without this, explicit placement is resolved first and the
   question is pushed to row 2, leaving the plate alone in a row of its own
   height — which, its image being absolutely positioned, is nothing. */
.hero-question { grid-row: 1; }

/* The text paints over the plate. It blends with nothing, so raising it
   isolates nothing either — which is the whole reason it is raised here and
   not on a container the plate lives inside. */
.hero-question,
.hero-name,
.hero-subtitle,
.hero-tagline,
.hero-content .btn-primary {
    position: relative;
    z-index: 1;
}

.hero-content .btn-primary { justify-self: start; }

/* Beside the text once there is room for both: 500px of text, a 380px plate,
   the gutter and the padding — 1000px. The image dissolves into the cream the
   way the section plates do, so it sits inside the halo rather than on it. */
.hero-image img {
    display: block;
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    -webkit-mask-image:
        linear-gradient(to bottom, transparent 0, #000 9%, #000 88%, transparent 100%),
        linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
    mask-image:
        linear-gradient(to bottom, transparent 0, #000 9%, #000 88%, transparent 100%),
        linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
}

@media (min-width: 1000px) {
    /* The second track is definite and stays empty: it reserves the room the
       plate needs, and the plate itself is out of flow. */
    .hero-content {
        grid-template-columns: minmax(0, 1fr) 380px;
        align-items: center;
        column-gap: 3rem;
        /* Full height, its rows centred inside: the plate is positioned
           against this box, so the box has to be the hero to centre on it. */
        align-self: stretch;
        align-content: center;
    }
    /* Centred on the hero, not on the text. Spanning every row centred it on
       the text stack instead — the stack being shorter than the hero and set
       lower in it, the plate sat high and read as pinned to the question. It
       is positioned against #hero, and the offset rebuilds the right edge of
       the content column: half of what the container leaves, plus its padding,
       and never less than that padding once the window is narrower than the
       container. */
    .hero-image {
        position: absolute;
        /* Centred by auto margins between two edges, never by a transform: a
           transform opens a stacking context, and the plate's multiply would
           then blend inside it — with nothing — bringing its near-white ground
           back as a rectangle. `fit-content` keeps the height from stretching
           to fill, which is what leaves the margins something to share. */
        top: 0;
        bottom: 0;
        height: fit-content;
        margin-block: auto;
        right: max(2rem, calc((100% - var(--max)) / 2 + 2rem));
        width: 380px;
    }
}

/* Below that, the plate goes behind the question and stops there. It sits in
   the question's own row rather than on a share of the viewport, so it holds
   the same relation to the text on a tall phone and on a short one — where a
   height in vh would have crept down over the name. */
/* The plate reaches up behind the bar. Clipped at the hero's top edge it left
   the bar's own height as flat cream — a band the width of the screen, right
   where the image should already have started. The clip stays on the
   horizontal axis, where the halo overshoots by 10% either side and would
   otherwise open a scrollbar. */
@media (max-width: 999px) {
    #hero {
        overflow-x: clip;
        overflow-y: visible;
    }
}

@media (max-width: 999px) {
    .hero-image {
        grid-row: 1;
        position: relative;
        align-self: stretch;
        /* Bottom anchored to the question's row, 3rem short of the name. Top
           deliberately overshot: #hero clips at its own edge, which is the
           underside of the nav, so the plate starts flush there on every
           handset. A measured reach would leave a band of cream on a tall
           phone and none on a short one, the hero being centred vertically. */
        height: calc(100% + 11rem);
        /* Capped at the width of the breakpoint below, where the plate stops
           being a background and becomes a column of its own. Past it the
           plate kept widening while the hero kept its height, so the frame
           grew around a subject that showed less and less of itself. */
        width: 100%;
        max-width: 768px;
        margin: -14rem auto 0;
        overflow: hidden;
        pointer-events: none;
    }
    .hero-image img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        /* The fade sits on the image, never on the wrapper: an opacity above it
           would isolate the blending just as a z-index would. */
        opacity: 0.32;
        object-fit: cover;
        object-position: center 35%;
    }
}

.hero-question {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 400;
    color: var(--texte);
    line-height: 1.4;
    max-width: 600px;
    margin-bottom: 2.5rem;
    min-height: 3em;
    opacity: 1;
    /* Paired with FADE in main.js: the text is swapped at the far end of this. */
    transition: opacity 1.2s ease-in-out;
}
.hero-question.fade { opacity: 0; }

.hero-name {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--texte);
    line-height: 1.1;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    color: var(--texte-doux);
    letter-spacing: 0.04em;
    margin-bottom: 1.2rem;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--texte-doux);
    max-width: 34em;
    margin-bottom: 2.5rem;
}

.btn-primary {
    display: inline-block;
    background: var(--corail);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.75em 2em;
    border-radius: 2em;
    letter-spacing: 0.03em;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(224, 122, 82, 0.25);
}
.btn-primary:hover {
    background: #c8683f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 122, 82, 0.35);
}

@media (max-width: 768px) {
    .hero-halo { width: 120%; right: -10%; left: -10%; top: -10%; height: 170%; }
    .filament-bg { display: none; }
    .hero-content { padding: 3rem 1.5rem 4rem; text-align: center; }
    .hero-content .btn-primary { justify-self: center; }
    .hero-question { margin-bottom: 4rem; }
    .hero-name { margin-bottom: 1.2rem; }
    .hero-subtitle { margin-bottom: 1.2rem; }
    .hero-tagline { margin-bottom: 3rem; }
}

/* CORPS DE PAGE — LONG-READ */
/* One continuous cream ground: seven bands would slice up what is meant to be
   read in one go. The alt band is kept for two deliberate moments instead. */
.section {
    position: relative;
    background: var(--creme);
    padding: 4.5rem 0;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* The reading column, already the measure the art direction set on the teaser. */
.section .container {
    max-width: var(--mesure);
}

.section-titre {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--texte);
    margin-bottom: 1.4rem;
    line-height: 1.2;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
}

/* The glyph holds the first column and the gold rule sits under the title, in
   the second. On one row they competed for width and stranded short words. */
.section-titre::before {
    content: '';
    grid-area: 1 / 1;
    width: 0;
    height: 2.2em;
    background: center / contain no-repeat;
    opacity: 0.85;
}

.section-titre::after {
    content: '';
    grid-area: 2 / 2;
    width: 2.5em;
    height: 2px;
    background: var(--or);
    margin-top: 0.5em;
    border-radius: 1px;
}

/* Which glyph is content, so it arrives on the section as --ornament. How it
   is placed stays here: a section without one keeps its first column at zero
   width and the title simply starts at the margin. */
.section-has-ornament .section-titre::before {
    width: 2.2em;
    margin-right: 0.7em;
    background-image: var(--ornament);
}

.section-corps {
    color: var(--texte-doux);
    font-size: 1.02rem;
    line-height: 1.75;
}

/* A link written in the editor has to look like one. The base rule strips
   colour and underline from every anchor, which the navigation wants and a
   paragraph does not: inside the reading column the underline comes back, set
   thin and low so it marks the words without cutting their descenders. */
.section-corps a {
    color: var(--corail);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(224, 122, 82, 0.45);
    text-underline-offset: 0.18em;
    transition: color 0.2s, text-decoration-color 0.2s;
}

.section-corps a:hover {
    color: var(--or);
    text-decoration-color: var(--or);
}

.section-corps h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--texte);
    line-height: 1.3;
    margin: 2.5rem 0 0.8rem;
}
.section-corps h3:first-child { margin-top: 0; }

/* The only alt band inside the body: the client's own pull quote. Rare, it
   reads as a signal again instead of a metronome. */
.section-corps blockquote {
    background: var(--creme-alt);
    border-left: 2px solid var(--or);
    border-radius: 0 8px 8px 0;
    padding: 1.4rem 1.6rem;
    margin: 2.5rem 0 0;
    box-shadow: 0 2px 16px rgba(201, 151, 59, 0.08);
}
.section-corps blockquote p { color: var(--texte); }

/* IMAGES DE SECTION — placement en regard, à arbitrer
   Common to the three variants: the image sits beside the reading column and
   the side alternates on its rank in the page. Full-width was ruled out — a
   portrait plate centred alone eats half a screen and stops the reading.
   The sources are near-white, so multiply dissolves them into the cream. */
.section-image img {
    width: 100%;
    mix-blend-mode: multiply;
    /* The sources dissolve at their edges but stop at the frame, so the plate
       reads as a rectangle on the cream. The mask finishes what they start. */
    -webkit-mask-image:
        linear-gradient(to bottom, transparent 0, #000 9%, #000 88%, transparent 100%),
        linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
    mask-image:
        linear-gradient(to bottom, transparent 0, #000 9%, #000 88%, transparent 100%),
        linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
}

.section-has-image .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, var(--mesure)) minmax(0, 1fr);
    column-gap: 1.5rem;
    justify-content: center;
}
.section-has-image .container > * { grid-column: 2; }

/* The image fills the column the grid gives it, and a maximum caps how large
   that may get. A width in pixels does the opposite: it keeps its size while
   the column shrinks under it, and what sticks out is cut off by the screen. */
.section-has-image .section-image {
    grid-row: 2;
    align-self: start;
    width: 100%;
}
.section-has-image .section-image--left  { grid-column: 1; justify-self: end; }
.section-has-image .section-image--right { grid-column: 3; justify-self: start; }

/* A — dans la marge, colonne intouchée. 1352 = 680 de colonne + deux marges de
   280 + deux gouttières de 1.5rem + 2rem de padding : c'est la largeur qu'il
   faut pour que la marge tienne l'image annoncée plutôt que de la rogner. */
.img-a .section-has-image .container { max-width: 1352px; }
.img-a .section-has-image .section-image { max-width: 280px; }

/* B — débordante : l'image sort du cadre et se fait couper par l'écran.
   Ici le débordement est le sujet, donc la largeur reste fixe et c'est la
   section qui la coupe — jamais la fenêtre. */
.img-b .section-has-image { overflow-x: clip; }
.img-b .section-has-image .container { max-width: 1240px; }
.img-b .section-has-image .section-image { width: 400px; }

/* D — dans la largeur actuelle : l'image flotte dans la colonne, comme le
   portrait. Cette colonne est la même sur toute la page, à image ou non : à
   1100 px sur les seules sections illustrées, la mesure passait de 620 à côté
   du flottant à 1100 dessous puis 680 la section suivante, et la page
   respirait en accordéon. 820 px : 480 restent à côté de l'image. */
.img-d .section .container { max-width: 820px; }
.img-d .section-has-image .container { display: block; }
.img-d .section-has-image .section-image {
    width: min(300px, 34%);
    float: right;
    margin: 0 0 1.5rem 2.5rem;
}
/* Same three classes as the rule above it: with two, `float: right` outweighed
   this and no image ever went left. */
.img-d .section-has-image .section-image--left {
    float: left;
    margin: 0 2.5rem 1.5rem 0;
}
.img-d .section-corps::after { content: ''; display: block; clear: both; }

/* Le repli n'est pas une affaire de mobile mais de place : chaque variante
   abandonne la mise en regard quand la fenêtre ne peut plus la tenir.
   A et B veulent 680px de colonne, deux marges d'au moins 200 et 2rem de
   padding, soit 1192. En dessous, image pleine largeur au-dessus du texte. */
@media (max-width: 1199px) {
    .img-a .section-has-image .container,
    .img-b .section-has-image .container {
        display: block;
        max-width: var(--mesure);
    }
    .img-a .section-has-image .section-image,
    .img-b .section-has-image .section-image {
        width: 100%;
        max-width: 320px;
        float: none;
        margin: 0 auto 1.5rem;
    }
}

/* D tient plus bas que A et B : son image est une part de la colonne, pas une
   largeur fixe à côté d'elle, et se resserre avec elle jusqu'au repli commun. */
@media (max-width: 768px) {
    .img-d .section-has-image .section-image {
        width: 100%;
        max-width: 320px;
        float: none;
        margin: 0 auto 1.5rem;
    }
}

/* PORTRAIT & ARCHE */
.portrait-block {
    float: right;
    margin: 0 0 1.5rem 2rem;
    position: relative;
    z-index: 3;
}

.photo-portrait {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(201, 151, 59, 0.2);
    border: 3px solid rgba(201, 151, 59, 0.2);
}

.arche-block {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    clear: both;
    margin-top: 2rem;
    padding: 1.2rem 1.4rem;
    background: rgba(201, 151, 59, 0.06);
    border-left: 2px solid var(--or);
    border-radius: 0 8px 8px 0;
}

.logo-arche {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex-shrink: 0;
    mix-blend-mode: multiply;
}

.arche-mention {
    font-size: 0.875rem;
    color: var(--texte-doux);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .section { padding: 3rem 0; }
    .portrait-block { float: none; margin: 0 auto 1.5rem; width: fit-content; }
    .photo-portrait { width: 180px; height: 180px; }
    .arche-block { flex-direction: column; text-align: center; }
}

/* APPARITION AU SCROLL */
.js .reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.js .reveal.visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-halo { animation: none; }
    .js .reveal, .js .reveal.visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* CONTACT — le second des deux moments sur bande alt */
.section-contact {
    background: var(--creme-alt);
    overflow: hidden;
}

.contact-halo {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.contact-halo svg {
    width: 100%;
    height: 100%;
}

.contact-coordonnees {
    position: relative;
    z-index: 1;
}

.contact-lien {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--texte);
    margin-top: 1rem;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(201, 151, 59, 0.25);
    border-radius: 8px;
    background: rgba(250, 246, 240, 0.6);
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.contact-lien:hover {
    border-color: var(--or);
    background: rgba(201, 151, 59, 0.06);
    transform: translateX(3px);
}
.contact-lien svg { color: var(--or); flex-shrink: 0; }

.contact-adresse {
    margin-top: 1.2rem;
    font-size: 0.95rem;
    color: var(--texte-doux);
}

.mentions-legales {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 0.78rem;
    color: var(--texte-doux);
    opacity: 0.6;
    padding: 1.5rem 2rem 2.5rem;
}
.mentions-legales a { text-decoration: underline; opacity: 0.7; }

/* Filament de fond */
.filament-bg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.12;
    overflow: hidden;
}
.filament-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
