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

:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --white: #f0ece4;
  --grey: #888;
  --dark: #0a0a0a;
  --dark2: #111;
  --dark3: #161616;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--dark);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  background: linear-gradient(180deg, rgba(0,0,0,0.92) 0%, transparent 100%);
  backdrop-filter: blur(4px);
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}

.nav-links { display: flex; gap: 32px; list-style: none; }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold-light); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 60%, rgba(201,168,76,0.07) 0%, transparent 70%),
    var(--dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 80px,
    rgba(201,168,76,0.03) 80px,
    rgba(201,168,76,0.03) 81px
  );
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--white) 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px;
  position: relative;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--grey);
  max-width: 540px;
  letter-spacing: 0.04em;
  margin-bottom: 48px;
  position: relative;
}

.hero-cta {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
  position: relative;
}
.hero-cta:hover { background: var(--gold); color: var(--dark); }

/* ── SECTIONS COMMUNES ── */
.section-inner {
  padding: 96px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 32px;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 36px;
}

/* ── À PROPOS ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text p {
  color: #aaa;
  margin-bottom: 16px;
  font-weight: 300;
}

.about-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-block {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.info-block h4 {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.info-block p { color: #aaa; font-size: 0.95rem; }

.info-block a {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.95rem;
}
.info-block a:hover { text-decoration: underline; }

/* Instagram inline */
.instagram-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}
.instagram-inline:hover { opacity: 0.75; }
.instagram-inline svg { width: 18px; height: 18px; }

/* ── STYLES ── */
.styles-bg { background: var(--dark2); }

.styles-intro {
  color: #aaa;
  font-weight: 300;
  max-width: 720px;
  margin-bottom: 40px;
  font-size: 1rem;
  line-height: 1.75;
}

.styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.style-card {
  border: 1px solid rgba(201,168,76,0.2);
  padding: 28px 24px;
  background: rgba(201,168,76,0.03);
  transition: border-color 0.2s, background 0.2s;
}
.style-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.07);
}

.style-card .icon { font-size: 1.6rem; margin-bottom: 12px; }
.style-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white);
}
.style-card p { font-size: 0.84rem; color: var(--grey); font-weight: 300; }

.genres-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.genre-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid rgba(201,168,76,0.35);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
}
.genre-tag:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.genre-icon { font-size: 1rem; }

/* ── MEMBRES ── */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.member-card {
  background: var(--dark3);
  padding: 32px 28px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s;
}
.member-card:hover { border-color: var(--gold); }

.member-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #5a3e00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.member-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.member-role {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.member-card p { font-size: 0.84rem; color: var(--grey); font-weight: 300; }

.member-links {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.member-links a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.member-links a:hover { border-color: var(--gold-light); }

/* ── FOOTER ── */
.footer-wrap {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 24px;
}

footer {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.9rem;
}

.footer-copy { font-size: 0.78rem; color: var(--grey); }

.instagram-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  opacity: 0.65;
  transition: opacity 0.2s, color 0.2s;
}
.instagram-footer:hover { opacity: 1; color: var(--gold-light); }
.instagram-footer svg { width: 22px; height: 22px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 16px 20px;
    flex-wrap: wrap;
    align-items: center;
  }
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 4px;
  }
  nav.nav-open .nav-links { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 10px 4px;
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  nav.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
  nav.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  footer { flex-direction: column; align-items: flex-start; }
}