@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=JetBrains+Mono:wght@400;500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ══════════════════════════════════════════════════════════════════════════
   VOTRE RELAIS AU VIETNAM — feuille de style unique
   Les couleurs et les polices se règlent ici, dans :root. Tout le reste
   du fichier s'y réfère : changer une valeur change tout le site.
   ══════════════════════════════════════════════════════════════════════════ */

:root {
    --encre: #0B2B26;          /* vert très sombre — fonds et texte principal */
    --celadon: #164E43;        /* vert moyen */
    --vermillon: #C84B31;      /* rouge orangé — la couleur d'accent */
    --or: #C59B27;             /* doré — les petites mentions */
    --lin: #F9F6F0;            /* blanc cassé — le fond clair */
    --sable: #F0ECE1;          /* beige — fond des sections alternées */
    --blanc: #FFFFFF;

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, monospace;

    --largeur: 1280px;         /* largeur maximale du contenu */
    --gouttiere: 20px;
    --arrondi: 4px;
    --transition: 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--lin);
    color: var(--encre);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection { background: var(--vermillon); color: var(--lin); }

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

h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ─────────────────────────────────────────────────────── briques de mise en page */

.contenu {
    width: 100%;
    max-width: var(--largeur);
    margin: 0 auto;
    padding: 0 var(--gouttiere);
}

.section { position: relative; padding: 96px 0; }
.section--claire { background: var(--lin); }
.section--sable  { background: var(--sable); }
.section--sombre { background: var(--encre); color: var(--lin); }

/* Le grain : un voile de bruit très léger qui évite l'effet « aplat numérique ». */
.grain { position: relative; }
.grain::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.grain > * { position: relative; z-index: 1; }

/* ────────────────────────────────────────────────────────────── typographie */

.surtitre {
    margin: 0;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--vermillon);
}
.surtitre--or { color: var(--or); }

.titre-section {
    margin-top: 16px;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.12;
    color: var(--encre);
}
.section--sombre .titre-section { color: var(--lin); }

.chapeau {
    margin-top: 20px;
    max-width: 36rem;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(11, 43, 38, 0.7);
}
.section--sombre .chapeau { color: rgba(249, 246, 240, 0.7); }

.filet-or { margin-top: 24px; width: 96px; height: 1px; background: var(--or); }

/* La lettrine : la première lettre du paragraphe, en gros et en italique. */
.lettrine::first-letter {
    font-family: var(--serif);
    font-style: italic;
    font-size: 3.1em;
    line-height: 0.85;
    float: left;
    padding-right: 0.12em;
    padding-top: 0.05em;
    color: var(--vermillon);
}

