/* ============================================================
   Zatlov — Narciss Amor (accueil)
   Même charte que la boutique : logo Ephesis, Anton en display,
   Oswald pour les libellés, Bodoni Moda italic en éditorial,
   DM Sans en texte courant.
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --panel: #111111;
  --deep: #050505;
  --cream: #f4ece2;
  --white: #ffffff;
  --gray-1: #b5b5b5;
  --gray-2: #a8a8a8;
  --gray-3: #a5a5a5;
  --gray-4: #8a8a8a;
  --gray-5: #6e6e6e;
  --gray-6: #4a4a4a;

  --line: rgba(244, 236, 226, .13);
  --line-soft: rgba(244, 236, 226, .1);
  --gutter: clamp(20px, 5vw, 80px);

  --f-script: 'Ephesis', cursive;
  --f-display: 'Anton', sans-serif;
  --f-label: 'Oswald', sans-serif;
  --f-editorial: 'Bodoni Moda', serif;
  --f-body: 'DM Sans', system-ui, sans-serif;
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--f-body);
  overflow-x: hidden;
}

* { box-sizing: border-box; }
img { max-width: 100%; }
a { color: var(--cream); }
a:hover { color: var(--white); }
input, button { font: inherit; }
input::placeholder { color: #5a5a5a; }

.page { width: 100%; max-width: 100%; position: relative; background: var(--bg); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.logo { font-family: var(--f-script); line-height: .7; color: var(--cream); text-decoration: none; }
.logo-top { font-size: clamp(38px, 7vw, 52px); text-shadow: 0 3px 20px rgba(0, 0, 0, .5); }
.logo-ftr { font-size: clamp(32px, 5vw, 40px); }

/* ---------- section headings ---------- */
.sec-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-bottom: 10px;
}
.sec-num {
  font-family: var(--f-label);
  font-weight: 600;
  font-size: clamp(11px, 1.4vw, 12px);
  letter-spacing: .24em;
  color: var(--cream);
}
.sec-title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 7vw, 54px);
  color: var(--cream);
  text-transform: uppercase;
}
.sub-title {
  margin: 12px 0 26px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(30px, 6vw, 48px);
  color: var(--cream);
  text-transform: uppercase;
}
.sec-sub {
  margin: 0 0 clamp(28px, 4vw, 40px);
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-5);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(140% 100% at 66% 34%, #2e2e2e 0%, #1c1c1c 40%, #121212 72%, #0a0a0a 100%);
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.5) 0%, rgba(10,10,10,0) 30%, rgba(10,10,10,0) 60%, rgba(10,10,10,.92) 100%);
}

.topbar {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: space-between;
  align-items: center;
  padding: clamp(18px, 3vw, 30px) clamp(20px, 5vw, 54px);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2.4vw, 30px);
  font-family: var(--f-label);
  font-weight: 500;
  font-size: clamp(11px, 1.4vw, 12.5px);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav a { color: inherit; text-decoration: none; padding: 4px 0; }
.nav a:hover { color: var(--white); }
.nav-shop { border-bottom: 1px solid rgba(244, 236, 226, .4); }

.hero-body {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(30px, 5vw, 56px);
  align-items: center;
  padding: clamp(24px, 4vw, 36px) clamp(20px, 5vw, 64px) clamp(44px, 7vw, 80px);
}
.hero-text { min-width: 0; }
.hero-eyebrow {
  font-family: var(--f-label);
  font-weight: 500;
  font-size: clamp(11px, 1.5vw, 13px);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gray-2);
}
.hero-title {
  margin: 10px 0 12px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(52px, 12vw, 104px);
  line-height: .9;
  letter-spacing: .01em;
  color: var(--cream);
  text-transform: uppercase;
  text-shadow: 0 6px 30px rgba(0, 0, 0, .45);
}
.hero-blurb {
  margin: 14px 0 30px;
  font-size: clamp(15px, 1.7vw, 16px);
  line-height: 1.6;
  color: var(--gray-1);
  max-width: 42ch;
  text-wrap: pretty;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  border-radius: 40px;
  padding: 15px clamp(20px, 3vw, 30px);
  font-family: var(--f-label);
  font-weight: 600;
  font-size: clamp(11.5px, 1.5vw, 12.5px);
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-solid { background: var(--cream); color: var(--bg); }
.btn-solid:hover { background: var(--white); color: var(--bg); }
.btn-line { border: 1.5px solid rgba(244, 236, 226, .6); color: var(--cream); }
.btn-line:hover { background: rgba(244, 236, 226, .12); color: var(--cream); }

.hero-cover { min-width: 0; justify-self: center; width: 100%; max-width: 460px; }
.hero-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  display: block;
}

