/* ═══════════════════════════════
   HERO — mobile first
═══════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: 56px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/layered/ScissorsNew.JPEG');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,7,5,0.95) 0%,
    rgba(10,7,5,0.5) 40%,
    rgba(10,7,5,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 20px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-family: "Alumni Sans", sans-serif;
  font-size: clamp(2.5rem, 2rem + 5vw, 10rem);  
  font-style: normal;
  font-weight: 600;
  line-height: 90%;
  letter-spacing: -1.6px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 199px;
}

.hero-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  max-width: 320px;
  padding-bottom: 24px;
}

.hero-btn {
  display: block;
  background: transparent;
  color: #ffffff;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: 1.5px solid rgba(255,255,255,0.75);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  align-self: center;
  margin-bottom: 112px ;
}

.hero-btn:hover {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}

/* ── Tablet ── */
@media (min-width: 768px) {
  .hero {
    align-items: center;
    padding-top: 64px;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    gap: 40px;
  }

  .hero-title {
    font-size: 72px;
    letter-spacing: -2px;
    flex-shrink: 0;
  }

  .hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
    max-width: 300px;
    text-align: right;
  }

  .hero-desc {
    max-width: 100%;
    font-size: 13px;
  }

  .hero-btn {
    align-self: stretch;
    font-size: 11px;
  }
}

/* ── Mid ── */
@media (min-width: 769px) and (max-width: 1199px) {
  .hero-content { padding: 0 60px; }
  .hero-title { font-size: 80px; }
}

/* ── 800–900 ── */
@media (min-width: 800px) and (max-width: 900px) {
  .hero-content { padding: 0 48px; gap: 32px; }
  .hero-title { font-size: 76px; }
}

/* ── 1000–1199 (iPad landscape) ── */
@media (min-width: 1000px) and (max-width: 1199px) {
  .hero-content { padding: 0 72px; gap: 60px; }
  .hero-title { font-size: 100px; }
}

/* ── Desktop ── */
@media (min-width: 1200px) {
  .hero-content {
    padding: 0 80px;
    max-width: 1440px;
    margin: 0 auto;
    gap: 80px;
  }

  .hero-title {
    font-size: 120px;
    letter-spacing: -3px;
  }

  .hero-right {
    max-width: 440px;
    gap: 32px;
  }

  .hero-desc {
    font-size: 15px;
    max-width: 360px;
  }

  .hero-btn {
    align-self: flex-end;
    font-size: 12px;
    padding: 18px 40px;
  }
}

/* ── Small desktop ── */
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content { padding: 0 60px; max-width: none; gap: 60px; }
  .hero-title { font-size: 100px; }
}
