/* ══════════════════════════════════════════════════════════════════════════
   LeadCustom — Auth pages styles
   Hérite de styles.css (variables, typo, base)
   ══════════════════════════════════════════════════════════════════════════ */

.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
}

@media (max-width: 900px) {
  .auth-shell { grid-template-columns: 1fr; }
  .auth-aside { display: none; }
}

/* ── Côté gauche : formulaire ─────────────────────────────────────────── */
.auth-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  position: relative;
}

.auth-back {
  position: absolute;
  top: 32px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Geist Mono', monospace;
}
.auth-back:hover { color: var(--text); }

.auth-card {
  width: 100%;
  max-width: 420px;
}

.auth-card .logo-wordmark {
  margin-bottom: 32px;
}

.auth-title {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.5;
}

/* ── Boutons OAuth ────────────────────────────────────────────────────── */
.btn-oauth {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 18px;
  background: oklch(1 0 0 / 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.btn-oauth:hover {
  background: oklch(1 0 0 / 0.08);
  border-color: var(--border-bright);
}
.btn-oauth svg { width: 18px; height: 18px; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: var(--text-dim);
  font-size: 11px;
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Formulaires ──────────────────────────────────────────────────────── */
.auth-form { display: flex; flex-direction: column; gap: 16px; }

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 13px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.15s;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent-bright);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px oklch(0.72 0.18 290 / 0.15);
}
.form-input::placeholder { color: var(--text-dim); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-help {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-muted);
}
.form-help a {
  color: var(--accent-bright);
  text-decoration: none;
  font-weight: 500;
}
.form-help a:hover { text-decoration: underline; }

.btn-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px 18px;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  border: 1px solid oklch(0.78 0.2 290 / 0.5);
  border-radius: 12px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-submit:hover { transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: wait; }

.auth-footer {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
.auth-footer a {
  color: var(--accent-bright);
  text-decoration: none;
  font-weight: 500;
}

/* ── Messages ─────────────────────────────────────────────────────────── */
.auth-msg {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.auth-msg.error {
  background: oklch(0.65 0.2 25 / 0.1);
  border: 1px solid oklch(0.65 0.2 25 / 0.3);
  color: oklch(0.85 0.12 25);
}
.auth-msg.success {
  background: oklch(0.78 0.16 150 / 0.1);
  border: 1px solid oklch(0.78 0.16 150 / 0.3);
  color: oklch(0.88 0.14 150);
}

/* ── Côté droit : aside premium ───────────────────────────────────────── */
.auth-aside {
  background: linear-gradient(160deg, oklch(0.18 0.04 290), oklch(0.12 0.02 270));
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}

.auth-aside::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, oklch(0.72 0.18 290 / 0.25), transparent 50%),
    radial-gradient(circle at 80% 80%, oklch(0.68 0.2 320 / 0.15), transparent 50%);
  pointer-events: none;
}

.aside-content { position: relative; z-index: 1; }

.aside-quote {
  font-family: 'Instrument Serif', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  font-style: italic;
}
.aside-quote .accent { color: var(--accent-bright); }

.aside-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}
.aside-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), oklch(0.5 0.15 320));
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 14px;
}
.aside-name { font-weight: 500; font-size: 14px; }
.aside-role { font-size: 12px; color: var(--text-muted); font-family: 'Geist Mono', monospace; }

.aside-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.aside-stat-num {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--accent-bright);
}
.aside-stat-label {
  font-size: 11px;
  color: var(--text-dim);
  font-family: 'Geist Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ── Page réservation ─────────────────────────────────────────────────── */
.booking-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 32px;
}

.booking-head {
  text-align: center;
  margin-bottom: 48px;
}

.booking-embed {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  min-height: 700px;
}

/* ── Page espace client (placeholder) ────────────────────────────────── */
.client-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 64px 32px;
}
