@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --beige:  #F3EDE4;
  --prune:  #3D1628;
  --prune2: #4a1c30;
  --text:   #2a1520;
  --muted:  #9a8a8e;
  --white:  #ffffff;
  --font:   'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 300;
  background: var(--beige);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15rem;
  padding: 1rem 2rem;
  background: rgba(243,237,228,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(61,22,40,0.06);
}
nav.dark {
  background: transparent;
  border-bottom: none;
}
.nav-left  { text-align: right; }
.nav-mid   { text-align: center; }
.nav-right { text-align: left; }

nav a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
nav a:hover, nav a.active { color: var(--text); }
nav.dark a { color: rgba(255,255,255,0.55); }
nav.dark a:hover, nav.dark a.active { color: #fff; }

/* Logos dans la nav */
.nav-logo-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transition: opacity 0.2s;
}
.nav-logo-link:hover { opacity: 0.75; }
.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.nav-logo-margot { filter: brightness(0) saturate(100%) invert(10%) sepia(40%) saturate(800%) hue-rotate(290deg) brightness(60%); }
.nav-logo-studio { filter: brightness(0) saturate(100%) invert(10%) sepia(40%) saturate(800%) hue-rotate(290deg) brightness(60%); }
.nav-logo-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-mid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.nav-mid .nav-sub {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
  line-height: 1;
}
.nav-mid .nav-main {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  display: block;
}
nav.dark .nav-mid .nav-sub { color: rgba(255,255,255,0.4); }

/* ── ACCUEIL SPLIT ── */
.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100svh;
}
.home-half {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
.home-half .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.home-half:hover .bg { transform: none; }
.home-half .overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,22,40,0.52);
  transition: opacity 0.3s;
}
.home-half:hover .overlay { opacity: 0.38; }
.home-half.light-half .overlay { display: none; }
.home-half.light-half:hover { background: #ede5db; }

.home-half-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.home-half-content .caption {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.home-half-content .logo-img {
  max-width: 286px;
  transition: transform 0.4s ease, opacity 0.3s;
}
.home-half:hover .logo-img {
  transform: scale(1.08);
  opacity: 0.9;
}
.home-half.light-half .caption { color: var(--muted); }




/* ── PAGE ARTISTE — HERO ── */
.artiste-hero {
  position: relative;
  width: 100%;
  min-height: 340px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 3rem;
}
.artiste-hero img { display: none; }
.artiste-hero .hero-overlay { display: none; }

/* Carte sur fond blanc */
.artiste-card {
  position: relative;
  width: 100%;
  max-width: 640px;
  background: transparent;
  padding: 0;
  z-index: 2;
  text-align: center;
}
.artiste-card h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--prune);
  margin-bottom: 1rem;
}
.artiste-card p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: #6a5a5e;
  margin-bottom: 0.8rem;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-icons a {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.2s, opacity 0.2s;
}
.social-icons a:hover { transform: scale(1.15); opacity: 0.85; }
.social-icons img { width: 100%; height: 100%; object-fit: cover; }

/* ── SINGLE SECTION ── */
.single-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 220px;
}
.single-text {
  background: var(--beige);
  padding: 2rem 2.5rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.single-text .single-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.single-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--prune);
  margin-bottom: 0.2rem;
}
.single-text .avail {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 1rem;
}
.single-text p {
  font-size: 0.84rem;
  line-height: 1.75;
  color: #6a5a5e;
  margin-bottom: 0.5rem;
  max-width: 480px;
}
.single-text .credits {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.6rem;
  line-height: 1.6;
}
.single-image {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.single-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-btn {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.65rem 1.6rem;
  background: var(--prune);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.press-btn:hover { background: var(--prune2); }

/* ── DISCOGRAPHIE ── */
.discographie-section {
  background: var(--white);
  padding: 3.5rem 5rem;
  border-top: 1px solid rgba(61,22,40,0.08);
}
.discographie-section h3 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.8rem;
}
.singles-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.2rem;
}
.single-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.single-item .s-title {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
}
.single-item .s-year {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ── PAGE STUDIO ── */
.studio-page { background: var(--beige); padding-top: 80px; }

.video-grid {
  padding: 3rem 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--prune);
  cursor: pointer;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.4s;
}
.video-thumb:hover img { opacity: 0.65; transform: scale(1.04); }
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(255,0,0,0.88);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.play-btn svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }

.studio-text-center {
  text-align: center;
  padding: 2rem 4rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}
.studio-text-center p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #6a5a5e;
  margin-bottom: 0.5rem;
}
.studio-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.85rem 2.5rem;
  background: var(--prune);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s;
}
.studio-cta:hover { background: var(--prune2); }
.studio-email {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── PAGE CONTACT ── */
.contact-page {
  background: var(--beige);
  padding-top: 80px;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.contact-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 2rem 3rem;
}
.contact-inner h1 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2.5rem;
}
.contact-form {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(61,22,40,0.12);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: rgba(61,22,40,0.4); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.send-btn {
  align-self: center;
  margin-top: 0.5rem;
  padding: 0.85rem 3rem;
  background: var(--prune);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 300;
  cursor: pointer;
  transition: background 0.2s;
}
.send-btn:hover { background: var(--prune2); }

/* ── FOOTER ── */
.site-footer {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid rgba(61,22,40,0.08);
  background: var(--beige);
}
.footer-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-icons a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  transition: transform 0.2s, opacity 0.2s;
}
.footer-icons a:hover { transform: scale(1.15); opacity: 0.8; }
.footer-icons img { width: 100%; height: 100%; object-fit: cover; }
.footer-email {
  font-size: 0.78rem;
  color: var(--muted);
}
.footer-copy {
  font-size: 0.65rem;
  color: var(--muted);
  opacity: 0.6;
  letter-spacing: 0.08em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .home-split { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .artiste-hero { height: auto; max-height: none; padding: 5rem 2rem 3rem; }
  .artiste-card { position: static; transform: none; width: 100%; }
  .single-section { grid-template-columns: 1fr; }
  .single-image { min-height: 260px; }
  .single-text { padding: 2rem 1.5rem; }
  .video-grid { grid-template-columns: 1fr 1fr; padding: 2rem 1.5rem; }
  .discographie-section { padding: 2.5rem 2rem; }
  .studio-text-center { padding: 1.5rem 2rem 2.5rem; }
  .presse-section { padding: 3rem 2rem; }
  .presse-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.hamburger {
  display: none;
}

@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; }
  .form-row-double { grid-template-columns: 1fr; }

  nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 0;
    min-height: 56px;
  }
  .nav-left, .nav-right, .nav-mid { display: none; }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 200;
    position: static;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--prune);
    border-radius: 2px;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--prune);
    border-radius: 2px;
    transition: all 0.3s;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(243,237,228,0.97);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--prune);
  }
  .mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--prune);
    cursor: pointer;
    line-height: 1;
  }
}