.socials {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2.6vw, 28px);
  padding: 0 clamp(20px, 5vw, 64px) clamp(28px, 4vw, 44px);
  font-family: var(--f-label);
  font-weight: 500;
  font-size: clamp(10px, 1.3vw, 11px);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.socials a { color: var(--gray-2); text-decoration: none; padding: 4px 0; }
.socials a:hover { color: var(--white); }

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--cream);
  border-top: 1px solid var(--bg);
  border-bottom: 1px solid var(--bg);
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marq 22s linear infinite;
}
.marquee-track span {
  font-family: var(--f-display);
  font-size: clamp(16px, 2.4vw, 22px);
  color: var(--bg);
  padding: 11px 0;
  text-transform: uppercase;
  letter-spacing: .04em;
}
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- musique ---------- */
.musique { padding: clamp(56px, 9vw, 92px) var(--gutter); background: var(--bg); }
.musique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(34px, 6vw, 70px);
}

.tracks { list-style: none; margin: 0; padding: 0; min-width: 0; }
.track {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto 22px;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: clamp(14px, 1.7vw, 16px);
}
.track:last-child { border-bottom: 1px solid var(--line); }
.track:hover { color: var(--white); }
.track-n, .track-t { font-family: var(--f-label); font-size: 13px; color: var(--gray-5); }
.track-name { min-width: 0; }
.track-ft { color: var(--gray-5); }
.track-play {
  border: 0;
  padding: 0;
  background: none;
  font: inherit;
  color: var(--cream);
  cursor: pointer;
}
.track.is-playable { cursor: pointer; }
.track.is-playing { color: var(--white); }
.track-link { color: inherit; text-decoration: none; border-bottom: 1px solid var(--line-strong, rgba(244, 236, 226, .4)); }
.track-link:hover { border-bottom-color: var(--cream); }

.platforms { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.platforms-label {
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--gray-5);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.platforms a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
}
.platforms a span { color: var(--gray-5); }
.platforms a:hover { color: var(--white); }

.invite {
  margin-top: clamp(30px, 5vw, 46px);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(244, 236, 226, .28);
  border-radius: 4px;
  padding: clamp(22px, 3.4vw, 30px) clamp(22px, 4vw, 38px);
  text-decoration: none;
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(10,10,10,0));
}
.invite:hover { background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(10,10,10,0)); }
.soutenir { padding: 0 var(--gutter) clamp(56px, 9vw, 92px); background: var(--bg); }
.soutenir .invite { margin-top: 0; }
.invite-line em { font-style: italic; color: var(--white); }

/* ---------- banderole cagnotte ---------- */
.soutien-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  justify-content: center;
  align-items: baseline;
  padding: 10px var(--gutter);
  background: var(--deep);
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  text-align: center;
  text-decoration: none;
}
.soutien-bar:hover { background: #161616; }
.soutien-bar-line {
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: clamp(14px, 1.8vw, 16px);
}
.soutien-bar-cta {
  font-family: var(--f-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--cream);
}
.invite-eyebrow {
  font-family: var(--f-label);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gray-2);
}
.invite-line {
  margin: 8px 0 0;
  font-family: var(--f-editorial);
  font-size: clamp(19px, 2.8vw, 26px);
  color: var(--cream);
  text-wrap: pretty;
}
.invite-cta {
  flex: none;
  font-family: var(--f-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--cream);
}

