/* ===== THIAMSTREETWEAR — HERO ===== */

.hero-brand {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black, #000);
  color: var(--white, #fff);
}

.hero-brand__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 169, 110, 0.15) 0%, transparent 55%),
    linear-gradient(135deg, #0a0a0a 0%, #000 50%, #111 100%);
}

.hero-brand__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 169, 110, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 110, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 30%, transparent 90%);
}

.hero-brand__inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-brand__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent, #F5C518);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-brand__title {
  font-family: var(--font-title, 'Bebas Neue', sans-serif);
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-brand__title .accent {
  color: var(--accent, #F5C518);
  display: block;
}

.hero-brand__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-brand__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-brand__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 169, 110, 0.25);
}

.hero-brand__stat strong {
  display: block;
  font-family: var(--font-title, 'Bebas Neue', sans-serif);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--accent, #F5C518);
}

.hero-brand__stat strong span {
  font-size: 1.2rem;
}

.hero-brand__stat small {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero-brand__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.hero-orbit {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orbit__ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 169, 110, 0.35);
  border-radius: 50%;
  animation: heroSpin 24s linear infinite;
}

.hero-orbit__ring--2 {
  inset: 12%;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 18s;
}

.hero-orbit__globe {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--accent-light, #F8D848), var(--accent-dark, #D4A800));
  opacity: 0.25;
}

.hero-orbit__logo {
  position: relative;
  z-index: 2;
  text-align: center;
  line-height: 1;
}

.hero-orbit__logo-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid var(--accent, #F5C518);
  background: rgba(0, 0, 0, 0.4);
  padding: 8px;
}

.hero-orbit__logo span {
  color: var(--accent, #F5C518);
}

.hero-orbit__star {
  position: absolute;
  color: var(--accent, #F5C518);
  font-size: 0.65rem;
  animation: heroPulse 2.5s ease-in-out infinite;
}

.hero-orbit__star--1 { top: 8%; right: 18%; animation-delay: 0s; }
.hero-orbit__star--2 { bottom: 15%; left: 10%; animation-delay: 0.8s; }
.hero-orbit__star--3 { top: 40%; left: 0; animation-delay: 1.5s; }

/* Badge commun */
.hero-brand__badge {
  background: var(--accent, #F5C518);
  color: var(--black);
  padding: 0.65rem 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-brand__badge em {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--black);
}

/* Desktop : badge positionné en absolu sur le visuel */
.hero-badge--desktop {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
}

/* Mobile : badge dans le content, caché par défaut */
.hero-badge--mobile {
  display: none;
}

@keyframes heroSpin {
  to { transform: rotate(360deg); }
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: var(--accent, #F5C518);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--accent, #F5C518);
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background: transparent;
  color: var(--accent, #F5C518);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.4);
}

.btn-hero-ghost:hover {
  color: var(--accent, #F5C518);
  border-color: var(--accent, #F5C518);
}

@media (max-width: 1024px) {
  .hero-brand__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.5rem 3rem;
  }
  /* Cacher le visuel orbital sur mobile */
  .hero-brand__visual {
    display: none;
  }
  .hero-brand__desc { max-width: none; }

  /* Sur mobile : cacher le badge desktop, afficher le badge mobile */
  .hero-badge--desktop { display: none; }
  .hero-badge--mobile {
    display: inline-block;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero-brand { min-height: auto; }
  .hero-brand__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-brand__ctas .btn-hero-primary {
    width: 100%;
    justify-content: center;
  }
  .hero-brand__stats { gap: 1.25rem; }
  .hero-brand__stat { flex: 1 1 40%; }
  .hero-orbit { width: min(100%, 280px); }
}
