:root {
  --black: #050505;
  --black-soft: #101010;
  --white: #f5f5f5;
  --muted: #c7c7c7;
  --gold: #f2b93b;
  --gold-dark: #b98419;
  --border: rgba(255, 255, 255, 0.22);
  --panel: rgba(12, 12, 12, 0.72);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }

.page-shell {
  min-height: 100vh;
  background: #050505;
  overflow: hidden;
}

.hero-screen {
  position: relative;
  min-height: 76vh;
  border-bottom: 2px solid rgba(242, 185, 59, 0.78);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/s3r-portrait.jpg");
  background-size: auto 115%;
  background-position: 68% 37%;
  background-repeat: no-repeat;
  filter: grayscale(1) contrast(1.16) brightness(0.93);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,4,4,0.98) 0%, rgba(5,5,5,0.9) 24%, rgba(5,5,5,0.34) 51%, rgba(5,5,5,0.55) 72%, rgba(5,5,5,0.9) 100%),
    radial-gradient(circle at 70% 24%, rgba(255,255,255,.12), transparent 24%),
    linear-gradient(0deg, rgba(0,0,0,0.28), rgba(0,0,0,0));
}

.noise {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: .16;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.16) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

.site-header {
  position: relative;
  z-index: 10;
  width: min(92vw, 1640px);
  margin: 0 auto;
  height: 118px;
  display: grid;
  grid-template-columns: 180px 1fr 210px;
  align-items: center;
  gap: 28px;
}

.brand { display: inline-flex; flex-direction: column; line-height: .9; }
.brand-main {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 64px;
  letter-spacing: 1px;
  font-weight: 900;
}
.brand-sub {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: 900;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3.2vw, 54px);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.main-nav a {
  position: relative;
  padding: 18px 0;
  color: rgba(255,255,255,.88);
}
.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 2px;
  background: var(--gold);
}

.official-pill {
  justify-self: end;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 16px 34px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  background: rgba(0,0,0,.24);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: min(92vw, 1640px);
  margin: 0 auto;
  min-height: calc(76vh - 118px);
  display: grid;
  grid-template-columns: minmax(520px, 720px) 250px;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 28px 0 56px;
}

.eyebrow {
  font-size: 0;
  height: 0;
  overflow: hidden;
}

.intro-card h1 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(130px, 19vw, 235px);
  line-height: .72;
  letter-spacing: 4px;
  color: #f2f2f2;
  text-shadow: 0 8px 34px rgba(0,0,0,.65);
}
.alias {
  color: var(--gold);
  text-transform: uppercase;
  font-size: clamp(42px, 5.3vw, 76px);
  font-weight: 900;
  letter-spacing: 16px;
  margin-top: 14px;
}
.role {
  margin-top: 18px;
  font-size: clamp(28px, 3.2vw, 45px);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 10px;
}
.statement {
  max-width: 530px;
  margin-top: 36px;
  padding-left: 34px;
  border-left: 5px solid var(--white);
  font-size: 20px;
  line-height: 1.65;
  color: #f1f1f1;
}
.statement strong { color: #fff; }
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.btn {
  min-width: 260px;
  min-height: 58px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-weight: 900;
  text-transform: uppercase;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: #000;
  box-shadow: 0 14px 34px rgba(242,185,59,.18);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,.8);
  background: rgba(0,0,0,.32);
}

.follow-panel {
  align-self: center;
  margin-top: 76px;
}
.follow-panel h2 {
  position: relative;
  margin-bottom: 24px;
  padding-left: 44px;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 900;
}
.follow-panel h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 4px;
  background: var(--gold);
  transform: translateY(-50%);
}
.follow-panel a {
  width: 210px;
  min-height: 54px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,.84);
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  font-weight: 900;
}
.follow-panel a:hover { border-color: var(--gold); color: var(--gold); }