/* ---------- clips ---------- */
.clips { padding: 0 var(--gutter) clamp(56px, 9vw, 92px); background: var(--bg); }
.clips .sec-head { margin-bottom: clamp(24px, 4vw, 34px); }
.clips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(16px, 2.6vw, 24px);
}
.clip {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.clip-1 { background: radial-gradient(120% 120% at 30% 20%, #2c2c2c, #0e0e0e); }
.clip-2 { background: radial-gradient(120% 120% at 70% 30%, #252525, #0e0e0e); }
.clip-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(48px, 7vw, 62px);
  height: clamp(48px, 7vw, 62px);
  border: 1.5px solid rgba(244, 236, 226, .7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--cream);
}
.clip:hover .clip-play { border-color: var(--cream); background: rgba(244, 236, 226, .12); }
.clip-meta { position: absolute; left: clamp(16px, 3vw, 22px); bottom: clamp(14px, 2.4vw, 20px); }
.clip-title {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(19px, 3vw, 24px);
  text-transform: uppercase;
  color: var(--cream);
}
.clip-sub {
  display: block;
  font-family: var(--f-label);
  font-size: 10.5px;
  letter-spacing: .16em;
  color: var(--gray-4);
  text-transform: uppercase;
}

/* ---------- galerie ---------- */
.galerie { padding: clamp(50px, 8vw, 82px) var(--gutter); background: var(--panel); }
.galerie .sec-head { margin: 0 0 clamp(24px, 4vw, 34px); }
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 170px), 1fr));
  gap: clamp(10px, 1.6vw, 16px);
}
.shot { aspect-ratio: 3 / 4; border-radius: 3px; }
.shot-1 { background: radial-gradient(120% 120% at 40% 20%, #2c2c2c, #0e0e0e); }
.shot-2 { background: radial-gradient(120% 120% at 60% 30%, #252525, #0e0e0e); }
.shot-3 { background: radial-gradient(120% 120% at 30% 40%, #303030, #0e0e0e); }
.shot-4 { background: radial-gradient(120% 120% at 70% 20%, #1d1d1d, #0e0e0e); }
.shot-5 { background: radial-gradient(120% 120% at 50% 50%, #2c2c2c, #0e0e0e); }
.shot-6 { background: radial-gradient(120% 120% at 40% 60%, #252525, #0e0e0e); }

/* ---------- bio ---------- */
.bio {
  padding: clamp(56px, 9vw, 92px) var(--gutter);
  background: var(--bg);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.portrait {
  min-width: 0;
  width: 100%;
  max-width: 420px;
  justify-self: center;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  background: radial-gradient(120% 100% at 40% 15%, #2c2c2c, #101010);
}
.portrait span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: .3em;
  color: rgba(244, 236, 226, .22);
  text-transform: uppercase;
}
.bio-text { min-width: 0; }
.bio-title {
  margin: 12px 0 24px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 7.4vw, 58px);
  line-height: .95;
  color: var(--cream);
  text-transform: uppercase;
}
.bio-text p {
  margin: 0 0 18px;
  font-size: clamp(15px, 1.7vw, 16px);
  line-height: 1.75;
  color: var(--gray-3);
  max-width: 62ch;
  text-wrap: pretty;
}
.bio-text p + p { margin-bottom: 28px; }
.bio-text em { font-style: italic; color: var(--white); }
.bio-text blockquote {
  margin: 0;
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: clamp(20px, 2.8vw, 26px);
  color: var(--cream);
  border-left: 2px solid var(--cream);
  padding-left: clamp(16px, 2.4vw, 22px);
}

/* ---------- booking + newsletter ---------- */
.booking {
  padding: clamp(50px, 8vw, 82px) var(--gutter);
  background: var(--panel);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(34px, 6vw, 70px);
}
.booking > div { min-width: 0; }
.contacts { display: flex; flex-direction: column; gap: 20px; font-size: clamp(14px, 1.7vw, 15px); }
.contact-k {
  font-family: var(--f-label);
  font-size: 10.5px;
  letter-spacing: .18em;
  color: var(--gray-5);
  text-transform: uppercase;
}
.contacts a { color: var(--cream); text-decoration: none; word-break: break-word; }
.contacts a:hover { color: var(--white); }

.cercle-blurb {
  margin: 0 0 22px;
  font-size: clamp(14px, 1.7vw, 15px);
  line-height: 1.7;
  color: var(--gray-3);
  max-width: 46ch;
  text-wrap: pretty;
}
.cercle-form { display: flex; flex-wrap: wrap; gap: 10px; max-width: 460px; }
.cercle-form input {
  flex: 1 1 200px;
  min-width: 0;
  background: transparent;
  border: 1.5px solid rgba(244, 236, 226, .4);
  border-radius: 40px;
  outline: none;
  padding: 15px 22px;
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 14px;
}
.cercle-form input:focus { border-color: rgba(244, 236, 226, .8); }
.cercle-form button {
  flex: 0 0 auto;
  border: 0;
  background: var(--cream);
  color: var(--bg);
  border-radius: 40px;
  padding: 15px 28px;
  font-family: var(--f-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}
.cercle-form button:hover { background: var(--white); }
.cercle-note { margin: 14px 0 0; font-size: 13px; line-height: 1.6; color: var(--gray-2); min-height: 0; }

/* ---------- footer ---------- */
.ftr {
  padding: clamp(30px, 4vw, 42px) var(--gutter);
  background: var(--deep);
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  justify-content: space-between;
  align-items: center;
}
.ftr-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2.4vw, 24px);
  font-family: var(--f-label);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: .14em;
  color: var(--gray-5);
  text-transform: uppercase;
}
.ftr-nav a { color: inherit; text-decoration: none; }
.ftr-nav a:hover { color: var(--white); }
.ftr-copy { font-family: var(--f-label); font-size: 10px; letter-spacing: .1em; color: var(--gray-6); }

/* ---------- grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  mix-blend-mode: overlay;
  opacity: .3;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNDAiIGhlaWdodD0iMTQwIj48ZmlsdGVyIGlkPSJuIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC44NSIgbnVtT2N0YXZlcz0iMiIgc3RpdGNoVGlsZXM9InN0aXRjaCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNuKSIgb3BhY2l0eT0iMC41NSIvPjwvc3ZnPg==");
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  * { transition-duration: .01ms !important; }
}
