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

html,
body {
  height: 100%;
}

/* BASE */
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", Roboto, sans-serif;
  color: #111827;
  display: flex;
  flex-direction: column;
}

/* FOND MARBRE */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("assets/marbre-fond.jpg") center / cover no-repeat fixed;
}

/* ========================= */
/*  LIGNE VERTE SITE FINAL   */
/* ========================= */

.rolexbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #0a3b2a;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.rolexbar__inner {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding: 12px 16px;
}

.rolexbar__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* LOGO EXACT SITE FINAL */
.crown {
  width: 44px;
  height: 44px;
  object-fit: contain;

  background: rgba(255, 255, 255, 0.06);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  filter: sepia(0.9) saturate(2.2) hue-rotate(10deg)
          brightness(1.03) contrast(1.02);
}

/* ========================= */
/*  SITE PATIENCE (IDENTIQUE)
/* ========================= */

.shell {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 28px 32px 24px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}

.coming-lead {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 18px;
}

.countdown {
  display: inline-flex;
  gap: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(10, 59, 42, 0.35);
  background: rgba(255, 255, 255, 0.9);
}

.countdown__unit {
  text-align: center;
  min-width: 64px;
}

.countdown__value {
  font-size: 18px;
  font-weight: 600;
}

.countdown__label {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #6b7280;
}

.cta {
  padding: 16px 0 14px;
  background: linear-gradient(to top, #ffe9ae, #fff7dd);
  text-align: center;
}

.tiny {
  font-size: 13px;
}