/* Lu par les lecteurs d'écran, invisible à l'œil. */
.lecteur-ecran {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

/* Un chiffre dessiné en contour, sans remplissage. */
.numero-contour {
    color: transparent;
    -webkit-text-stroke: 1.2px rgba(11, 43, 38, 0.35);
}

/* ──────────────────────────────────────────────────────────────── boutons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: center;
    transition: background var(--transition), color var(--transition),
                border-color var(--transition), box-shadow var(--transition);
}
.btn:disabled { opacity: 0.55; cursor: progress; }

.btn--vermillon { background: var(--vermillon); color: var(--lin); }
.btn--vermillon:hover:not(:disabled) { background: var(--encre); box-shadow: 0 10px 30px rgba(11, 43, 38, 0.25); }

.btn--encre { background: var(--encre); color: var(--lin); }
.btn--encre:hover:not(:disabled) { background: var(--vermillon); }

.btn--or { background: var(--or); color: var(--encre); }
.btn--or:hover:not(:disabled) { background: var(--lin); }

.btn--contour { border-color: rgba(11, 43, 38, 0.25); color: var(--encre); }
.btn--contour:hover:not(:disabled) { background: var(--encre); color: var(--lin); border-color: var(--encre); }

.btn--contour-clair { border-color: rgba(249, 246, 240, 0.4); color: var(--lin); }
.btn--contour-clair:hover { border-color: var(--lin); background: rgba(249, 246, 240, 0.1); }

.btn--large { width: 100%; }
.btn--petit { padding: 9px 18px; font-size: 12px; }

/* Les flèches dessinées en CSS, pour ne dépendre d'aucune police d'icônes. */
.fleche { display: inline-block; width: 1em; height: 1em; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ──────────────────────────────────────────────────────────── en-tête du site */

.entete {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 20px 0;
    background: transparent;
    transition: background 500ms ease, padding 500ms ease, border-color 500ms ease;
    border-bottom: 1px solid transparent;
}
.entete.est-opaque {
    padding: 12px 0;
    background: rgba(249, 246, 240, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: rgba(11, 43, 38, 0.1);
}

.entete__barre {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.marque {
    font-family: var(--serif);
    /* Le nom tient sur une ligne, toujours : coupe en deux il ne se lit plus. */
    white-space: nowrap;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--lin);
    transition: color 500ms ease;
}
.entete.est-opaque .marque { color: var(--encre); }
.marque em { font-style: italic; color: var(--vermillon); }

.nav-principale { display: none; align-items: center; gap: 20px; }
.nav-principale a {
    position: relative;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(249, 246, 240, 0.85);
    transition: color 500ms ease;
}
.entete.est-opaque .nav-principale a { color: rgba(11, 43, 38, 0.8); }
.nav-principale a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 1px;
    width: 0;
    background: var(--vermillon);
    transition: width var(--transition);
}
.nav-principale a:hover::after { width: 100%; }
.nav-principale a:hover { color: var(--lin); }
.entete.est-opaque .nav-principale a:hover { color: var(--encre); }

.entete__actions { display: flex; align-items: center; gap: 12px; }

.selecteur-langue {
    display: flex;
    align-items: center;
    gap: 2px;
    border: 1px solid rgba(249, 246, 240, 0.3);
    border-radius: 999px;
    padding: 2px;
    transition: border-color 500ms ease;
}
.entete.est-opaque .selecteur-langue { border-color: rgba(11, 43, 38, 0.15); }
.selecteur-langue a {
    border-radius: 999px;
    padding: 4px 10px;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(249, 246, 240, 0.7);
    transition: all var(--transition);
}
.entete.est-opaque .selecteur-langue a { color: rgba(11, 43, 38, 0.6); }
.selecteur-langue a.est-active,
.entete.est-opaque .selecteur-langue a.est-active { background: var(--vermillon); color: var(--lin); }

.entete__devis { display: none; }

.bouton-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: 0;
    color: var(--lin);
    transition: color 500ms ease;
}
.entete.est-opaque .bouton-menu { color: var(--encre); }
.bouton-menu span {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform var(--transition), background 100ms ease;
}
.bouton-menu span::before,
.bouton-menu span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform var(--transition);
}
.bouton-menu span::before { top: -6px; }
.bouton-menu span::after  { top: 6px; }
.bouton-menu[aria-expanded="true"] span { background: transparent; }
.bouton-menu[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.bouton-menu[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

.menu-mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 24px var(--gouttiere);
    background: var(--lin);
    border-top: 1px solid rgba(11, 43, 38, 0.1);
}
.menu-mobile.est-ouvert { display: flex; }
.menu-mobile a { font-family: var(--serif); font-size: 26px; color: var(--encre); }
.menu-mobile .btn { align-self: flex-start; font-family: var(--sans); font-size: 14px; }

/* ──────────────────────────────────────────────────────────────────── hero */

.hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background: var(--encre);
}
.hero__image {
    position: absolute;
    inset: 0;
    transform: scale(1.1);
    will-change: transform;
}
.hero__image img { height: 100%; width: 100%; object-fit: cover; }
.hero::before, .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero::before {
    background: linear-gradient(to right, rgba(11, 43, 38, 0.92), rgba(11, 43, 38, 0.58) 50%, rgba(11, 43, 38, 0.2));
}
.hero::after {
    background: linear-gradient(to top, rgba(11, 43, 38, 0.82), transparent 50%, rgba(11, 43, 38, 0.3));
}
.hero__corps { position: relative; z-index: 2; width: 100%; padding-top: 160px; padding-bottom: 80px; }

.hero__surtitre {
    margin: 0 0 24px;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--or);
}

.hero__titre {
    font-size: clamp(44px, 9vw, 104px);
    line-height: 1.02;
    color: var(--lin);
}
.hero__titre > span { display: block; overflow: hidden; padding-bottom: 4px; }
.hero__titre > span > span { display: block; }
.hero__titre > span:last-child > span { font-style: italic; color: var(--vermillon); }

.hero__sous-titre {
    margin-top: 24px;
    max-width: 34rem;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(249, 246, 240, 0.82);
}

.hero__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero__actions .btn--vermillon:hover { background: var(--lin); color: var(--encre); }

.hero__garanties {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 32px;
}
.hero__garanties li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(249, 246, 240, 0.72);
}
.hero__garanties svg { width: 14px; height: 14px; color: var(--or); }

.hero__fleche {
    position: absolute;
    right: 32px;
    bottom: 32px;
    z-index: 2;
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(249, 246, 240, 0.3);
    border-radius: 999px;
    color: rgba(249, 246, 240, 0.7);
}
.hero__fleche svg { width: 18px; height: 18px; animation: sautille 1.4s infinite; }

@keyframes sautille {
    0%, 100% { transform: translateY(-15%); }
    50%      { transform: translateY(0); }
}

/* ────────────────────────────────────────────────────────── bandeau défilant */

.bandeau-defilant {
    overflow: hidden;
    padding: 16px 0;
    background: var(--vermillon);
    color: var(--lin);
    border-top: 1px solid rgba(11, 43, 38, 0.2);
    border-bottom: 1px solid rgba(11, 43, 38, 0.2);
}
.bandeau-defilant__piste {
    display: flex;
    width: max-content;
    animation: defile 42s linear infinite;
}
.bandeau-defilant__groupe { display: flex; flex-shrink: 0; align-items: center; }
.bandeau-defilant__item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 24px;
    font-family: var(--serif);
    font-size: 19px;
    font-style: italic;
    letter-spacing: 0.01em;
}
.bandeau-defilant__item::after {
    content: "✦";
    margin-left: 48px;
    font-style: normal;
    font-size: 14px;
    color: var(--or);
}

