/* =========================================================
   VEOZY - main.css
   Variables, reset, typographie, layout global
   ========================================================= */

/* ---------- Fonts (fallback Google Fonts) ----------
   ⚠️ Remplacer par les vraies polices commerciales :
   - Neue Haas Grotesk Display Bold  →  assets/fonts/
   - Apple Garamond Italic            →  assets/fonts/
   En attendant on charge Inter (700/800) et EB Garamond (italic).
---------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=EB+Garamond:ital,wght@1,400;1,500;1,600&display=swap');

/* @font-face exemples - à activer une fois les .woff2 fournis :
@font-face {
  font-family: 'Neue Haas Grotesk Display';
  src: url('../assets/fonts/NeueHaasDisplay-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Apple Garamond';
  src: url('../assets/fonts/AppleGaramond-Italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
*/

/* ---------- Variables ---------- */
:root {
  /* Palette */
  --bg-0: #000000;
  --bg-1: #0a0a0a;
  --bg-2: #111111;
  --bg-card: #0d0d0d;
  --bg-card-2: #141414;
  --white: #ffffff;
  --grey-1: #c8c8c8;
  --grey-2: #9a9a9a;
  --grey-3: #6b6b6b;
  --orange: #ff751f;
  --orange-light: #ffa05a;
  --orange-deep: #d65a10;
  --border-soft: rgba(255, 255, 255, 0.08);
  --border-mid:  rgba(255, 255, 255, 0.14);
  --border-orange: rgba(255, 117, 31, 0.30);
  --glow-orange: rgba(255, 117, 31, 0.45);
  --glow-orange-soft: rgba(255, 117, 31, 0.18);

  /* Typography */
  --font-display: "Neue Haas Grotesk Display", "Helvetica Now Display", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-accent:  "Apple Garamond", "Garamond", "EB Garamond", Georgia, serif;

  /* Sizing */
  --maxw: 1240px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card: 0 10px 30px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.04) inset;
  --shadow-deep: 0 30px 80px rgba(0,0,0,0.7), 0 1px 0 rgba(255,255,255,0.05) inset;
  --shadow-cta:  0 10px 30px rgba(255,117,31,0.35), 0 0 0 1px rgba(255,117,31,0.6) inset;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  margin: 0;
  padding: 0;
  background: var(--bg-0);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Typography helpers ---------- */
.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(2.2rem, 5.2vw, 4.6rem);
}

/* Effet brillance métallique / chromé sur titres */
.shine {
  background: linear-gradient(180deg,
    #ffffff 0%,
    #c8c8c8 40%,
    #ffffff 55%,
    #8a8a8a 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  filter: drop-shadow(0 2px 8px rgba(255,255,255,0.06));
}

/* Mots-clés en orange, même police Neue Haas Display Bold que le titre */
.accent {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: normal;
  background: linear-gradient(180deg, var(--orange-light) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  text-shadow: 0 0 24px rgba(255,117,31,0.35);
  padding: 0 0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-1);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-pill);
  box-shadow: 0 0 24px rgba(255,117,31,0.10);
}

.muted { color: var(--grey-2); font-weight: 500; }
.muted-strong { color: var(--grey-1); font-weight: 500; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
}

.section-head {
  max-width: 880px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 22px; }
.section-head h2 { margin: 0 0 18px; }
.section-head p { margin: 0 auto; max-width: 640px; font-size: 1.05rem; }

/* Halos d'ambiance orange (background décoratif) */
.section--ambient::before,
.section--ambient::after {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
.section--ambient::before {
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  top: -200px; left: -200px;
}
.section--ambient::after {
  background: radial-gradient(circle, var(--orange-deep) 0%, transparent 70%);
  bottom: -240px; right: -220px;
  opacity: 0.18;
}
.section > .container { position: relative; z-index: 1; }

/* ---------- Responsive base ---------- */
@media (max-width: 768px) {
  .section-head { margin-bottom: 40px; }
  .section-head p { font-size: 0.98rem; }
}
