:root {
  --nv-green: #0F2A22;
  --nv-green-deep: #0A1F19;
  --nv-ivory: #F5F0E6;
  --nv-gold: #B8975A;
  --nv-gold-soft: rgba(184, 151, 90, 0.35);
  --nv-burgundy: #5A1A24;
  --nv-stone: #8C8578;
  --nv-serif: "Cormorant Garamond", "Times New Roman", serif;
  --nv-sans: "Inter", system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--nv-green) !important; color: var(--nv-ivory) !important; font-family: var(--nv-sans); }
.nova { background: var(--nv-green); color: var(--nv-ivory); overflow-x: clip; }
.nova ::selection { background: var(--nv-gold); color: var(--nv-green); }

/* film overrides */
.nova .scroll-scrub__title { font-family: var(--nv-serif); font-weight: 500; letter-spacing: -0.01em; line-height: 1.02; }
.nova .scroll-scrub__kicker { font-family: var(--nv-sans); letter-spacing: 0.32em; text-transform: uppercase; font-size: 0.72rem; color: var(--nv-gold); }
.nova .scroll-scrub__body { font-weight: 300; }
.nova .scroll-scrub__title { animation: nv-ink 1.6s cubic-bezier(.2,.7,.2,1) both; }
@keyframes nv-ink { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }

/* header */
.nv-header { position: fixed; inset: 0 0 auto 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem clamp(1rem, 4vw, 3.5rem); background: linear-gradient(to bottom, rgba(10,31,25,.85), rgba(10,31,25,0)); }
.nv-brand { display: flex; align-items: center; gap: .75rem; color: var(--nv-ivory); text-decoration: none; }
.nv-brand img { width: 42px; height: 42px; }
.nv-brand span { font-family: var(--nv-serif); font-size: 1.45rem; letter-spacing: .06em; }
.nv-links { display: flex; gap: 1.75rem; }
.nv-links a { color: var(--nv-ivory); opacity: .78; text-decoration: none; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; transition: opacity .3s; }
.nv-links a:hover { opacity: 1; }
.nv-lang { font-size: .75rem; letter-spacing: .18em; color: var(--nv-stone); }
.nv-lang b { color: var(--nv-gold); font-weight: 500; }
.nv-head-cta { position: relative; color: var(--nv-ivory); text-decoration: none; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; padding: .65rem 0; }
.nv-head-cta::after { content: ""; position: absolute; left: 0; bottom: .3rem; height: 1px; width: 100%; background: var(--nv-gold); transform-origin: left; transform: scaleX(.35); transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.nv-head-cta:hover::after { transform: scaleX(1); }
@media (max-width: 900px) { .nv-links, .nv-lang { display: none; } .nv-brand span { font-size: 1.2rem; } }

/* seal cta (chapter 6) */
.nova-seal-cta { position: relative; display: inline-flex; align-items: center; gap: 1rem; padding: 1rem 1.6rem 1rem 1rem; border: 1px solid var(--nv-gold); color: var(--nv-ivory); text-decoration: none; letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; background: rgba(15,42,34,.55); backdrop-filter: blur(6px); transition: background .4s, transform .25s ease-out; will-change: transform; }
.nova-seal-cta:hover { background: var(--nv-burgundy); }
.nova-seal-cta__ring { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--nv-gold); box-shadow: inset 0 0 0 4px rgba(184,151,90,.25); transition: transform .8s; }
.nova-seal-cta:hover .nova-seal-cta__ring { transform: rotate(180deg) scale(1.08); }