@keyframes defile {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ───────────────────────────────────────────────────────────────── manifeste */

/* « clip » plutot que « hidden » : « hidden » ferait de cette section un
   conteneur de defilement, et le sommaire collant cesserait de coller.
   Les navigateurs trop anciens pour « clip » gardent « hidden ». */
.manifeste { overflow: hidden; overflow: clip; }
.manifeste__fond {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 38%;
    opacity: 0.08;
    display: none;
    will-change: transform;
}
.manifeste__fond img { height: 100%; width: 100%; object-fit: cover; }

.manifeste__grille { margin-top: 64px; display: grid; gap: 48px; }

.manifeste__sommaire { display: none; }
.manifeste__sommaire-interne { position: sticky; top: 128px; display: flex; flex-direction: column; gap: 32px; }
.manifeste__puce {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 4px;
}
.manifeste__puce:hover .manifeste__puce-numero { color: rgba(200, 75, 49, 0.55); -webkit-text-stroke: 0; }
.manifeste__puce:hover .manifeste__puce-trait { width: 48px; background: rgba(200, 75, 49, 0.55); }
.manifeste__puce:focus-visible { outline: 2px solid var(--vermillon); outline-offset: 10px; }
.manifeste__puce-numero {
    font-family: var(--serif);
    font-style: italic;
    font-size: 60px;
    line-height: 1;
    transition: color 500ms ease;
}
.manifeste__puce-trait { height: 1px; width: 28px; background: rgba(11, 43, 38, 0.25); transition: all 500ms ease; }
.manifeste__puce.est-active .manifeste__puce-numero { color: var(--vermillon); -webkit-text-stroke: 0; }
.manifeste__puce.est-active .manifeste__puce-trait { width: 64px; background: var(--vermillon); }

.manifeste__chapitres { display: flex; flex-direction: column; gap: 64px; }
.chapitre {
    border-top: 2px solid rgba(11, 43, 38, 0.15);
    padding-top: 32px;
    transition: border-color 700ms ease;
    /* l'entete est fixe : sans cette marge, le titre vise se glisse dessous */
    scroll-margin-top: 128px;
}
.chapitre.est-active { border-top-color: var(--vermillon); }
.chapitre__entete { display: flex; align-items: baseline; gap: 20px; }
.chapitre__numero {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(36px, 6vw, 48px);
    line-height: 1;
    color: rgba(11, 43, 38, 0.2);
    transition: color 700ms ease;
}
.chapitre.est-active .chapitre__numero { color: var(--vermillon); }
.chapitre__titre { font-size: clamp(24px, 4vw, 38px); }
.chapitre__texte {
    margin-top: 24px;
    max-width: 42rem;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(11, 43, 38, 0.75);
}

/* ───────────────────────────────────────────────────────────────── l'équipe */

.equipe__grille { margin-top: 64px; display: grid; gap: 48px; align-items: start; }

.cadre-photo { position: relative; }
.cadre-photo::before {
    content: "";
    position: absolute;
    left: -12px;
    top: -12px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(200, 75, 49, 0.5);
}
.cadre-photo img { position: relative; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.cadre-photo figcaption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 10px 16px;
    background: rgba(11, 43, 38, 0.8);
    backdrop-filter: blur(4px);
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--lin);
}

.equipe__cartes { display: flex; flex-direction: column; gap: 20px; }
.carte-personne {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border: 1px solid rgba(249, 246, 240, 0.15);
    background: rgba(22, 78, 67, 0.3);
    transition: border-color 500ms ease, background 500ms ease;
}
.carte-personne:hover { border-color: rgba(200, 75, 49, 0.6); background: rgba(22, 78, 67, 0.5); }
.carte-personne__initiales {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(197, 155, 39, 0.4);
    border-radius: 999px;
    background: rgba(240, 236, 225, 0.1);
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--or);
    transition: transform 500ms ease;
}
.carte-personne:hover .carte-personne__initiales { transform: scale(1.05); }
.carte-personne h3 { font-size: 21px; color: var(--lin); }
.carte-personne__role {
    margin-top: 2px;
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--vermillon);
}
.carte-personne__bio {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(249, 246, 240, 0.7);
}

/* ────────────────────────────────────────────────────── services expatriés */

.entete-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.bascule-devise {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}
.bascule-devise__boutons {
    display: flex;
    border: 1px solid rgba(11, 43, 38, 0.2);
    border-radius: 999px;
    background: var(--lin);
    padding: 4px;
}
.bascule-devise__boutons button {
    border: 0;
    border-radius: 999px;
    background: none;
    padding: 6px 16px;
    font-family: var(--mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(11, 43, 38, 0.6);
    transition: all var(--transition);
}
.bascule-devise__boutons button.est-active { background: var(--encre); color: var(--lin); }
.bascule-devise__note { font-family: var(--mono); font-size: 11px; color: rgba(11, 43, 38, 0.5); }

.grille-services { margin-top: 56px; display: grid; gap: 24px; }

.carte-service {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(11, 43, 38, 0.12);
    background: var(--blanc);
    padding: 28px;
    transition: transform 500ms ease, box-shadow 500ms ease, border-color 500ms ease;
}
.carte-service:hover { transform: translateY(-6px); box-shadow: 0 25px 50px -12px rgba(11, 43, 38, 0.25); border-color: rgba(200, 75, 49, 0.5); }
.carte-service::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--vermillon);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 500ms ease;
}
.carte-service:hover::before { transform: scaleX(1); }

