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

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

:root {
  --blue:    #264895;
  --green:   var(--blue);
  --teal:    #00625d;
  --red:     #c84134;
  --ltgreen: var(--blue);
  --lavender:#9ea3bc;
  --purple:  #604988;
  --yellow:  #e9b539;
  --white:   #ffffff;
  --dark:    #0f1520;
  --text:    #1a1f2e;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  position: relative;
}
body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav.hyphene-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 4rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--blue);
}
.nav-logo {
  font-size: 1.4rem; font-weight: 900; letter-spacing: -.02em;
  color: var(--blue); text-decoration: none;
  display: flex; align-items: center; gap: .5rem;
}
.nav-logo span {
  display: inline-block; width: 28px; height: 3px;
  background: var(--blue); border-radius: 2px; margin: 0 2px;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-weight: 500; font-size: .9rem; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none; color: var(--text);
  transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue); color: #fff !important;
  padding: .5rem 1.4rem; border-radius: 2px;
}
.nav-cta:hover { background: var(--teal) !important; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 80px; overflow: hidden;
}
.hero-left {
  background: var(--blue);
  padding: 6rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: var(--teal); opacity: .35;
}
.hero-left::after {
  content: '';
  position: absolute; top: 40px; left: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--yellow); opacity: .25;
}
.hero-tag {
  display: inline-block;
  background: var(--yellow); color: var(--dark);
  font-weight: 700; font-size: .75rem; letter-spacing: .12em;
  text-transform: uppercase; padding: .3rem .9rem;
  margin-bottom: 2rem; width: fit-content;
}
.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 900; line-height: 1.05;
  color: var(--white); margin-bottom: 1.8rem;
}
.hero-title em { font-style: normal; color: #fff; }
.hero-dash {
  display: block; width: 60px; height: 4px;
  background: var(--green); margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,.82); max-width: 420px; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--yellow); color: var(--dark);
  font-weight: 700; font-size: .9rem; letter-spacing: .05em;
  padding: .85rem 2rem; text-decoration: none;
  transition: background .2s, transform .15s; display: inline-block;
}
.btn-primary:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.5); color: #fff;
  font-weight: 500; font-size: .9rem;
  padding: .85rem 2rem; text-decoration: none;
  transition: border-color .2s, background .2s; display: inline-block;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.hero-right {
  background: var(--dark);
  display: grid; grid-template-rows: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-block {
  padding: 3rem 3.5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
}
.hero-block:first-child { }
.hero-block:last-child  { }
.hero-block-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: .5rem;
}
.hero-block-title { font-size: 1.5rem; font-weight: 900; color: #fff; line-height: 1.1; }
.hero-block-dash {
  position: absolute; top: 2rem; right: 2.5rem;
  width: 40px; height: 3px; background: rgba(255,255,255,.5);
}
.hero-shape {
  position: absolute; bottom: -50px; right: -50px;
  width: 200px; height: 200px; border-radius: 50%; opacity: .15; background: #fff;
}

/* ── SECTIONS ── */
.hyphene-section { padding: 6rem 4rem; }
section[id] { scroll-margin-top: 60px; }

.section-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--blue);
  display: flex; align-items: center; gap: .8rem; margin-bottom: 1.2rem;
}
.section-label::after { content: ''; display: block; height: 2px; width: 40px; background: var(--blue); }
h2.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; line-height: 1.1; max-width: 600px; margin-bottom: 1.2rem;
}
.section-lead {
  font-size: 1.05rem; font-weight: 300; line-height: 1.75;
  max-width: 640px; color: #444; margin-bottom: 3rem;
}

