/* ============================================================
   KANAPOP — page de présentation (préversion isolée)
   Aucune dépendance aux styles du site Kaza Concept ni du site KANAPOP.
   Charte KANAPOP : doré bronze #A88B5F · anthracite #26282C ·
                    crème #FAF7F2 / #F3ECE1 · filets #E8E1D5
   Polices : Cormorant Garamond (titres) + Lato (texte)
   ============================================================ */

:root {
  --bg:      #FAF7F2;
  --bg-2:    #F3ECE1;
  --ink:     #26282C;
  --muted:   #6B6E74;
  --line:    #E8E1D5;
  --gold:    #A88B5F;
  --white:   #FFFFFF;

  --font-title: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:  'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Même grille que les sites Kaza Concept / KANAPOP */
  --container:        1200px;
  --container-narrow: 820px;
  --radius: 16px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow: 0 18px 50px -22px rgba(38, 40, 44, .28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; transition: opacity .3s var(--ease); }
a:hover { opacity: .75; }

/* ------------------------------------------------ grille */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 4vw, 2.4rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3rem, 8vw, 5.5rem); }
.section--band { background: var(--white); border-block: 1px solid var(--line); }
.section--end { padding-block: clamp(2.5rem, 6vw, 4rem); border-top: 1px solid var(--line); }

/* ------------------------------------------------ typographie */
h1, h2, h3 {
  font-family: var(--font-title);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 500;
}
h1 { font-size: clamp(2rem, 4.8vw, 3.2rem); margin-bottom: 1.4rem; letter-spacing: .01em; }
h1 em { font-style: italic; font-weight: 400; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.3rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold);
  display: inline-block;
}

.pos-logo {
  height: clamp(64px, 10vw, 92px);
  width: auto;
  margin-bottom: 1.6rem;
}

/* Positionnement — accroche + piliers épurés, filets dorés (2026-08-09) */
.pos-lead {
  font-size: clamp(1.12rem, 2.3vw, 1.32rem);
  color: var(--ink);
  line-height: 1.6;
  max-width: 58ch;
  margin-bottom: 2.6rem;
}
.pos-pillar {
  max-width: 62ch;
  padding: 1.7rem 0;
  border-top: 1px solid rgba(168, 139, 95, .32);
}
.pos-pillar h3 {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: clamp(1.22rem, 2.5vw, 1.5rem);
  color: var(--ink);
  margin-bottom: .4rem;
}
.pos-pillar p { color: var(--muted); line-height: 1.7; }
.pos-close {
  max-width: 62ch;
  margin-top: 1.7rem;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(168, 139, 95, .32);
  font-family: var(--font-title);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.25rem);
  color: var(--ink);
  line-height: 1.5;
}

/* ------------------------------------------------ bloc 1 : bannière vidéo */
.hero { position: relative; background: var(--ink); }

.hero__video {
  width: 100%;
  aspect-ratio: 16 / 9;   /* ratio conservé, aucun recadrage */
  height: auto;
  display: block;
  object-fit: contain;
  /* Même étalonnage couleur que KANAPOP SITE → rendu identique */
  filter: saturate(1.16) contrast(1.06) brightness(1.02);
}

.hero__logo {
  position: absolute;
  top: clamp(14px, 3vw, 28px);
  left: clamp(14px, 3vw, 28px);
  height: 56px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.45));
}
@media (min-width: 761px) { .hero__logo { height: 72px; } }

.hero__back {
  position: absolute;
  top: clamp(16px, 3vw, 30px);
  right: clamp(14px, 3vw, 28px);
  /* Noir : la vidéo du hero est claire, le blanc s'y noyait.
     Le halo clair prend le relais si le lien passe sur une zone sombre. */
  color: var(--ink);
  font-size: .85rem;
  letter-spacing: .02em;
  text-shadow: 0 1px 6px rgba(255,255,255,.75);
}
.hero__back::before { content: "← "; }
.hero__back:hover { color: #000; opacity: 1; }

/* ------------------------------------------------ bloc 3 : contact (split) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split__media picture { display: block; }
.split__media img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.contact-list { display: grid; gap: 1.3rem; margin-top: .4rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item__ic {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg-2);
  color: var(--gold);
  display: grid;
  place-items: center;
}
.contact-item__ic svg { width: 22px; height: 22px; }
.contact-item h3 { font-family: var(--font-body); font-size: .95rem; font-weight: 700; margin-bottom: .1rem; }
.contact-item p { color: var(--muted); font-size: .95rem; }
.contact-item__note { font-size: .85rem !important; }
.contact-inactive { color: var(--muted); font-size: .95rem; }

/* ------------------------------------------------ bloc 4 : équipe (3 bulles) */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
}
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.feature__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--bg-2);
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 1.2rem;
  border: 2px solid var(--line);
}
.feature__avatar svg { width: 30px; height: 30px; }
.feature__avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.feature__role {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.feature h3 { margin-bottom: .5rem; }
.feature p { color: var(--muted); font-size: .95rem; }

/* ------------------------------------------------ bloc 5 : bas de page */
.end-block { text-align: center; }

.btn-cta {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: .95rem 2.2rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
}
.btn-cta:disabled {
  border-color: var(--line);
  color: var(--muted);
  cursor: not-allowed;
  opacity: .7;
}

.end-copy { margin-top: 2.4rem; font-size: .82rem; color: var(--muted); }

/* ------------------------------------------------ apparition douce */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ------------------------------------------------ responsive (mobile first) */
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
}
