
<!DOCTYPE html>
<html lang="fr">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <meta name="robots" content="noindex, nofollow" />
  <title>Alpissime | Maintenance</title>
  <style>
    :root {
      --blue: #0096ff;
      --orange: #ff9600;
      --ink: #17212b;
      --muted: #657385;
      --line: #e6edf3;
      --bg: #f7fafc;
      --white: #ffffff;
    }

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

    html,
    body {
      width: 100%;
      min-height: 100%;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
      min-height: 100vh;
      background: var(--bg);
      color: var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .card {
      width: 100%;
      max-width: 640px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 18px;
      box-shadow: 0 18px 48px rgba(23, 33, 43, 0.06);
      padding: 48px 44px;
      text-align: left;
    }

    .logo {
      width: 166px;
      height: auto;
      display: block;
      margin-bottom: 54px;
    }

    h1 {
      margin-bottom: 32px;
      font-size: clamp(34px, 6vw, 54px);
      line-height: 1;
      letter-spacing: -0.045em;
    }

    .message {
      padding-top: 26px;
      border-top: 1px solid var(--line);
    }

    .message + .message {
      margin-top: 26px;
    }

    .label {
      margin-bottom: 10px;
      color: var(--blue);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    p {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .contact {
      margin-top: 34px;
      padding-top: 26px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 15px;
      line-height: 1.6;
    }

    .contact a {
      color: var(--ink);
      font-weight: 700;
      text-decoration: none;
    }

    .contact a:hover {
      color: var(--orange);
    }

    @media (max-width: 560px) {
      body {
        min-height: 100svh;
        padding: 16px;
      }

      .card {
        padding: 36px 26px;
        border-radius: 16px;
      }

      .logo {
        width: 150px;
        margin-bottom: 44px;
      }
    }
  </style>
</head>
<body>
  <main class="card" role="main" aria-label="Maintenance Alpissime">
    <img
      class="logo"
      src="https://marketing.alpissime.com/Mail_images/alpissime-logo-simple.png"
      alt="Alpissime"
    />

    <h1>Maintenance</h1>

    <section class="message" aria-label="Message en français">
      <div class="label">Français</div>
      <p>Nos équipes finalisent la maintenance annuelle et nos services seront de nouveau accessibles mardi 02/06.</p>
    </section>

    <section class="message" lang="en" aria-label="Message in English">
      <div class="label">English</div>
      <p>Our teams are completing the annual maintenance and our services will be available again on Tuesday 02/06.</p>
    </section>

    <div class="contact">
      Pour toute demande urgente / For any urgent request<br />
      <a href="mailto:hello@alpissime.com">hello@alpissime.com</a>
    </div>
  </main>
</body>
</html>