.carte-service--sombre { border-color: var(--encre); background: var(--encre); }
.carte-service--sombre:hover { border-color: var(--encre); }
.carte-service--sombre::before { background: var(--or); }

.carte-service__entete { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.carte-service__nom { font-size: 24px; line-height: 1.3; }
.carte-service--sombre .carte-service__nom { color: var(--lin); }
.carte-service__rang { font-family: var(--mono); font-size: 12px; padding-top: 6px; color: rgba(11, 43, 38, 0.25); }
.carte-service--sombre .carte-service__rang { color: rgba(249, 246, 240, 0.3); }
.carte-service__filet { margin-top: 12px; width: 40px; height: 1px; background: rgba(197, 155, 39, 0.6); }

.liste-points { display: flex; flex-direction: column; gap: 12px; }
.liste-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(11, 43, 38, 0.75);
}
.liste-points svg { width: 16px; height: 16px; margin-top: 4px; flex-shrink: 0; color: var(--vermillon); }
.carte-service--sombre .liste-points li { color: rgba(249, 246, 240, 0.7); }
.carte-service--sombre .liste-points svg { color: var(--or); }

.carte-service__points { margin-top: 20px; flex: 1; }

.carte-service__prix {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(11, 43, 38, 0.1);
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.carte-service--sombre .carte-service__prix { border-top-color: rgba(249, 246, 240, 0.15); }
.montant { font-family: var(--serif); font-size: 38px; letter-spacing: -0.02em; color: var(--encre); }
.montant--devis { font-size: 30px; font-style: italic; color: var(--or); }
.unite { margin-left: 8px; font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(11, 43, 38, 0.5); }

.carte-service__actions { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.carte-service__actions .btn { flex: 1; padding-left: 16px; padding-right: 16px; }
.carte-service--sombre .btn--contour { border-color: rgba(197, 155, 39, 0.7); color: var(--or); }
.carte-service--sombre .btn--contour:hover { background: var(--or); color: var(--encre); border-color: var(--or); }

.rond-fleche {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 2px solid var(--vermillon);
    border-radius: 999px;
    color: var(--vermillon);
    transition: all var(--transition);
}
.rond-fleche:hover { background: var(--vermillon); color: var(--lin); box-shadow: 0 10px 20px rgba(200, 75, 49, 0.3); }
.rond-fleche svg { width: 16px; height: 16px; }
.carte-service--sombre .rond-fleche { border-color: rgba(197, 155, 39, 0.7); color: var(--or); }
.carte-service--sombre .rond-fleche:hover { background: var(--or); color: var(--encre); }

/* ───────────────────────────────────────────────────────────────── circuits */

.liste-circuits { margin-top: 64px; display: flex; flex-direction: column; gap: 80px; }

.circuit { display: grid; gap: 32px; align-items: center; }
.circuit__visuel { position: relative; display: block; overflow: hidden; }
.circuit__visuel img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 700ms ease;
}
.circuit__visuel:hover img { transform: scale(1.05); }
.circuit__badge {
    position: absolute;
    left: 16px;
    top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(11, 43, 38, 0.8);
    backdrop-filter: blur(4px);
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--lin);
}
.circuit__badge svg { width: 13px; height: 13px; color: var(--or); }

.ligne-infos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(11, 43, 38, 0.55);
}
.ligne-infos span { display: flex; align-items: center; gap: 6px; }
.ligne-infos svg { width: 13px; height: 13px; color: var(--vermillon); }
.ligne-infos--claire { color: rgba(249, 246, 240, 0.75); }
.ligne-infos--claire svg { color: var(--or); }

.circuit__titre { margin-top: 16px; font-size: clamp(26px, 4.5vw, 38px); }
.circuit__titre a { transition: color var(--transition); }
.circuit__titre a:hover { color: var(--vermillon); }
.circuit__resume {
    margin-top: 16px;
    max-width: 32rem;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(11, 43, 38, 0.7);
}