/* sections */
.nv-section { position: relative; padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 6vw, 6rem); }
.nv-eyebrow { font-size: .72rem; letter-spacing: .32em; text-transform: uppercase; color: var(--nv-gold); margin: 0 0 1.2rem; }
.nv-h2 { font-family: var(--nv-serif); font-weight: 500; font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1.02; margin: 0; max-width: 18ch; }
.nv-lead { max-width: 46ch; color: rgba(245,240,230,.72); font-weight: 300; line-height: 1.7; margin-top: 1.4rem; }
.nv-rule { display: block; height: 1px; width: 120px; background: var(--nv-gold); margin: 2rem 0; transform-origin: left; animation: nv-rule 1.8s cubic-bezier(.2,.7,.2,1) both; }
@keyframes nv-rule { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* metiers */
.nv-metiers { background: var(--nv-green-deep); }
.nv-metiers__head { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 4rem; }
.nv-metiers__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.4rem; }
.nv-card { position: relative; grid-column: span 2; display: flex; flex-direction: column; border: 1px solid rgba(184,151,90,.22); background: rgba(15,42,34,.6); transition: border-color .5s, transform .5s; }
.nv-card:nth-child(1), .nv-card:nth-child(2) { grid-column: span 3; }
.nv-card:hover { border-color: var(--nv-gold); transform: translateY(-4px); }
.nv-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.nv-card__media img { width: 100%; height: 100%; object-fit: cover; animation: nv-drift 14s ease-in-out infinite alternate; filter: saturate(.92); }
.nv-card:hover .nv-card__media img { filter: saturate(1.05); }
@keyframes nv-drift { from { transform: scale(1.02) translate(0,0); } to { transform: scale(1.12) translate(-2%, -1.5%); } }
.nv-card__num { position: absolute; top: 1rem; left: 1rem; font-family: var(--nv-serif); font-size: 1rem; color: var(--nv-ivory); background: rgba(10,31,25,.7); padding: .2rem .6rem; border: 1px solid var(--nv-gold-soft); }
.nv-card__body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: .9rem; flex: 1; }
.nv-card__title { font-family: var(--nv-serif); font-size: 1.85rem; font-weight: 500; margin: 0; }
.nv-card__text { color: rgba(245,240,230,.7); font-weight: 300; line-height: 1.65; margin: 0; flex: 1; }
.nv-card__link { align-self: flex-start; color: var(--nv-gold); text-decoration: none; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; background: linear-gradient(var(--nv-gold), var(--nv-gold)) left bottom / 0 1px no-repeat; padding-bottom: .3rem; transition: background-size .6s; }
.nv-card__link:hover { background-size: 100% 1px; }
@media (max-width: 900px) { .nv-metiers__head { grid-template-columns: 1fr; } .nv-metiers__grid { grid-template-columns: 1fr; } .nv-card, .nv-card:nth-child(1), .nv-card:nth-child(2) { grid-column: auto; } }

/* presence */
.nv-presence { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.nv-globe { position: relative; aspect-ratio: 1; width: 100%; max-width: 640px; justify-self: center; cursor: grab; touch-action: none; }
.nv-globe:active { cursor: grabbing; }
.nv-globe canvas { width: 100%; height: 100%; display: block; }
.nv-globe__hint { position: absolute; bottom: -1.8rem; left: 0; right: 0; text-align: center; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--nv-stone); }
.nv-places { list-style: none; margin: 2.2rem 0 0; padding: 0; border-top: 1px solid var(--nv-gold-soft); }
.nv-place { border-bottom: 1px solid var(--nv-gold-soft); }
.nv-place button { all: unset; box-sizing: border-box; width: 100%; cursor: pointer; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 1.05rem 0; }
.nv-place button:focus-visible { outline: 1px solid var(--nv-gold); outline-offset: 4px; }
.nv-place__name { font-family: var(--nv-serif); font-size: 1.6rem; }
.nv-place__city { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--nv-stone); }
.nv-place[data-active="true"] .nv-place__name { color: var(--nv-gold); }
.nv-place__detail { color: rgba(245,240,230,.72); font-weight: 300; padding: 0 0 1.2rem; margin: 0; line-height: 1.6; }
.nv-marquee { overflow: hidden; border-block: 1px solid var(--nv-gold-soft); margin-top: clamp(4rem, 8vw, 6rem); padding: 1.1rem 0; }
.nv-marquee__track { display: flex; gap: 4rem; width: max-content; animation: nv-marquee 40s linear infinite; }
.nv-marquee__track span { font-size: .8rem; letter-spacing: .5em; color: var(--nv-stone); white-space: nowrap; }
@keyframes nv-marquee { to { transform: translateX(-50%); } }
@media (max-width: 900px) { .nv-presence { grid-template-columns: 1fr; } }

