/* ============================================================
   BILLY COBHAM — Responsive Fix Layer
   Mobile-First Corrections — All 12 Rules Applied
   ============================================================ */

/* ---- 0. ENHANCED RESET ----------------------------------- */
html,
body {
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #0a0806;
  color: #F1EADA;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  max-width: 100%;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---- 11. ACCESSIBILITY — Focus visible ------------------- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #B59E7D;
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---- 10. SAFE AREA — iPhone notch/home bar -------------- */
@supports (padding: env(safe-area-inset-bottom)) {
  #navbar {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .hero-mobile-btn-bottom {
    padding-bottom: calc(0px + env(safe-area-inset-bottom));
    height: calc(64px + env(safe-area-inset-bottom));
  }

  .footer {
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
  }
}

/* ---- 1. HERO — 100dvh fix iOS Safari -------------------- */
.hero {
  min-height: 100dvh;
  height: 100dvh;
}

.hero-mobile {
  height: 100dvh;
  min-height: 580px;
}

/* ---- 12. ANTI-SCROLL HORIZONTAL — conteneurs ------------ */
.container,
.container-wide,
.nav-container,
.home-tour-inner,
.stats-container,
.footer > .container {
  max-width: 100%;
}

/* ---- 2. NAVIGATION MOBILE — Hamburger + overlay --------- */

/* Burger button — properly positioned on the right */
.burger {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
  z-index: 10001;
  cursor: pointer;
  border: none;
  background: none;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #F1EADA;
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}