.etiquettes { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.etiquettes li, .etiquette {
    border: 1px solid rgba(11, 43, 38, 0.15);
    background: var(--blanc);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 300;
    color: rgba(11, 43, 38, 0.7);
}

.circuit__pied {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(11, 43, 38, 0.12);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 20px 32px;
}
.circuit__prix-vnd { margin-top: 4px; font-family: var(--mono); font-size: 11px; color: rgba(11, 43, 38, 0.45); }
.circuit__boutons { display: flex; flex-wrap: wrap; gap: 12px; }

/* La fenêtre de l'itinéraire, ouverte par « Voir l'itinéraire ». */
dialog.fenetre {
    width: min(640px, calc(100vw - 32px));
    max-height: 85vh;
    overflow-y: auto;
    border: 0;
    padding: 24px;
    background: var(--lin);
    color: var(--encre);
}
dialog.fenetre::backdrop { background: rgba(11, 43, 38, 0.6); backdrop-filter: blur(3px); }
.fenetre__fermer {
    position: sticky;
    top: 0;
    float: right;
    border: 0;
    background: none;
    font-size: 26px;
    line-height: 1;
    color: rgba(11, 43, 38, 0.45);
}
.fenetre__fermer:hover { color: var(--vermillon); }
.fenetre h3 { font-size: 26px; }
.fenetre img { margin-top: 12px; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.fenetre__note {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(11, 43, 38, 0.12);
    font-size: 12px;
    font-weight: 300;
    color: rgba(11, 43, 38, 0.55);
}

.itineraire { margin-top: 12px; display: flex; flex-direction: column; }
.itineraire li { display: flex; gap: 24px; border-top: 1px solid rgba(11, 43, 38, 0.12); padding: 16px 0; }
.itineraire li:first-child { border-top: 0; }
.itineraire__heure {
    width: 96px;
    flex-shrink: 0;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--or);
}
.itineraire__texte { font-size: 16px; font-weight: 300; line-height: 1.6; color: rgba(11, 43, 38, 0.8); }

/* ────────────────────────────────────────────────────────────────── journal */

.grille-journal { margin-top: 56px; display: grid; gap: 24px; }

.carte-article {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(11, 43, 38, 0.12);
    background: var(--blanc);
    transition: transform 500ms ease, box-shadow 500ms ease;
}
.carte-article:hover { transform: translateY(-6px); box-shadow: 0 25px 50px -12px rgba(11, 43, 38, 0.25); }
.carte-article__image { overflow: hidden; }
.carte-article__image img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 700ms ease; }
.carte-article:hover .carte-article__image img { transform: scale(1.05); }
.carte-article__corps { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.carte-article__meta {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 2px 12px;
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}
/* Categorie et date ne se coupent jamais au milieu d'un mot : si les deux
   ne tiennent pas sur une ligne, la date passe dessous, toujours a droite. */
.carte-article__categorie { white-space: nowrap; color: var(--vermillon); }
.carte-article__date { white-space: nowrap; margin-left: auto; color: rgba(11, 43, 38, 0.45); }
.carte-article h3 { margin-top: 12px; font-size: 20px; line-height: 1.35; }
.carte-article__extrait {
    margin-top: 12px;
    flex: 1;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(11, 43, 38, 0.65);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.carte-article__lire {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color var(--transition);
}
.carte-article:hover .carte-article__lire { color: var(--vermillon); }

.squelette {
    height: 320px;
    border: 1px solid rgba(11, 43, 38, 0.1);
    background: var(--sable);
    animation: pulsation 1.8s ease-in-out infinite;
}
@keyframes pulsation { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

/* ─────────────────────────────────────────────────────────── contact & devis */

.contact__grille { display: grid; gap: 64px; }

.canaux { margin-top: 48px; display: flex; flex-direction: column; gap: 16px; }
.canaux__titre { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; color: var(--or); }
.canal {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(249, 246, 240, 0.15);
    transition: border-color var(--transition);
}
.canal:hover { border-color: var(--vermillon); }
.canal__nom { font-size: 14px; font-weight: 600; color: var(--lin); }
.canal__valeur { font-size: 12px; font-weight: 300; color: rgba(249, 246, 240, 0.55); }
.canal svg { width: 20px; height: 20px; }
.pastille-zalo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background: #0068FF;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    color: #fff;
}

.formulaire { background: var(--lin); padding: 28px; color: var(--encre); }
.formulaire__grille { display: grid; gap: 20px; }
.champ label,
.etiquette-champ {
    display: block;
    margin-bottom: 6px;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(11, 43, 38, 0.6);
}
.champ input,
.champ select,
.champ textarea {
    width: 100%;
    border: 1px solid rgba(11, 43, 38, 0.2);
    border-radius: 0;
    background: var(--blanc);
    padding: 12px 16px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--encre);
    outline: none;
    transition: border-color var(--transition);
}
.champ input:focus,
.champ select:focus,
.champ textarea:focus { border-color: var(--vermillon); }
.champ textarea { resize: vertical; min-height: 110px; }
.champ input::placeholder { color: rgba(11, 43, 38, 0.35); }

.formulaire__envoi { margin-top: 28px; }

/* Le message de confirmation ou d'erreur après envoi. */
.message { margin-top: 20px; padding: 14px 18px; font-size: 14px; display: none; }
.message.est-visible { display: block; }
.message--succes { background: rgba(22, 78, 67, 0.1); color: var(--celadon); border-left: 3px solid var(--celadon); }
.message--erreur { background: rgba(200, 75, 49, 0.1); color: var(--vermillon); border-left: 3px solid var(--vermillon); }

/* Pot de miel anti-robot : hors de l'ecran, jamais lu par un lecteur d'ecran,
   jamais atteint au clavier. Seul un robot qui remplit tout le trouve. */
.pot-de-miel {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ──────────────────────────────────────────────────────────── pied de page */

.pied {
    background: var(--encre);
    color: var(--lin);
    border-top: 1px solid rgba(249, 246, 240, 0.1);
    padding: 56px 0;
}
.pied__grille { display: grid; gap: 40px; }
.pied__marque { font-family: var(--serif); font-size: 32px; }
.pied__marque em { font-style: italic; color: var(--vermillon); }
.pied__signature {
    margin-top: 16px;
    max-width: 20rem;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(249, 246, 240, 0.55);
}
.pied__titre { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; color: var(--or); }
.pied__liens { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; font-size: 14px; font-weight: 300; color: rgba(249, 246, 240, 0.7); }
.pied__liens a { width: fit-content; transition: color var(--transition); }
.pied__liens a:hover { color: var(--lin); }
.pied__admin { color: rgba(249, 246, 240, 0.4); }
.pied__bas {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(249, 246, 240, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(249, 246, 240, 0.4);
}
.pied__legal { text-transform: uppercase; letter-spacing: 0.18em; }

/* ──────────────────────────────────────────── bulles de contact flottantes */

.bulles {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bulle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(11, 43, 38, 0.3);
    transition: transform var(--transition), box-shadow var(--transition);
}
.bulle:hover { transform: scale(1.1); box-shadow: 0 20px 35px rgba(11, 43, 38, 0.35); }
.bulle svg { width: 22px; height: 22px; }
.bulle--whatsapp { background: #25D366; }
.bulle--zalo { background: #0068FF; font-family: var(--mono); font-size: 12px; font-weight: 700; }

/* ─────────────────────────────────────────────── pages service et circuit */

.page-interieure { padding-top: 112px; padding-bottom: 96px; }

.fil-ariane {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(11, 43, 38, 0.45);
}
.fil-ariane a { transition: color var(--transition); }
.fil-ariane a:hover { color: var(--vermillon); }
.fil-ariane__actuel { color: var(--vermillon); }
.fil-ariane--claire { color: rgba(249, 246, 240, 0.6); }
.fil-ariane--claire a:hover, .fil-ariane--claire .fil-ariane__actuel { color: var(--or); }

.titre-fiche {
    margin-top: 16px;
    max-width: 48rem;
    font-size: clamp(34px, 6vw, 60px);
    line-height: 1.08;
}

.fiche__grille { margin-top: 48px; display: grid; gap: 48px; }

.fiche__intro {
    max-width: 42rem;
    font-family: var(--serif);
    font-size: clamp(20px, 3vw, 25px);
    font-weight: 400;
    line-height: 1.55;
    color: rgba(11, 43, 38, 0.85);
}

.titre-bloc {
    margin-top: 64px;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--vermillon);
}

.etapes { margin-top: 24px; display: flex; flex-direction: column; }
.etapes li { display: flex; gap: 24px; border-top: 1px solid rgba(11, 43, 38, 0.12); padding: 24px 0; }
.etapes__numero { font-family: var(--serif); font-style: italic; font-size: 38px; line-height: 1; color: rgba(200, 75, 49, 0.4); }
.etapes p { padding-top: 6px; font-size: 17px; font-weight: 300; line-height: 1.7; color: rgba(11, 43, 38, 0.8); }

.faq { margin-top: 24px; display: flex; flex-direction: column; }
.faq details { border-top: 1px solid rgba(11, 43, 38, 0.12); padding: 20px 0; }
.faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    list-style: none;
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 500;
    transition: color var(--transition);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--vermillon); }
.faq summary::after {
    content: "+";
    font-family: var(--mono);
    font-size: 20px;
    color: var(--vermillon);
    transition: transform var(--transition);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin-top: 16px; max-width: 42rem; font-size: 16px; font-weight: 300; line-height: 1.7; color: rgba(11, 43, 38, 0.7); }

.lien-retour {
    margin-top: 56px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(11, 43, 38, 0.5);
    transition: color var(--transition);
}
.lien-retour:hover { color: var(--vermillon); }
.lien-retour svg { width: 14px; height: 14px; }

.carte-prix {
    border: 1px solid rgba(11, 43, 38, 0.12);
    background: var(--blanc);
    padding: 32px;
    box-shadow: 0 20px 45px -20px rgba(11, 43, 38, 0.3);
}
.carte-prix__label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(11, 43, 38, 0.5); }
.carte-prix__montant { margin-top: 12px; }
.carte-prix__montant .montant { font-size: 48px; }
.carte-prix__vnd { margin-top: 4px; font-family: var(--mono); font-size: 11px; color: rgba(11, 43, 38, 0.45); }
.carte-prix .liste-points { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(11, 43, 38, 0.1); }
.carte-prix .btn { margin-top: 12px; }
.carte-prix .btn:first-of-type { margin-top: 32px; }

.acompte {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(11, 43, 38, 0.1);
}
.acompte__ligne { display: flex; align-items: center; justify-content: space-between; font-size: 14px; color: rgba(11, 43, 38, 0.7); }
.acompte__ligne strong { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--vermillon); }
.acompte__note { margin-top: 8px; font-size: 12px; font-weight: 300; line-height: 1.6; color: rgba(11, 43, 38, 0.5); }

