/* ═══════════════════════════════════════════════════════
   LEO COSSIC — global.css
   Thème enfant Astra
   ═══════════════════════════════════════════════════════ */

/* ─── Tokens ─────────────────────────────────────────── */
:root {
  --cream:    #F7F5F0;
  --petrol:   #345C5C;
  --petrol-d: #263f3f;
  --petrol-l: #4a7a7a;
  --terra:    #B88B5A;
  --dark:     #101c1c;
  --ink:      #222222;
  --muted:    #6B6B6B;
  --line:     #dedad0;
  --white:    #ffffff;
}

/* ─── Reset ──────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* Neutralise les styles Astra résiduels */
body.ast-page-builder-template { background: var(--cream); }
.ast-container, .ast-grid-right-section, .ast-grid-left-section,
#content, .site-content, .entry-content, .ast-breadcrumbs-wrap,
.ast-comment-list, .comment-respond { all: unset; display: block; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: 'Inter', sans-serif; }
ul, ol { list-style: none; }

/* ─── Nav ────────────────────────────────────────────── */
.lc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 64px;
  transition: background 0.35s, padding 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.lc-nav.lc-nav--dark {
  background: rgba(247,245,240,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 64px;
  border-bottom-color: var(--line);
}
.lc-nav--static {
  position: relative;
  background: var(--cream);
  padding: 22px 64px;
  border-bottom: 1px solid var(--line);
}
.lc-nav--static .lc-nav__logo { color: var(--ink); }
.lc-nav--static .lc-nav__links a { color: var(--muted); }
.lc-nav--static .lc-nav__links a:hover { color: var(--ink); }

.lc-nav__logo {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  transition: color 0.3s;
  text-decoration: none;
}
.lc-nav--dark .lc-nav__logo { color: var(--ink); }
.lc-nav__dot { color: var(--terra); }

.lc-nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.lc-nav__links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  text-decoration: none;
}
.lc-nav--dark .lc-nav__links a { color: var(--muted); }
.lc-nav__links a:hover { color: #fff; }
.lc-nav--dark .lc-nav__links a:hover { color: var(--ink); }
.lc-nav__links a.lc-nav__cta {
  padding: 10px 22px;
  background: var(--petrol);
  color: var(--white) !important;
  font-weight: 500;
  transition: background 0.2s;
}
.lc-nav__links a.lc-nav__cta:hover { background: var(--petrol-d) !important; }
.lc-nav__links a.lc-nav__active { color: var(--petrol) !important; font-weight: 500; }
.lc-nav--dark .lc-nav__links a.lc-nav__active { color: var(--petrol) !important; }

/* ─── Boutons ────────────────────────────────────────── */
.lc-btn,
.lc-btn-ghost,
.lc-btn-outline {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.lc-btn { background: var(--petrol); color: #fff; }
.lc-btn:hover { background: var(--petrol-d); color: #fff; }
.lc-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.28);
}
.lc-btn-ghost:hover { border-color: rgba(255,255,255,0.65); color: #fff; }
.lc-btn-outline {
  background: transparent;
  color: var(--petrol);
  border: 1px solid var(--petrol);
}
.lc-btn-outline:hover { background: var(--petrol); color: #fff; }

/* ─── Typo helpers ───────────────────────────────────── */
.lc-eyebrow {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--terra);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.lc-title {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 1.12;
  color: var(--ink);
}
.lc-title strong { font-weight: 600; }
.lc-title--light { color: #fff; }
.lc-arrow-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--petrol);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: gap 0.2s;
}
.lc-arrow-link:hover { gap: 14px; }

/* ─── Footer ─────────────────────────────────────────── */
.lc-footer {
  padding: 36px 64px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: var(--cream);
}
.lc-footer__logo {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.lc-footer__links {
  display: flex;
  gap: 24px;
}
.lc-footer__links a {
  font-size: 12px;
  color: var(--muted);
  transition: color 0.2s;
}
.lc-footer__links a:hover { color: var(--ink); }
.lc-footer__copy { font-size: 12px; color: var(--muted); }

/* ─── Responsive de base ─────────────────────────────── */
@media (max-width: 900px) {
  .lc-nav { padding: 22px 28px; }
  .lc-nav.lc-nav--dark { padding: 16px 28px; }
  .lc-nav--static { padding: 20px 28px; }
  .lc-nav__links { gap: 20px; }
  .lc-nav__links a { font-size: 12px; }
  .lc-footer { padding: 28px; flex-direction: column; text-align: center; }
  .lc-footer__links { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 600px) {
  .lc-nav__links a:not(.lc-nav__cta):not(.lc-nav__logo) { display: none; }
}