/* ── À PROPOS ── */
#about, .about-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
  background: #f7f8fc;
}
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-card { padding: 2rem 1.6rem; color: #fff; display: flex; flex-direction: column; gap: .6rem; }
.about-card:nth-child(1) { background: var(--blue); grid-row: span 2; justify-content: center; }
.about-card:nth-child(2) { background: var(--yellow); color: var(--dark); }
.about-card:nth-child(3) { background: var(--teal); }
.about-card-big { font-size: 3rem; font-weight: 900; line-height: 1; }
.about-card-label { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }
.about-values { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.about-content { padding-bottom: 2.5rem; }
.about-value { display: flex; align-items: flex-start; gap: 1rem; }
.about-value-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.about-value h4 { font-size: .95rem; font-weight: 700; margin-bottom: .2rem; }
.about-value p { font-size: .88rem; font-weight: 300; color: #555; line-height: 1.55; }

/* ── OFFRES ── */
#offres, .offres-section { background: var(--white); }
.offres-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 2px solid var(--dark); margin-top: 3rem;
}
.offre-card {
  padding: 2.5rem 2rem; border-right: 2px solid var(--dark);
  transition: background .2s, color .2s;
}
.offre-card:last-child { border-right: none; }
.offre-card:hover .offre-title { color: #fff; }
.offre-card:nth-child(1):hover { background: var(--blue); color: #fff; }
.offre-card:nth-child(2):hover { background: var(--red); color: #fff; }
.offre-card:nth-child(3):hover { background: var(--green); color: #fff; }
.offre-card:hover p { color: rgba(255,255,255,.7); }
.offre-card:hover .offre-items li::before { background: var(--yellow); }
.offre-num { font-size: 3.5rem; font-weight: 900; color: #eaecf4; line-height: 1; margin-bottom: 1rem; }
.offre-card:hover .offre-num { color: rgba(255,255,255,.15); }
.offre-title { font-size: 1.15rem; font-weight: 700; margin-bottom: .8rem; color: var(--blue); transition: color .2s; }
.offre-card p { font-size: .85rem; font-weight: 300; color: #666; line-height: 1.6; margin-bottom: 1.2rem; }
.offre-items { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.offre-items li { font-size: .82rem; font-weight: 500; display: flex; align-items: center; gap: .6rem; }
.offre-items li::before { content: ''; display: block; width: 6px; height: 6px; background: var(--blue); flex-shrink: 0; transition: background .2s; }

/* ── ARTISTES ── */
#artistes, .artistes-section { background: var(--white); }
.artistes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.artistes-grid-preview { margin-top: 2rem; }
.artistes-cta { text-align: center; margin-top: 2.5rem; }
.artiste-card {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.artiste-photo {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-color: var(--lavender);
  transition: transform .4s ease;
}
.artiste-card:hover .artiste-photo { transform: scale(1.06); }
.artiste-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(38,72,149,0.97) 0%, rgba(38,72,149,0.7) 60%, transparent 100%);
  padding: 2rem 1.5rem 1.5rem;
  transition: transform .35s ease;
}
.artiste-card:hover .artiste-overlay { transform: translateY(0); }
.artiste-name { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .4rem; line-height: 1.2; }
.artiste-desc {
  font-size: .78rem; font-weight: 300; color: rgba(255,255,255,.8);
  line-height: 1.5; margin-bottom: .8rem;
  opacity: 0; transition: opacity .3s ease .1s;
}
.artiste-card:hover .artiste-desc { opacity: 1; }
.artiste-link { font-size: .75rem; font-weight: 700; color: var(--yellow); letter-spacing: .08em; text-transform: uppercase; }
.artiste-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; z-index: 2;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}
.artiste-card:hover::before { transform: scaleX(1); }

/* ── RÉFÉRENCES ── */
#references, .references-section { background: #fff; color: var(--dark); }
#references .section-label, .references-section .section-label { color: var(--blue); }
#references .section-label::after, .references-section .section-label::after { background: var(--blue); }
#references h2.section-title, .references-section h2.section-title { color: var(--dark); }
.refs-categories { display: flex; flex-direction: column; gap: 1rem; }
.refs-category { display: flex; flex-direction: column; gap: 0; }
.refs-category-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  background: transparent;
  padding-top: 0.5rem;
}
.refs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: transparent;
  margin-top: 0.75rem;
}
.ref-item, a.ref-item {
  padding: 1.4rem 1.6rem; background: transparent;
  font-size: .88rem; font-weight: 500; color: var(--dark);
  transition: background .2s, color .2s;
}
.ref-item:hover, a.ref-item:hover, span.ref-item:hover { background: var(--blue); color: #fff !important; opacity: 1; }
a.ref-item { text-decoration: none !important; }
.refs-banner {
  margin-top: 3rem; padding: 2rem 2.5rem;
  background: var(--yellow); color: var(--dark);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.refs-banner p { font-weight: 700; font-size: 1.05rem; }
.refs-banner span { font-weight: 300; font-size: .9rem; }

/* ── ÉQUIPE ── */
#equipe, .equipe-section { background: #f7f8fc; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.team-card {
  background: #fff; border-top: 4px solid var(--blue);
  padding: 2.5rem 2rem; transition: transform .2s;
  overflow: hidden;
}
.team-card:hover { transform: translateY(-4px); }
.team-card:nth-child(1) { border-top-color: var(--blue); }
.team-card:nth-child(2) { border-top-color: var(--red); }
.team-card:nth-child(3) { border-top-color: #604988; }
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: 1.2rem;
}
.team-card:nth-child(1) .team-avatar { background: var(--blue); }
.team-card:nth-child(2) .team-avatar { background: var(--red); }
.team-card:nth-child(3) .team-avatar { background: #604988; }
.team-name { font-size: 1.05rem; font-weight: 700; margin-bottom: .3rem; }
.team-email { font-size: .8rem; color: var(--blue); font-weight: 500; margin-bottom: 1rem; text-decoration: none; display: block; }
.team-phone { font-size: .85rem; color: #666; }
.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.team-card img:hover { opacity: .9; }

/* ── CONTACT ── */
#contact {
  background: var(--blue); color: #fff;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
#contact .section-label { color: var(--yellow); }
#contact .section-label::after { background: var(--yellow); }
#contact h2.section-title { color: #fff; }
#contact .section-lead { color: rgba(255,255,255,.75); }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.contact-info-item { display: flex; flex-direction: column; gap: .3rem; }
.contact-info-item label { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--yellow); }
.contact-info-item a, .contact-info-item span { font-size: .95rem; font-weight: 400; color: rgba(255,255,255,.85); text-decoration: none; }
.contact-info-item a:hover { color: #fff; text-decoration: underline; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-family: 'Poppins', sans-serif; font-size: .9rem;
  padding: .8rem 1rem; outline: none; transition: border-color .2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--yellow); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--blue); color: #fff; }
.btn-submit {
  background: var(--yellow); color: var(--dark);
  font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 700;
  padding: .9rem 2.5rem; border: none; cursor: pointer;
  transition: background .2s, transform .15s; align-self: flex-start;
  text-transform: uppercase; letter-spacing: .08em;
}
.btn-submit:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

/* ── FOOTER ── */
footer.hyphene-footer {
  background: var(--dark); color: rgba(255,255,255,.5);
  padding: 2rem 4rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-size: 1.1rem; font-weight: 900; color: #fff; display: flex; align-items: center; gap: .4rem; text-decoration: none; }
.footer-logo span { display: inline-block; width: 22px; height: 2px; background: var(--yellow); border-radius: 2px; }
footer.hyphene-footer p { font-size: .78rem; }
footer.hyphene-footer a { color: rgba(255,255,255,.5); text-decoration: none; }
footer.hyphene-footer a:hover { color: var(--yellow); }
.footer-links { display: flex; gap: 1.5rem; }

/* ── AGENDA ── */
.agenda-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.agenda-item {
  display: flex; align-items: center; gap: 2rem;
  padding: 1.5rem 2rem; background: #fff;
  border-left: 4px solid var(--blue);
  transition: transform .2s;
}
.agenda-item:hover { transform: translateX(4px); }
.agenda-date { display: flex; flex-direction: column; align-items: center; min-width: 50px; }
.agenda-day { font-size: 2rem; font-weight: 900; color: var(--blue); line-height: 1; }
.agenda-month { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); }
.agenda-title { font-size: 1rem; font-weight: 700; color: var(--text); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * { animation: fadeUp .7s ease both; }
.hero-left > *:nth-child(1) { animation-delay: .1s; }
.hero-left > *:nth-child(2) { animation-delay: .25s; }
.hero-left > *:nth-child(3) { animation-delay: .35s; }
.hero-left > *:nth-child(4) { animation-delay: .45s; }
.hero-left > *:nth-child(5) { animation-delay: .55s; }
.hero-block { animation: fadeUp .7s ease both; }
.hero-block:first-child { animation-delay: .4s; }
.hero-block:last-child  { animation-delay: .55s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav.hyphene-nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links li { border-bottom: 1px solid rgba(38,72,149,0.1); }
  .nav-links a { padding: 1rem 2rem; display: block; }
  .nav-cta { background: none !important; color: var(--blue) !important; border-radius: 0; }
  #hero { grid-template-columns: 1fr; }
  .hero-right { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
  .hyphene-section { padding: 4rem 1.5rem; }
  #about, .about-section, #contact, .contact-section { grid-template-columns: 1fr; gap: 3rem; }
  .offres-grid, .team-grid { grid-template-columns: 1fr; }
  .offre-card { border-right: none; border-bottom: 2px solid var(--dark); }
  .refs-grid { grid-template-columns: 1fr 1fr; }
  .artistes-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  footer.hyphene-footer { flex-direction: column; align-items: flex-start; }
  section[id] { scroll-margin-top: 70px; }
}
@media (max-width: 500px) {
  .artistes-grid { grid-template-columns: 1fr; }
}