/* La bannière photo en haut d'une fiche circuit. */
.banniere { position: relative; height: 46vh; min-height: 340px; overflow: hidden; }
.banniere img { height: 100%; width: 100%; object-fit: cover; }
.banniere::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 43, 38, 0.88), rgba(11, 43, 38, 0.3) 55%, rgba(11, 43, 38, 0.2));
}
.banniere__corps { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding-bottom: 40px; }
.banniere__titre { margin-top: 12px; max-width: 48rem; font-size: clamp(32px, 6vw, 60px); line-height: 1.08; color: var(--lin); }
.banniere .ligne-infos { margin-top: 16px; }

/* ─────────────────────────────────────────── page « Qui sommes-nous » */

/* Les fiches d'équipe sont dessinées pour le fond sombre de l'accueil ;
   sur cette page, le fond est clair. */
.carte-personne--claire {
    border-color: rgba(11, 43, 38, 0.12);
    background: var(--blanc);
}
.carte-personne--claire:hover { background: var(--blanc); border-color: rgba(200, 75, 49, 0.5); }
.carte-personne--claire h3 { color: var(--encre); }
.carte-personne--claire .carte-personne__bio { color: rgba(11, 43, 38, 0.75); }
.carte-personne--claire .carte-personne__initiales {
    border-color: rgba(200, 75, 49, 0.35);
    background: rgba(200, 75, 49, 0.06);
    color: var(--vermillon);
}