/* chiffres */
.nv-figures { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; }
.nv-figure strong { display: block; font-family: var(--nv-serif); font-size: clamp(2.6rem, 5vw, 4rem); color: var(--nv-gold); font-weight: 500; }
.nv-figure span { color: rgba(245,240,230,.7); font-size: .9rem; }

/* philosophie */
.nv-philo { background: var(--nv-ivory); color: var(--nv-green); text-align: center; }
.nv-philo__seal { width: 88px; height: 88px; margin: 0 auto 2.2rem; }
.nv-philo blockquote { margin: 0 auto; max-width: 24ch; font-family: var(--nv-serif); font-style: italic; font-size: clamp(2rem, 4.2vw, 3.6rem); line-height: 1.12; }
.nv-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 980px; margin: clamp(3.5rem, 7vw, 5.5rem) auto 0; }
.nv-pillar svg { width: 44px; height: 44px; color: var(--nv-burgundy); }
.nv-pillar h3 { font-family: var(--nv-serif); font-weight: 600; font-size: 1.55rem; margin: 1rem 0 .5rem; }
.nv-pillar p { margin: 0; color: #4a4a40; font-weight: 300; line-height: 1.6; }
@media (max-width: 760px) { .nv-pillars { grid-template-columns: 1fr; } }

/* formulaire */
.nv-projet { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2.5rem, 6vw, 6rem); background: var(--nv-green-deep); }
.nv-key { width: 120px; height: 120px; margin-top: 2.5rem; color: var(--nv-gold); transition: transform 1.2s cubic-bezier(.2,.7,.2,1); transform-origin: 30% 50%; }
.nv-projet[data-open="true"] .nv-key { transform: rotate(-90deg); }
.nv-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.6rem; }
.nv-field { display: flex; flex-direction: column; gap: .45rem; }
.nv-field--full { grid-column: 1 / -1; }
.nv-field label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--nv-stone); }
.nv-field input, .nv-field select, .nv-field textarea { font: inherit; color: var(--nv-ivory); background: transparent; border: 0; border-bottom: 1px solid rgba(184,151,90,.4); padding: .7rem 0; border-radius: 0; transition: border-color .3s; }
.nv-field select option { color: var(--nv-green); }
.nv-field textarea { min-height: 130px; resize: vertical; }
.nv-field input:focus, .nv-field select:focus, .nv-field textarea:focus { outline: none; border-bottom-color: var(--nv-gold); }
.nv-field input[type="file"] { border-bottom-style: dashed; font-size: .85rem; color: var(--nv-stone); }
.nv-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.nv-submit { grid-column: 1 / -1; justify-self: start; display: inline-flex; align-items: center; gap: .9rem; font: inherit; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--nv-ivory); background: var(--nv-burgundy); border: 1px solid var(--nv-burgundy); padding: 1.05rem 1.8rem; cursor: pointer; transition: background .4s, border-color .4s; }
.nv-submit:hover { background: transparent; border-color: var(--nv-gold); }
.nv-submit:disabled { opacity: .6; cursor: wait; }
.nv-submit__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--nv-gold); }
.nv-form-msg { grid-column: 1 / -1; margin: 0; font-family: var(--nv-serif); font-size: 1.5rem; }
.nv-form-msg--err { font-family: var(--nv-sans); font-size: .9rem; color: #e6b4a8; }
.nv-legal-note { grid-column: 1 / -1; font-size: .78rem; color: var(--nv-stone); line-height: 1.6; margin: 0; }
@media (max-width: 900px) { .nv-projet { grid-template-columns: 1fr; } .nv-form { grid-template-columns: 1fr; } }

/* footer */
.nv-footer { padding: 4rem clamp(1.25rem, 6vw, 6rem) 2.5rem; border-top: 1px solid var(--nv-gold-soft); display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem; font-size: .88rem; color: rgba(245,240,230,.7); }
.nv-footer h4 { font-family: var(--nv-serif); font-weight: 500; color: var(--nv-ivory); font-size: 1.3rem; margin: 0 0 .9rem; }
.nv-footer a { color: inherit; text-decoration: none; }
.nv-footer a:hover { color: var(--nv-gold); }
.nv-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.nv-footer__mention { grid-column: 1 / -1; border-top: 1px solid rgba(184,151,90,.15); padding-top: 1.8rem; font-size: .78rem; color: var(--nv-stone); line-height: 1.7; }
@media (max-width: 900px) { .nv-footer { grid-template-columns: 1fr; } }

/* legal page */
.nv-legal { max-width: 760px; margin: 0 auto; padding: 9rem 1.25rem 5rem; line-height: 1.75; color: rgba(245,240,230,.82); }
.nv-legal h1 { font-family: var(--nv-serif); font-weight: 500; font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--nv-ivory); }
.nv-legal h2 { font-family: var(--nv-serif); font-weight: 500; font-size: 1.7rem; color: var(--nv-gold); margin-top: 2.6rem; }