.bottom-strip {
  min-height: 210px;
  width: min(92vw, 1640px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.65fr .78fr .9fr;
  gap: 36px;
  padding: 28px 0 26px;
}
.strip-column + .strip-column {
  border-left: 1px solid rgba(255,255,255,.22);
  padding-left: 38px;
}
.strip-column h2 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 36px;
  letter-spacing: 1px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.strip-column h2 span { color: var(--gold); margin-right: 12px; }
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.platform-card {
  position: relative;
  min-height: 118px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  padding: 22px 20px;
  display: grid;
  align-content: end;
}
.platform-card:hover { border-color: var(--gold); }
.platform-card .icon {
  position: absolute;
  top: 18px;
  left: 20px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gold);
  color: #080808;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.platform-card em {
  position: absolute;
  right: 20px;
  top: 56px;
  font-style: normal;
  font-size: 28px;
}
.platform-card strong { font-size: 21px; }
.platform-card small { color: var(--muted); margin-top: 2px; }
.info ul { list-style: none; display: grid; gap: 12px; }
.info li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-weight: 700;
}
.info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px;
  display: grid;
  place-items: center;
}
.contact p { color: var(--muted); margin-bottom: 24px; }
.email-button {
  min-height: 58px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  color: #fff;
  font-weight: 900;
}
.email-button:hover { background: var(--gold); color: #050505; }
.hidden-seo {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.footer {
  text-align: center;
  color: rgba(255,255,255,.42);
  font-size: 14px;
  padding: 12px 20px 26px;
}

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 140px 1fr; height: auto; padding: 24px 0; }
  .official-pill { display: none; }
  .brand-main { font-size: 52px; }
  .hero-content { grid-template-columns: 1fr; }
  .follow-panel { margin-top: 0; display: flex; flex-wrap: wrap; gap: 12px; }
  .follow-panel h2 { width: 100%; }
  .follow-panel a { width: 180px; margin: 0; }
  .bottom-strip { grid-template-columns: 1fr; }
  .strip-column + .strip-column { border-left: none; border-top: 1px solid rgba(255,255,255,.18); padding-left: 0; padding-top: 28px; }
}

@media (max-width: 760px) {
  .hero-screen { min-height: auto; }
  .hero-bg { background-size: auto 82%; background-position: 63% 5%; opacity: .72; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(3,3,3,.62), rgba(3,3,3,.95) 45%, rgba(3,3,3,1) 100%);
  }
  .site-header { display: flex; justify-content: space-between; align-items: center; }
  .main-nav { display: none; }
  .hero-content { padding-top: 280px; min-height: auto; }
  .intro-card h1 { font-size: 104px; }
  .alias { font-size: 34px; letter-spacing: 9px; }
  .role { font-size: 22px; letter-spacing: 5px; }
  .statement { font-size: 16px; padding-left: 18px; border-left-width: 3px; }
  .btn { width: 100%; min-width: 0; }
  .follow-panel a { width: 100%; }
  .platform-grid { grid-template-columns: 1fr; }
  .strip-column h2 { font-size: 31px; }
}

/* =========================================================
   RESPONSIVE MOBILE FIXES
   À coller tout en bas du fichier style.css
   ========================================================= */

@media (max-width: 1024px) {
  body {
    overflow-x: hidden;
  }

  .page {
    min-height: auto;
  }

  .hero {
    min-height: auto;
    padding: 28px 20px 0;
    background-position: center top;
  }

  .hero-inner,
  .main-layout,
  .content,
  .bottom-grid {
    width: 100%;
    max-width: 100%;
  }

  .nav {
    padding: 18px 0;
  }

  .nav-menu {
    gap: 18px;
    font-size: 13px;
  }

  .hero-content {
    max-width: 58%;
  }

  .hero-artist {
    right: -40px;
    width: 55%;
  }

  .side-links {
    right: 20px;
    top: 170px;
  }
}