/* Hamburger → Croix animation */
.burger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Nav menu — fullscreen overlay mobile */
.nav-menu {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

/* Menu links — full size mobile */
.nav-menu .nav-link {
  font-size: 2rem;
  letter-spacing: 0.05em;
  padding: 12px 24px;
  text-align: center;
}

/* body.menu-open — prevent scroll */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Desktop override — ≥768px */
@media (min-width: 768px) {
  .nav-menu {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: all !important;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-left: auto;
    z-index: auto;
    transition: none;
  }

  .nav-menu .nav-link {
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 8px 14px;
    text-align: left;
  }

  .burger {
    display: none !important;
  }
}

/* ---- 5. SPACING — Mobile-first padding sections ---------- */
section {
  padding: 4rem 0; /* 64px mobile */
}

.container,
.container-wide {
  padding: 0 1.25rem; /* 20px mobile */
}

@media (min-width: 640px) {
  .container,
  .container-wide {
    padding: 0 2rem; /* 32px tablette */
  }

  section {
    padding: 5rem 0; /* 80px tablette */
  }
}

@media (min-width: 768px) {
  .container,
  .container-wide {
    padding: 0 2.5rem; /* 40px desktop mid */
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 2.5rem;
  }

  section {
    padding: 7.5rem 0; /* 120px desktop */
  }
}

/* ---- 9. TYPOGRAPHIE — Mobile first ----------------------- */

/* Display titles */
.section-title {
  font-size: clamp(1.5rem, 4vw, 3.25rem); /* 24px→52px */
  line-height: 1.1;
}

/* Hero name BILLY — mobile */
.hero-firstname {
  font-size: clamp(48px, 13vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

/* Hero name Cobham — mobile */
.hero-lastname {
  font-size: clamp(28px, 8vw, 77px);
  line-height: 1.15;
}

/* Hero bio */
.hero-bio {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  max-width: 100%;
}

/* Stats label — never < 10px handled by font-size */
.stat-label {
  font-size: clamp(10px, 2vw, 12px);
}

/* Section label */
.section-label {
  font-size: clamp(10px, 1.5vw, 11px);
}

/* body text */
.about-bio,
.featured-album-desc,
.news-excerpt,
.tour-banner-desc,
.contact-text,
.press-bio-text {
  font-size: clamp(0.875rem, 2vw, 0.9375rem); /* 14–15px */
}

/* ---- 6. BUTTONS CTA — touch targets ---------------------- */
.btn-primary,
.btn-ghost,
.btn-outline {
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: clamp(11px, 1.5vw, 12px);
}

.hero-btn-tour,
.hero-btn-watch {
  min-height: 48px !important;
  width: 180px !important;
  padding: 0 1.5rem !important;
}

/* ---- 3. GRILLES DE CARDS — Mobile first, 1→2→3 col ------- */

/* News grid */
.news-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Albums grid */
.albums-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .albums-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .albums-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Disc grid */
.disco-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .disco-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .disco-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* SoundCloud grid */
.soundcloud-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .soundcloud-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Video grid page */
.video-grid-page {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .video-grid-page {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .video-grid-page {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Shop grid */
.shop-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Explore grid */
.explore-grid {
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .explore-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Press photos */
.press-photos-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .press-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .press-photos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Press quotes */
.press-quote-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .press-quote-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- 4. IMAGES — responsive correct ---------------------- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.photo-frame img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
}

.news-card-img img,
.video-card-thumb img,
.gallery-item img,
.album-img img,
.shop-item-img img,
.featured-release-img img,
.press-photo-card img,
.tour-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image corners */
.album-card,
.news-card,
.video-card,
.shop-item {
  border-radius: 8px; /* mobile rounded-xl */
  overflow: hidden;
}

@media (min-width: 1024px) {
  .album-card,
  .news-card,
  .video-card,
  .shop-item {
    border-radius: 12px; /* desktop rounded-2xl */
  }
}

/* ---- 7. MASONRY GALLERY — Column-count ------------------- */
/* Override la gallery-grid existante en mobile pour masonry */
@media (max-width: 639px) {
  .gallery-grid {
    display: block;
    column-count: 1;
    column-gap: 1rem;
  }

  .gallery-item {
    display: block;
    break-inside: avoid;
    margin-bottom: 1rem;
    height: auto;
  }

  .gallery-item img {
    height: auto;
    min-height: 200px;
  }

  .gallery-item--tall,
  .gallery-item--wide {
    grid-row: unset;
    grid-column: unset;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .gallery-grid {
    display: block;
    column-count: 2;
    column-gap: 1rem;
  }

  .gallery-item {
    display: block;
    break-inside: avoid;
    margin-bottom: 1rem;
    height: auto;
  }

  .gallery-item img {
    height: auto;
    min-height: 180px;
  }

  .gallery-item--tall,
  .gallery-item--wide {
    grid-row: unset;
    grid-column: unset;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    display: block;
    column-count: 3;
    column-gap: 1rem;
  }

  .gallery-item {
    display: block;
    break-inside: avoid;
    margin-bottom: 1rem;
    height: auto;
  }

  .gallery-item img {
    height: auto;
    min-height: 200px;
  }

  .gallery-item--tall,
  .gallery-item--wide {
    grid-row: unset;
    grid-column: unset;
  }
}

/* ---- 8. FOOTER — Mobile centré, desktop grille ----------- */
.footer-top {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 1.75rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand .nav-logo {
  justify-content: center;
}

.footer-tagline {
  text-align: center;
}

.footer-nav {
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.footer-social {
  justify-content: center;
}

.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr auto 1fr;
    text-align: left;
    gap: 2.5rem;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand .nav-logo {
    justify-content: flex-start;
  }

  .footer-tagline {
    text-align: left;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-social {
    justify-content: flex-end;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
}

/* ---- HERO MOBILE — corrections spécifiques -------------- */
@media (max-width: 767px) {
  /* Hero mobile name block */
  .hero-mobile-name-block {
    top: 55%;
    bottom: 72px;
    padding: 0 1rem;
  }

  /* Hero CTA buttons full-width on very small */
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn-tour,
  .hero-btn-watch {
    width: 100% !important;
  }

  /* Stats bar stacked */
  .stats-bar {
    padding: 2.25rem 0;
  }

  .stats-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1.25rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  /* About grid — single column */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo {
    position: static;
  }

  .photo-frame img {
    height: 320px;
    max-height: 320px;
  }

  /* Featured album */
  .featured-album-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .featured-album-cover img {
    width: min(240px, 70vw);
    height: auto;
    margin: 0 auto;
  }

  .featured-album-desc {
    max-width: 100%;
  }

  .featured-album-btns {
    justify-content: center;
  }

  /* Home tour promo */
  .home-tour {
    padding: 3.75rem 0;
  }

  .home-tour-inner {
    padding: 0 1.25rem;
  }

  .home-tour-header {
    margin-bottom: 2rem;
  }

  .home-tour-dates {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 2rem;
  }

  .home-tour-date {
    padding: 1.25rem 1rem;
  }

  /* Page hero */
  .page-hero {
    height: auto;
    min-height: 260px;
    padding: calc(var(--nav-height) + 2rem) 0 2.5rem;
  }

  .page-hero-title {
    font-size: clamp(2rem, 7vw, 3.5rem);
  }

  .page-hero-content {
    padding: 0 1.25rem;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Tour */
  .tour-item {
    grid-template-columns: 64px 1fr;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
  }

  .tour-badge {
    display: none;
  }

  /* Shop featured */
  .shop-featured {
    grid-template-columns: 1fr;
  }

  .shop-featured-content {
    padding: 2rem 1.5rem;
  }

  /* Press */
  .press-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Streaming buttons */
  .streaming-btns {
    flex-direction: column;
    align-items: stretch;
  }

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

/* ---- Mobile small ≤480px -------------------------------- */
@media (max-width: 480px) {
  /* Home tour — single column */
  .home-tour-dates {
    grid-template-columns: 1fr;
  }

  .home-tour-date {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
  }

  .htd-day {
    font-size: 2rem;
    min-width: 52px;
  }

  .htd-status {
    margin-top: 0;
    padding-top: 0;
  }

  /* Page hero minimal */
  .page-hero {
    min-height: 220px;
    align-items: flex-end;
  }

  /* Tour item minimal */
  .tour-item {
    padding: 1.25rem 1rem;
  }

  /* Nav social hidden on very small */
  .nav-social {
    display: none;
  }
}

/* ---- TABLETTE 640–1023px -------------------------------- */
@media (min-width: 640px) and (max-width: 1023px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-photo {
    position: static;
  }

  .photo-frame img {
    height: 400px;
    max-height: 400px;
  }

  .home-tour-dates {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-album-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .featured-album-cover img {
    width: min(280px, 60vw);
    height: auto;
    margin: 0 auto;
  }

  .featured-album-btns {
    justify-content: center;
  }

  .page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
}

/* ---- DESKTOP ≥1024px ------------------------------------ */
@media (min-width: 1024px) {
  section {
    padding: 7.5rem 0;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .about-photo {
    position: sticky;
    top: 6.25rem;
  }

  .photo-frame img {
    height: 600px;
    max-height: 600px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-tour-dates {
    grid-template-columns: repeat(5, 1fr);
  }

  .featured-album-inner {
    grid-template-columns: auto 1fr;
    text-align: left;
  }

  .featured-album-btns {
    justify-content: flex-start;
  }
}

/* ---- HERO DESKTOP — corrections layout ------------------- */
@media (min-width: 768px) {
  .hero-content {
    padding: 0 40px 0 6vw;
    max-width: 620px;
  }
}

/* ---- NAVIGATION — nav container fix ---------------------- */
.nav-container {
  padding: 0 1.25rem;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nav-container {
    padding: 0 2.5rem;
    gap: 2.5rem;
  }
}

/* ---- ALBUM PROMO HERO — hide on very small --------------- */
@media (max-width: 380px) {
  .hero-album-promo-mobile {
    width: clamp(140px, 44vw, 200px);
  }
}

/* ---- HOME TOUR — inner padding fixes -------------------- */
.home-tour-inner {
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .home-tour-inner {
    padding: 0 2.5rem;
  }
}

@media (min-width: 1280px) {
  .home-tour-inner {
    padding: 0 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* ---- VIDEO NAV — wrap on mobile -------------------------- */
@media (max-width: 640px) {
  .video-nav {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .thumb-img {
    width: 90px;
    height: 50px;
  }

  .video-thumb span {
    width: 90px;
  }
}

/* ---- IFRAMES — responsive -------------------------------- */
iframe {
  max-width: 100%;
}

/* ---- LIGHTBOX — mobile nav ------------------------------- */
@media (max-width: 640px) {
  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-content {
    max-width: 95vw;
    max-height: 85vh;
  }

  .lightbox-content img {
    max-width: 95vw;
    max-height: 70vh;
  }
}

/* ---- CARDS — border + hover fix -------------------------- */
.news-card,
.album-card,
.video-card,
.shop-item,
.explore-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #1c1510;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.news-card:hover,
.album-card:hover,
.video-card:hover {
  transform: scale(1.02);
}

/* ---- DISC GRID (music page) ------------------------------ */
.disco-grid {
  display: grid;
  gap: 1.5rem;
}

/* ---- SHOP NOTICE — mobile -------------------------------- */
@media (max-width: 640px) {
  .shop-notice {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
    text-align: center;
  }
}

/* ---- TOUR BANNER — safe stack ---------------------------- */
@media (max-width: 899px) {
  .tour-banner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding: 2.25rem 1.5rem;
  }

  .tour-banner-img {
    max-width: 260px;
    width: 100%;
    margin: 0 auto;
  }
}

/* ---- HERO BIO — max-width on mobile --------------------- */
@media (max-width: 767px) {
  .hero-bio {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .hero-label {
    display: none;
  }

  .hero-credential {
    display: none;
  }
}

/* ---- SCROLL INDICATOR — centered properly ---------------- */
.hero-scroll {
  bottom: max(24px, env(safe-area-inset-bottom, 24px));
}

/* ---- SECTION CTA buttons — centered mobile --------------- */
@media (max-width: 640px) {
  .section-cta {
    text-align: center;
  }

  .home-tour-cta {
    text-align: center;
  }

  .home-tour-cta .btn-primary {
    width: 100%;
    max-width: 320px;
  }
}

/* ---- STATS CONTAINER — fix padding ----------------------- */
.stats-container {
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .stats-container {
    padding: 0 2.5rem;
  }
}

/* ---- PAGE HERO CONTENT — fix padding --------------------- */
.page-hero-content {
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .page-hero-content {
    padding: 0 2.5rem;
  }
}

@media (min-width: 1280px) {
  .page-hero-content {
    padding: 0 2.5rem;
  }
}

/* ---- FEATURED RELEASE — disc page ----------------------- */
@media (max-width: 767px) {
  .featured-release {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .featured-release-img {
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
  }

  .featured-release-year {
    font-size: 3rem;
  }
}

/* ---- VIDEO CATEGORIES — horizontal scroll on mobile ------ */
@media (max-width: 640px) {
  .video-categories {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0;
  }

  .video-categories::-webkit-scrollbar {
    display: none;
  }

  .video-cat-btn {
    flex-shrink: 0;
    padding: 12px 16px;
    font-size: 10px;
  }
}

/* ---- CONTACT FORM — mobile padding ----------------------- */
@media (max-width: 640px) {
  .contact-email {
    font-size: 11px;
    word-break: break-word;
  }
}

/* ---- PREVENT OVERFLOW de certains éléments --------------- */
.hero-mobile-name-block,
.hero-content,
.about-quote,
.news-title,
.featured-album-title,
.section-title {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ---- CARD HOVER — tablet touch friendly ------------------ */
@media (hover: none) {
  .news-card:hover,
  .album-card:hover,
  .video-card:hover,
  .shop-item:hover {
    transform: none;
  }

  .gallery-item:hover img {
    transform: none;
  }

  .gallery-item:hover .gallery-hover {
    opacity: 0;
  }
}

/* ============================================================
   ADDITIONAL FIX — Hero Mobile Overlap Prevention
   ============================================================ */

/* Hero mobile: ensure album promo and logo don't overlap */
@media (max-width: 767px) {
  .hero-mobile {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100dvh;
    min-height: 580px;
    overflow: hidden;
  }

  /* Album promo: repositioned to top 30% */
  .hero-album-promo-mobile {
    top: 28%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: clamp(160px, 48vw, 240px);
    z-index: 5;
  }

  /* Name block: bottom 40% */
  .hero-mobile-name-block {
    top: 60%;
    bottom: 72px;
    z-index: 2;
  }

  /* Hero mobile logo sizing */
  .hero-mobile-logo {
    width: clamp(160px, 54vw, 280px);
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
}

/* Very small screens: compact the album promo more */
@media (max-width: 380px) {
  .hero-album-promo-mobile {
    width: clamp(130px, 42vw, 200px);
    top: 25%;
  }

  .hero-mobile-name-block {
    top: 58%;
  }
}

/* ============================================================
   ADDITIONAL FIX — Footer bottom text centering
   ============================================================ */
@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.375rem !important;
  }

  .footer-bottom p {
    text-align: center !important;
  }

  .footer-nav {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.5rem 1rem !important;
  }

  .footer-social {
    justify-content: center !important;
  }

  /* Section CTA centered */
  .section-cta,
  .home-tour-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* --- CODE AJOUTÉ PAR L'ASSISTANT --- */

/* 2. CACHER LES RÉSEAUX SOCIAUX UNIQUEMENT SUR PETITS ÉCRANS */
/* Cette règle ne s'active que sous 992px (Tablette et Mobile) */
@media screen and (max-width: 991px) {
    
    .nav-social {
        display: none !important; /* Force le masquage */
    }
    
}