/* cursor */
.nv-cursor { position: fixed; top: 0; left: 0; width: 8px; height: 8px; margin: -4px 0 0 -4px; border-radius: 50%; background: var(--nv-gold); pointer-events: none; z-index: 80; mix-blend-mode: difference; transition: width .25s, height .25s, margin .25s; }
.nv-cursor[data-hover="true"] { width: 34px; height: 34px; margin: -17px 0 0 -17px; background: transparent; border: 1px solid var(--nv-gold); }
@media (hover: none) { .nv-cursor { display: none; } }

@media (prefers-reduced-motion: reduce) {
  .nova *, .nova *::before, .nova *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ===== film (version statique) ===== */
.nv-film { position: relative; }
.nv-film__stage { position: sticky; top: 0; height: 100vh; height: 100dvh; overflow: hidden; background: var(--nv-green); }
.nv-film__stage video, .nv-film__stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nv-film__stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,31,25,.72) 0%, rgba(10,31,25,.25) 55%, rgba(10,31,25,.1) 100%); pointer-events: none; }
.nv-film__progress { position: absolute; left: clamp(1rem,4vw,3.5rem); right: clamp(1rem,4vw,3.5rem); bottom: 1.6rem; height: 1px; background: rgba(245,240,230,.18); z-index: 2; }
.nv-film__progress span { display: block; height: 100%; width: 100%; background: var(--nv-gold); transform-origin: left; transform: scaleX(0); }
.nv-film__chapters { position: relative; margin-top: -100vh; margin-top: -100dvh; z-index: 3; }
.nv-chap { min-height: 115vh; display: flex; align-items: center; padding: 6rem clamp(1.25rem, 6vw, 6rem); }
.nv-chap[data-align="right"] { justify-content: flex-end; }
.nv-chap__copy { max-width: 36rem; }
.nv-chap__kicker { font-size: .72rem; letter-spacing: .32em; text-transform: uppercase; color: var(--nv-gold); margin: 0 0 1rem; }
.nv-chap__title { font-family: var(--nv-serif); font-weight: 500; font-size: clamp(2.6rem, 6vw, 6rem); line-height: 1.02; margin: 0; color: var(--nv-ivory); text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.nv-chap__body { font-weight: 300; font-size: clamp(1rem, 1.35vw, 1.2rem); line-height: 1.65; color: rgba(245,240,230,.86); margin: 1.4rem 0 0; max-width: 32rem; }
.nv-chap .nova-seal-cta { margin-top: 2rem; }
.nv-chap__copy { opacity: .25; transform: translateY(24px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.nv-chap.is-on .nv-chap__copy { opacity: 1; transform: none; }
.nv-scrollhint { position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); z-index: 2; font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--nv-stone); }
@media (max-width: 760px) { .nv-chap, .nv-chap[data-align="right"] { justify-content: flex-start; align-items: flex-end; } .nv-film__stage::after { background: linear-gradient(0deg, rgba(10,31,25,.85) 0%, rgba(10,31,25,.2) 60%); } }
@media (prefers-reduced-motion: reduce) { .nv-chap__copy { opacity: 1; transform: none; } }