/* Les deux autres endroits où nous trouver : le blog et l'application. */
.grille-ailleurs { margin-top: 24px; display: grid; gap: 16px; }
.carte-ailleurs {
    display: block;
    border: 1px solid rgba(11, 43, 38, 0.12);
    background: var(--blanc);
    padding: 24px;
    transition: transform 500ms ease, box-shadow 500ms ease, border-color 500ms ease;
}
.carte-ailleurs:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 75, 49, 0.5);
    box-shadow: 0 18px 38px -18px rgba(11, 43, 38, 0.3);
}
.carte-ailleurs h3 { font-size: 20px; }
.carte-ailleurs p {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(11, 43, 38, 0.7);
}
.carte-ailleurs__cta {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--vermillon);
}

@media (min-width: 640px) {
    .grille-ailleurs { grid-template-columns: repeat(2, 1fr); }
}

/* ──────────────────────────────────────────────────── page de paiement */

.page-resultat {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    background: var(--lin);
}
.carte-resultat {
    width: 100%;
    max-width: 520px;
    border: 1px solid rgba(11, 43, 38, 0.12);
    background: var(--blanc);
    padding: 40px;
    text-align: center;
}
.carte-resultat svg { width: 44px; height: 44px; margin: 0 auto; }
.carte-resultat h1 { margin-top: 20px; font-size: 30px; }
.carte-resultat p { margin-top: 12px; font-size: 14px; font-weight: 300; color: rgba(11, 43, 38, 0.65); }
.carte-resultat .btn { margin-top: 32px; }
.icone--succes { color: var(--celadon); }
.icone--erreur { color: var(--vermillon); }
.icone--attente { color: var(--or); animation: tourne 1s linear infinite; }
@keyframes tourne { to { transform: rotate(360deg); } }

/* ──────────────────────────────────────────────────────── espace admin */

