/* ============================================================
   Bareeq · Hero — proper responsive
   ============================================================ */

.hero {
  position: relative;
  background: var(--burgundy);
  color: var(--ivory);
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 28px 18px 40px;
  align-items: start;
}
.hero__copy { display: flex; flex-direction: column; }
.hero__title {
  margin: 18px 0 0;
  font-size: clamp(52px, 14vw, 124px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.hero__tagline {
  display: flex; align-items: center; gap: 12px;
  margin-top: 18px;
}
.hero__tagline .arabic {
  font-size: clamp(24px, 6.5vw, 42px);
  color: var(--gold);
  line-height: 1;
}
.hero__lead {
  max-width: 480px;
  margin: 22px 0 0;
  color: rgba(255,240,225,0.78);
  font-size: clamp(14.5px, 3.6vw, 16.5px);
  line-height: 1.55;
  text-wrap: pretty;
}
.hero__ctas {
  display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap;
}
.hero__ctas .btn { flex: 1 1 auto; justify-content: center; min-width: 0; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,240,225,0.18);
}
.hero__stat-k { font-size: 26px; line-height: 1; color: var(--gold); }
.hero__stat-v { color: rgba(255,240,225,0.55); margin-top: 6px; font-size: 9.5px; }

/* MOBILE ART — single panel, no rotation */
.hero__art {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  margin-top: 4px;
}
.hero__art-a, .hero__art-c { display: none; }
.hero__art-b {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  overflow: hidden;
}
.hero__chip {
  position: absolute;
  left: 12px; bottom: 12px;
  background: var(--ivory); color: var(--ink);
  border-radius: 14px;
  padding: 10px 12px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 18px 40px -20px rgba(0,0,0,0.5);
  max-width: calc(100% - 24px);
}

.hero__corner-tl,
.hero__corner-br { display: none; }

/* TABLET (≥768) ─────────────────────────────────────────── */
@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    padding: 40px 28px 56px;
    align-items: center;
  }
  .hero__art { aspect-ratio: auto; height: 460px; }
  .hero__art-a, .hero__art-c { display: block; position: absolute; }
  .hero__art-a {
    top: 0; right: 20px;
    width: 200px; height: 260px;
    transform: rotate(-4deg);
    border-radius: 4px; overflow: hidden;
  }
  .hero__art-b {
    top: 50px; right: 140px;
    inset: auto;
    width: 240px; height: 320px;
    transform: rotate(2deg);
    border-radius: 4px;
  }
  .hero__art-c {
    bottom: 0; right: 0;
    width: 170px; height: 220px;
    transform: rotate(6deg);
    border-radius: 4px; overflow: hidden;
  }
  .hero__chip { left: 0; bottom: 40px; padding: 14px 16px; }
  .hero__corner-tl,
  .hero__corner-br {
    display: block;
    position: absolute;
    color: var(--gold);
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
  }
  .hero__corner-tl { top: 28px; right: 28px; text-align: right; }
  .hero__corner-br { bottom: 22px; right: 28px; color: rgba(255,240,225,0.5); letter-spacing: 0.22em; font-size: 10.5px; }
}

/* DESKTOP (≥1280) ───────────────────────────────────────── */
@media (min-width: 1280px) {
  .hero__inner {
    gap: 72px;
    padding: 38px 32px 60px;
    min-height: 720px;
  }
  .hero__art { height: 640px; }
  .hero__art-a { top: 0; right: 40px; width: 260px; height: 340px; }
  .hero__art-b { top: 80px; right: 220px; width: 320px; height: 420px; }
  .hero__art-c { bottom: 0; right: 0; width: 220px; height: 280px; }
  .hero__chip { left: 0; bottom: 60px; padding: 16px 18px; }
  .hero__corner-tl { top: 32px; right: 40px; }
  .hero__corner-br { bottom: 24px; right: 40px; }
  .hero__lead { font-size: 16.5px; margin-top: 32px; }
  .hero__stats { display: flex; gap: 36px; margin-top: 56px; padding-top: 24px; }
  .hero__stat-k { font-size: 32px; }
  .hero__stat-v { font-size: 10.5px; }
  .hero__ctas { gap: 12px; margin-top: 36px; }
  .hero__ctas .btn { flex: 0 0 auto; }
}