@media (max-width: 768px) {
  .page {
    display: block;
    min-height: 100vh;
  }

  .hero {
    position: relative;
    min-height: 100vh;
    padding: 22px 18px 0;
    overflow: hidden;
  }

  .nav {
    height: auto;
    align-items: flex-start;
  }

  .logo {
    font-size: 28px;
    line-height: 1;
  }

  .logo small {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .nav-menu {
    display: none;
  }

  .official-badge {
    display: none;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 100%;
    padding-top: 40px;
  }

  .hero-content h1,
  .title-main {
    font-size: clamp(76px, 26vw, 118px);
    line-height: 0.85;
    letter-spacing: -4px;
    margin-bottom: 8px;
  }

  .hero-content h2,
  .title-sub {
    font-size: clamp(24px, 8vw, 38px);
    letter-spacing: 8px;
    margin-bottom: 8px;
  }

  .hero-content h3,
  .title-role {
    font-size: 18px;
    letter-spacing: 5px;
    margin-bottom: 22px;
  }

  .statement {
    max-width: 100%;
    border-left-width: 4px;
    padding-left: 16px;
    margin-bottom: 22px;
  }

  .statement p {
    font-size: 15px;
    line-height: 1.55;
  }

  .cta-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    justify-content: center;
    font-size: 14px;
  }

  .hero-artist {
    position: relative;
    z-index: 2;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 360px;
    margin-top: 22px;
    background-position: center top;
    opacity: 0.95;
  }

  .side-links {
    position: static;
    width: 100%;
    margin-top: 22px;
  }

  .side-links-title {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .side-link {
    width: 100%;
    height: 52px;
  }

  .bottom-section {
    position: relative;
    padding: 28px 18px;
  }

  .bottom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .listen-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .listen-card {
    min-height: 110px;
    padding: 20px;
  }

  .bio-list {
    gap: 8px;
  }

  .booking-box {
    width: 100%;
    margin-top: 12px;
  }

  .email-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 15px 18px;
  }

  footer {
    padding: 18px;
    text-align: center;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 18px 14px 0;
  }

  .hero-content {
    padding-top: 26px;
  }

  .hero-content h1,
  .title-main {
    font-size: clamp(68px, 28vw, 98px);
    letter-spacing: -3px;
  }

  .hero-content h2,
  .title-sub {
    font-size: 24px;
    letter-spacing: 6px;
  }

  .hero-content h3,
  .title-role {
    font-size: 15px;
    letter-spacing: 4px;
  }

  .statement p {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-artist {
    height: 300px;
    margin-top: 18px;
  }

  .bottom-section {
    padding: 26px 14px;
  }

  .section-heading {
    font-size: 22px;
  }

  .listen-card h3,
  .booking-title,
  .bio-title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero::before,
  .hero-background {
    background-position: center top !important;
    background-size: cover !important;
  }
}


/* =========================================================
   FIX ALIGNEMENT DES ICONES + RESPONSIVE
   À coller tout en bas de style.css
   ========================================================= */

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

.listen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.listen-card {
  min-height: 116px;
  display: grid;
  grid-template-columns: 54px 1fr 28px;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  text-decoration: none;
  transition: 0.2s ease;
}

.listen-card:hover {
  transform: translateY(-3px);
  border-color: #d6a84f;
  background: rgba(214, 168, 79, 0.08);
}

.listen-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.1;
}

.listen-card p {
  margin: 5px 0 0;
  color: #bdbdbd;
  font-size: 14px;
}

.listen-icon,
.side-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 13px;
  background: #d6a84f;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
}

.card-arrow,
.side-arrow {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  justify-self: end;
}

.side-links {
  width: 245px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.side-links-title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.side-link {
  min-height: 58px;
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(8px);
}

.side-link .side-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  font-size: 18px;
  border-radius: 10px;
}

.side-link span:nth-child(2) {
  font-weight: 800;
  font-size: 15px;
}

/* Desktop : évite les décalages */
.hero {
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-artist {
  z-index: 2;
}

/* Tablette */
@media (max-width: 1024px) {
  .listen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-links {
    width: 220px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-bottom: 28px;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 30px;
  }

  .title-main,
  .hero-content h1 {
    font-size: clamp(70px, 28vw, 105px);
    line-height: 0.85;
    letter-spacing: -3px;
  }

  .title-sub,
  .hero-content h2 {
    font-size: clamp(24px, 8vw, 34px);
    letter-spacing: 5px;
  }

  .title-role,
  .hero-content h3 {
    font-size: 15px;
    letter-spacing: 4px;
  }

  .statement {
    max-width: 100%;
  }

  .statement p {
    font-size: 14px;
    line-height: 1.55;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .side-links {
    position: static !important;
    width: 100%;
    margin-top: 24px;
  }

  .side-link {
    width: 100%;
  }

  .hero-artist {
    position: relative !important;
    width: 100% !important;
    height: 330px !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 22px;
    background-position: center top !important;
    background-size: cover !important;
  }

  .bottom-section {
    position: relative !important;
    padding: 30px 16px;
  }

  .bottom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .listen-grid {
    grid-template-columns: 1fr;
  }

  .listen-card {
    grid-template-columns: 52px 1fr 24px;
    min-height: 98px;
  }
}

/* Petit mobile */
@media (max-width: 420px) {
  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .listen-card {
    padding: 16px;
    gap: 12px;
  }

  .listen-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 20px;
  }

  .listen-card h3 {
    font-size: 19px;
  }

  .side-links-title {
    font-size: 19px;
  }
}