.page-connexion {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    background: var(--encre);
}
.boite-connexion { width: 100%; max-width: 420px; background: var(--lin); padding: 32px; }
.boite-connexion .marque { color: var(--encre); font-size: 30px; }
.boite-connexion__sous-titre { margin-top: 8px; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(11, 43, 38, 0.5); }
.boite-connexion form { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.boite-connexion .lien-discret { text-align: center; font-size: 12px; color: rgba(11, 43, 38, 0.5); }
.boite-connexion .lien-discret:hover { color: var(--encre); }

.admin { min-height: 100vh; background: var(--lin); }
.admin__entete { border-bottom: 1px solid rgba(11, 43, 38, 0.1); background: var(--blanc); padding: 16px 0; }
.admin__entete-barre { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.admin__marque { font-family: var(--serif); font-size: 24px; }
.admin__marque em { font-style: italic; color: var(--vermillon); }
.admin__marque span { margin-left: 8px; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(11, 43, 38, 0.4); }
.admin__actions { display: flex; align-items: center; gap: 12px; }
.admin__email { display: none; font-size: 12px; color: rgba(11, 43, 38, 0.5); }
.admin__corps { padding: 40px 0; }

.stats { display: grid; gap: 16px; }
.stat { border: 1px solid rgba(11, 43, 38, 0.12); background: var(--blanc); padding: 24px; }
.stat__label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(11, 43, 38, 0.5); }
.stat__valeur { margin-top: 8px; font-family: var(--serif); font-size: 38px; }
.stat__valeur--vermillon { color: var(--vermillon); }
.stat__valeur--celadon { color: var(--celadon); }

.admin__barre-outils { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.onglets, .filtres { display: flex; flex-wrap: wrap; gap: 8px; }
.onglet {
    border: 1px solid rgba(11, 43, 38, 0.2);
    border-radius: 999px;
    background: none;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(11, 43, 38, 0.6);
    transition: all var(--transition);
}
.onglet.est-actif { background: var(--encre); color: var(--lin); border-color: var(--encre); }
.filtre {
    border: 1px solid rgba(11, 43, 38, 0.2);
    border-radius: 999px;
    padding: 6px 16px;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(11, 43, 38, 0.6);
    transition: all var(--transition);
}
.filtre.est-actif { background: var(--vermillon); color: var(--lin); border-color: var(--vermillon); }

.tableau-enveloppe { margin-top: 24px; overflow-x: auto; border: 1px solid rgba(11, 43, 38, 0.12); background: var(--blanc); }
table.tableau { width: 100%; min-width: 760px; border-collapse: collapse; text-align: left; font-size: 14px; }
table.tableau th {
    border-bottom: 1px solid rgba(11, 43, 38, 0.1);
    padding: 14px 20px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(11, 43, 38, 0.5);
}
table.tableau td { border-bottom: 1px solid rgba(11, 43, 38, 0.08); padding: 16px 20px; vertical-align: top; }
table.tableau tbody tr:hover { background: rgba(240, 236, 225, 0.5); }
.cellule-date { font-family: var(--mono); font-size: 12px; color: rgba(11, 43, 38, 0.6); white-space: nowrap; }
.cellule-vide { padding: 40px 20px; text-align: center; font-weight: 300; color: rgba(11, 43, 38, 0.45); }
.client-nom { font-weight: 600; }
.client-mail { font-size: 12px; color: var(--vermillon); }
.client-mail:hover { text-decoration: underline; }
.client-tel { font-size: 12px; color: rgba(11, 43, 38, 0.55); }
.details-cellule { font-size: 12px; font-weight: 300; color: rgba(11, 43, 38, 0.7); max-width: 22rem; }
.details-cellule em { display: block; margin-top: 4px; }

.select-statut {
    border: 0;
    border-radius: 999px;
    padding: 6px 12px;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    outline: none;
}
.statut--new       { background: rgba(200, 75, 49, 0.1); color: var(--vermillon); }
.statut--contacted { background: rgba(197, 155, 39, 0.15); color: #8d6d15; }
.statut--confirmed { background: rgba(22, 78, 67, 0.1); color: var(--celadon); }
.statut--closed    { background: rgba(11, 43, 38, 0.1); color: rgba(11, 43, 38, 0.6); }

.jeton { display: inline-block; border-radius: 999px; padding: 5px 12px; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
.jeton--paye { background: rgba(22, 78, 67, 0.1); color: var(--celadon); }
.jeton--attente { background: rgba(197, 155, 39, 0.15); color: #8d6d15; }

/* ────────────────────────────────────────────────── apparition au défilement */

/* Par defaut tout est visible : si le JavaScript ne demarre pas, la page
   reste entierement lisible. Le masquage n'existe que sous html.js, classe
   ajoutee par un script en tete de page. */
html.js .apparait {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
html.js .apparait.est-visible { opacity: 1; transform: none; }

/* Le hero s'anime tout seul au chargement, sans attendre le défilement. */
.hero__titre > span > span { animation: monte 900ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero__titre > span:nth-child(1) > span { animation-delay: 0.30s; }
.hero__titre > span:nth-child(2) > span { animation-delay: 0.46s; }
.hero__titre > span:nth-child(3) > span { animation-delay: 0.62s; }
@keyframes monte { from { transform: translateY(110%); } to { transform: translateY(0); } }

.fondu { animation: fondu 800ms ease both; }
.fondu--1 { animation-delay: 0.15s; }
.fondu--2 { animation-delay: 0.90s; }
.fondu--3 { animation-delay: 1.05s; }
.fondu--4 { animation-delay: 1.25s; }
.fondu--5 { animation-delay: 1.60s; }
@keyframes fondu { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* Respect du réglage système « réduire les animations ». */
@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;
    }
    html.js .apparait { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════════════════════════════════════════
   ÉCRANS PLUS LARGES
   Le site est écrit d'abord pour le téléphone ; ces blocs l'élargissent.
   ══════════════════════════════════════════════════════════════════════════ */

@media (min-width: 640px) {
    :root { --gouttiere: 32px; }

    .section { padding: 112px 0; }
    .entete__devis { display: inline-flex; }
    .hero__fleche { display: flex; }
    .hero__corps { padding-bottom: 112px; }
    .grille-services { grid-template-columns: repeat(2, 1fr); }
    .grille-journal { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(3, 1fr); }
    .formulaire { padding: 40px; }
    .formulaire__grille { grid-template-columns: repeat(2, 1fr); }
    .formulaire__grille .champ--large { grid-column: 1 / -1; }
    .formulaire__envoi { width: auto; }
    .pied__grille { grid-template-columns: repeat(3, 1fr); }
    .pied__bas { flex-direction: row; align-items: center; justify-content: space-between; }
    .admin__email { display: block; }
    .bascule-devise { align-items: flex-end; }
    .page-interieure { padding-top: 144px; }
    dialog.fenetre { padding: 32px; }
}

@media (min-width: 1024px) {
    .section { padding: 144px 0; }

    .manifeste__fond { display: block; }
    .manifeste__grille { grid-template-columns: 280px 1fr; gap: 80px; }
    .manifeste__sommaire { display: block; }
    .manifeste__chapitres { gap: 80px; }

    .equipe__grille { grid-template-columns: repeat(2, 1fr); gap: 64px; }
    .grille-services { grid-template-columns: repeat(3, 1fr); }
    .grille-journal { grid-template-columns: repeat(4, 1fr); }

    .entete-section { flex-direction: row; align-items: flex-end; justify-content: space-between; }

    .circuit { grid-template-columns: repeat(2, 1fr); gap: 56px; }
    .circuit--inverse .circuit__visuel { order: 2; }

    .contact__grille { grid-template-columns: 1fr 1.2fr; }

    .fiche__grille { grid-template-columns: 1fr 380px; gap: 64px; }
    .fiche__colonne-laterale { position: sticky; top: 128px; align-self: start; }
}

/* La barre compte six liens, plus les langues et le bouton de devis : en
   dessous de 1200 px elle deviendrait illisible, donc on garde le menu. */
@media (min-width: 1200px) {
    .nav-principale { display: flex; }
    .bouton-menu { display: none; }
    .menu-mobile { display: none !important; }
}
