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

    :root {
      --void:      #04060f;
      --deep:      #080c1a;
      --gold:      #c8a96e;
      --gold-dim:  #7a6340;
      --silver:    #a8b4c8;
      --muted:     #4a5168;
      --white:     #e8e4dc;
    }

    html, body { height: 100%; overflow-x: hidden; }

    body {
      background: var(--void);
      color: var(--white);
      font-family: 'Cormorant Garamond', Georgia, serif;
      min-height: 100vh;
      position: relative;
    }

    /* ── Canvas étoilé ── */
    #cosmos {
      position: fixed;
      inset: 0;
      z-index: 0;
    }

    /* ── Voile de brume ── */
    .nebula {
      position: fixed;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        radial-gradient(ellipse 60% 40% at 30% 60%, rgba(30,20,60,.45) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 75% 30%, rgba(10,30,50,.35) 0%, transparent 65%);
    }

    /* ── Contenu ── */
    .page {
      position: relative;
      z-index: 2;
      min-height: 100vh;
      display: grid;
      grid-template-rows: auto 1fr auto;
      padding: 0 clamp(24px, 6vw, 80px);
    }

    /* Header */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 36px 0 28px;
      border-bottom: 1px solid rgba(200,169,110,.12);
      animation: rise .8s ease both;
    }

    .logo-wrap img {
      height: 38px;
      filter: brightness(.85) sepia(.3);
    }

    .year-tag {
      font-family: 'Raleway', sans-serif;
      font-weight: 200;
      font-size: 11px;
      letter-spacing: .25em;
      color: var(--muted);
      text-transform: uppercase;
    }

    /* ── Étoile centrale ── */
    main {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 64px 0;
      gap: 0;
    }

    .star-scene {
      position: relative;
      width: 180px;
      height: 180px;
      margin-bottom: 48px;
      animation: rise 1s .2s ease both;
    }

    /* Halo mourant */
    .halo {
      position: absolute;
      inset: -30px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200,169,110,.18) 0%, transparent 65%);
      animation: halo-pulse 4s ease-in-out infinite;
    }

    /* Étoile SVG */
    .star-svg {
      width: 100%;
      height: 100%;
      animation: star-dim 6s ease-in-out infinite;
      filter: drop-shadow(0 0 18px rgba(200,169,110,.6));
    }

    /* Points lumineux orbitaux */
    .orbit {
      position: absolute;
      inset: 0;
      animation: orbit-spin 18s linear infinite;
    }
    .orbit-dot {
      position: absolute;
      width: 3px; height: 3px;
      border-radius: 50%;
      background: var(--silver);
      opacity: .5;
    }
    .orbit-dot:nth-child(1) { top: 4px;  left: 50%; transform: translateX(-50%); }
    .orbit-dot:nth-child(2) { bottom: 4px; left: 50%; transform: translateX(-50%); }
    .orbit-dot:nth-child(3) { left: 4px;  top: 50%; transform: translateY(-50%); }
    .orbit-dot:nth-child(4) { right: 4px; top: 50%; transform: translateY(-50%); }

    /* ── Texte ── */
    .eyebrow {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: 10px;
      letter-spacing: .4em;
      text-transform: uppercase;
      color: var(--gold-dim);
      margin-bottom: 20px;
      animation: rise .8s .4s ease both;
      opacity: 0;
      animation-fill-mode: both;
    }

    h1 {
      font-size: clamp(32px, 6vw, 62px);
      font-weight: 300;
      line-height: 1.15;
      letter-spacing: -.02em;
      color: var(--white);
      margin-bottom: 8px;
      animation: rise .8s .5s ease both;
      opacity: 0;
      animation-fill-mode: both;
    }

    h1 em {
      font-style: italic;
      color: var(--gold);
    }

    .subtitle {
      font-size: clamp(14px, 2vw, 18px);
      font-weight: 300;
      font-style: italic;
      color: var(--silver);
      margin-bottom: 40px;
      animation: rise .8s .6s ease both;
      opacity: 0;
      animation-fill-mode: both;
    }

    /* Séparateur ornemental */
    .ornament {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 40px;
      animation: rise .8s .65s ease both;
      opacity: 0;
      animation-fill-mode: both;
    }
    .ornament-line {
      width: 60px;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold-dim));
    }
    .ornament-line:last-child {
      background: linear-gradient(to left, transparent, var(--gold-dim));
    }
    .ornament-star {
      font-size: 14px;
      color: var(--gold);
      opacity: .7;
    }

    /* Corps du message */
    .message {
      max-width: 580px;
      font-size: clamp(15px, 2vw, 18px);
      font-weight: 300;
      line-height: 1.85;
      color: rgba(232,228,220,.75);
      margin-bottom: 48px;
      animation: rise .8s .7s ease both;
      opacity: 0;
      animation-fill-mode: both;
    }

    .message p + p { margin-top: 1.2em; }

    .message strong {
      font-weight: 600;
      color: var(--white);
      font-style: italic;
    }

    /* Date */
    .closing-date {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      border: 1px solid rgba(200,169,110,.2);
      border-radius: 4px;
      padding: 16px 32px;
      margin-bottom: 48px;
      animation: rise .8s .8s ease both;
      opacity: 0;
      animation-fill-mode: both;
    }
    .closing-date .label {
      font-family: 'Raleway', sans-serif;
      font-size: 9px;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .closing-date .date {
      font-size: 22px;
      font-weight: 400;
      color: var(--gold);
      letter-spacing: .05em;
    }

    /* Bloc relais */
    .relay {
      max-width: 540px;
      margin-bottom: 40px;
      border: 1px solid rgba(168,180,200,.2);
      border-left: 3px solid var(--gold);
      border-radius: 4px;
      padding: 24px 28px;
      text-align: left;
      background: rgba(255,255,255,.025);
      animation: rise .8s .85s ease both;
      opacity: 0;
      animation-fill-mode: both;
    }
    .relay-eyebrow {
      font-family: 'Raleway', sans-serif;
      font-size: 9px;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--gold-dim);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .relay-eyebrow::before {
      content: '✦';
      font-size: 10px;
      color: var(--gold);
    }
    .relay h2 {
      font-size: clamp(16px, 2.5vw, 20px);
      font-weight: 400;
      color: var(--white);
      margin-bottom: 10px;
      letter-spacing: -.01em;
    }
    .relay p {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.75;
      color: rgba(232,228,220,.65);
    }
    .relay p strong {
      color: var(--silver);
      font-weight: 400;
      font-style: italic;
    }
    .relay-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: 16px;
      font-family: 'Raleway', sans-serif;
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid rgba(200,169,110,.3);
      padding-bottom: 2px;
      transition: border-color .2s, color .2s;
    }
    .relay-link:hover {
      color: #f0d898;
      border-color: #f0d898;
    }
    .relay-link::after { content: '→'; }

    /* CTA contact */
    .contact-line {
      font-size: 14px;
      color: var(--muted);
      animation: rise .8s .9s ease both;
      opacity: 0;
      animation-fill-mode: both;
    }
    .contact-line a {
      color: var(--silver);
      text-decoration: none;
      border-bottom: 1px solid rgba(168,180,200,.25);
      transition: color .2s, border-color .2s;
    }
    .contact-line a:hover {
      color: var(--gold);
      border-color: var(--gold);
    }

    /* Footer */
    footer {
      text-align: center;
      padding: 28px 0 36px;
      border-top: 1px solid rgba(200,169,110,.08);
      font-family: 'Raleway', sans-serif;
      font-size: 10px;
      letter-spacing: .2em;
      color: var(--muted);
      text-transform: uppercase;
      animation: rise .8s 1s ease both;
    }

    /* ── Animations ── */
    @keyframes rise {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes halo-pulse {
      0%, 100% { opacity: 1;   transform: scale(1); }
      50%       { opacity: .4; transform: scale(1.15); }
    }

    @keyframes star-dim {
      0%, 100% { opacity: 1;    filter: drop-shadow(0 0 22px rgba(200,169,110,.7)); }
      40%       { opacity: .55; filter: drop-shadow(0 0 6px  rgba(200,169,110,.2)); }
      60%       { opacity: .65; filter: drop-shadow(0 0 10px rgba(200,169,110,.35)); }
    }

    @keyframes orbit-spin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    @keyframes twinkle {
      0%, 100% { opacity: var(--op); transform: scale(1); }
      50%       { opacity: calc(var(--op) * .2); transform: scale(.6); }
    }

